summaryrefslogtreecommitdiff
path: root/ext/gs/gstgscommon.cpp
blob: b0f5760166836ad4909e4301cadec383050118f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* GStreamer
 * Copyright (C) 2020 Julien Isorce <jisorce@oblong.com>
 *
 * gstgscommon.h:
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "gstgscommon.h"

#include "google/cloud/storage/oauth2/compute_engine_credentials.h"

namespace gcs = google::cloud::storage;

namespace {

#if !GLIB_CHECK_VERSION(2, 62, 0)
  static inline gchar *
  g_date_time_format_iso8601 (GDateTime * datetime)
  {
    GString *
        outstr = NULL;
    gchar *
        main_date = NULL;
    gint64 offset;

    // Main date and time.
    main_date = g_date_time_format (datetime, "%Y-%m-%dT%H:%M:%S");
    outstr = g_string_new (main_date);
    g_free (main_date);

    // Timezone. Format it as `%:::z` unless the offset is zero, in which case
    // we can simply use `Z`.
    offset = g_date_time_get_utc_offset (datetime);

    if (offset == 0) {
      g_string_append_c (outstr, 'Z');
    } else {
      gchar *
          time_zone = g_date_time_format (datetime, "%:::z");
      g_string_append (outstr, time_zone);
      g_free (time_zone);
    }

    return g_string_free (outstr, FALSE);
  }
#endif

}  // namespace

std::unique_ptr <
    google::cloud::storage::Client >
gst_gs_create_client (const gchar * service_account_email, GError ** error)
{
  if (service_account_email) {
    // Meant to be used from a container running in the Cloud.

    google::cloud::StatusOr < std::shared_ptr <
        gcs::oauth2::Credentials >> creds (std::make_shared <
        gcs::oauth2::ComputeEngineCredentials <>> (service_account_email));
    if (!creds) {
      g_set_error (error, GST_RESOURCE_ERROR,
          GST_RESOURCE_ERROR_NOT_AUTHORIZED,
          "Could not retrieve credentials for the given service account %s (%s)",
          service_account_email, creds.status ().message ().c_str ());
      return nullptr;
    }

    gcs::ClientOptions client_options (std::move (creds.value ()));
    return std::make_unique < gcs::Client > (client_options,
        gcs::StrictIdempotencyPolicy ());
  }
  // Default account. This is meant to retrieve the credentials automatically
  // using diffrent methods.
  google::cloud::StatusOr < gcs::ClientOptions > client_options =
      gcs::ClientOptions::CreateDefaultClientOptions ();

  if (!client_options) {
    g_set_error (error, GST_RESOURCE_ERROR,
        GST_RESOURCE_ERROR_NOT_AUTHORIZED,
        "Could not create default client options (%s)",
        client_options.status ().message ().c_str ());
    return nullptr;
  }
  return std::make_unique < gcs::Client > (client_options.value (),
      gcs::StrictIdempotencyPolicy ());
}

gboolean
gst_gs_get_buffer_date (GstBuffer * buffer, GDateTime * start_date,
    gchar ** buffer_date_str_ptr)
{
  gchar *
      buffer_date_str = NULL;
  GstClockTime buffer_timestamp = GST_CLOCK_TIME_NONE;
  GTimeSpan buffer_timespan = 0;

  if (!buffer || !start_date)
    return FALSE;

  buffer_timestamp = GST_BUFFER_PTS (buffer);

  // GTimeSpan is in micro seconds.
  buffer_timespan = GST_TIME_AS_USECONDS (buffer_timestamp);

  GDateTime *
      buffer_date = g_date_time_add (start_date, buffer_timespan);
  if (!buffer_date)
    return FALSE;

  buffer_date_str = g_date_time_format_iso8601 (buffer_date);
  g_date_time_unref (buffer_date);

  if (!buffer_date_str)
    return FALSE;

  if (buffer_date_str_ptr)
    *buffer_date_str_ptr = buffer_date_str;

  return TRUE;
}