Пример #1
0
CockpitWebService *
cockpit_auth_check_cookie (CockpitAuth *self,
                           GHashTable *in_headers)
{
  CockpitAuthenticated *authenticated;

  authenticated = authenticated_for_headers (self, in_headers);

  if (authenticated)
    {
      g_debug ("received credential cookie for user '%s'",
               cockpit_creds_get_user (authenticated->creds));
      return g_object_ref (authenticated->service);
    }
  else
    {
      g_debug ("received unknown/invalid credential cookie");
      return NULL;
    }
}
Пример #2
0
void
cockpit_auth_logout (CockpitAuth *self,
                     GHashTable *headers,
                     gboolean secure_req,
                     GHashTable *out_headers)
{
  CockpitAuthenticated *authenticated;
  gchar *cookie;

  authenticated = authenticated_for_headers (self, headers);
  if (authenticated)
    {
      g_info ("logged out user %s", cockpit_creds_get_user (authenticated->creds));
      g_hash_table_remove (self->authenticated, authenticated->cookie);
    }

  if (out_headers)
    {
      cookie = g_strdup_printf ("CockpitAuth=blank; Path=/; Expires=Wed, 13-Jan-2021 22:23:01 GMT;%s HttpOnly",
                                secure_req ? " Secure;" : "");
      g_hash_table_insert (out_headers, g_strdup ("Set-Cookie"), cookie);
    }
}