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
|
/* plugin-gitlab-user.c
*
* Copyright 2025 Christian Hergert <chergert@redhat.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "config.h"
#include "plugin-gitlab-user.h"
struct _PluginGitlabUser
{
GObject parent_instance;
GWeakRef forge_wr;
JsonNode *node;
};
G_DEFINE_FINAL_TYPE (PluginGitlabUser, plugin_gitlab_user, FOUNDRY_TYPE_FORGE_USER)
static char *
get_string (PluginGitlabUser *self,
const char *key)
{
const char *value = NULL;
if (FOUNDRY_JSON_OBJECT_PARSE (self->node, key, FOUNDRY_JSON_NODE_GET_STRING (&value)))
return g_strdup (value);
return NULL;
}
static char *
plugin_gitlab_user_dup_handle (FoundryForgeUser *user)
{
return get_string (PLUGIN_GITLAB_USER (user), "username");
}
static char *
plugin_gitlab_user_dup_name (FoundryForgeUser *user)
{
return get_string (PLUGIN_GITLAB_USER (user), "name");
}
static char *
plugin_gitlab_user_dup_avatar_url (FoundryForgeUser *user)
{
return get_string (PLUGIN_GITLAB_USER (user), "avatar_url");
}
static char *
plugin_gitlab_user_dup_online_url (FoundryForgeUser *user)
{
return get_string (PLUGIN_GITLAB_USER (user), "web_url");
}
static char *
plugin_gitlab_user_dup_bio (FoundryForgeUser *user)
{
return get_string (PLUGIN_GITLAB_USER (user), "bio");
}
static char *
plugin_gitlab_user_dup_location (FoundryForgeUser *user)
{
return get_string (PLUGIN_GITLAB_USER (user), "location");
}
static void
plugin_gitlab_user_finalize (GObject *object)
{
PluginGitlabUser *self = (PluginGitlabUser *)object;
g_weak_ref_clear (&self->forge_wr);
g_clear_pointer (&self->node, json_node_unref);
G_OBJECT_CLASS (plugin_gitlab_user_parent_class)->finalize (object);
}
static void
plugin_gitlab_user_class_init (PluginGitlabUserClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
FoundryForgeUserClass *forge_user_class = FOUNDRY_FORGE_USER_CLASS (klass);
object_class->finalize = plugin_gitlab_user_finalize;
forge_user_class->dup_handle = plugin_gitlab_user_dup_handle;
forge_user_class->dup_name = plugin_gitlab_user_dup_name;
forge_user_class->dup_online_url = plugin_gitlab_user_dup_online_url;
forge_user_class->dup_bio = plugin_gitlab_user_dup_bio;
forge_user_class->dup_location = plugin_gitlab_user_dup_location;
forge_user_class->dup_avatar_url = plugin_gitlab_user_dup_avatar_url;
}
static void
plugin_gitlab_user_init (PluginGitlabUser *self)
{
g_weak_ref_init (&self->forge_wr, NULL);
}
FoundryForgeUser *
plugin_gitlab_user_new (PluginGitlabForge *forge,
JsonNode *node)
{
PluginGitlabUser *self;
g_return_val_if_fail (PLUGIN_IS_GITLAB_FORGE (forge), NULL);
g_return_val_if_fail (node != NULL, NULL);
self = g_object_new (PLUGIN_TYPE_GITLAB_USER, NULL);
g_weak_ref_set (&self->forge_wr, forge);
self->node = node;
return FOUNDRY_FORGE_USER (self);
}
|