summaryrefslogtreecommitdiff
path: root/src/polkit/polkitauthorization.c
blob: a87c3e8c9bac8233c4f8aa3fa46312036be67c39 (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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
 * Copyright (C) 2008 Red Hat, Inc.
 *
 * 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 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 Lesser General
 * Public License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: David Zeuthen <davidz@redhat.com>
 */

#ifdef HAVE_CONFIG_H
#  include "config.h"
#endif

#include "polkitauthorization.h"
#include "polkitprivate.h"

/**
 * SECTION:polkitauthorization
 * @title: PolkitAuthorization
 * @short_description: Authorization
 * @stability: Unstable
 *
 * This class represents an explicit authorization.
 *
 * To use this unstable API you need to define the symbol
 * <literal>POLKIT_I_KNOW_AUTHORITY_MANAGER_API_IS_SUBJECT_TO_CHANGE</literal>.
 */

struct _PolkitAuthorization
{
  GObject parent_instance;

  _PolkitAuthorization *real;

  PolkitSubject *subject;
};

struct _PolkitAuthorizationClass
{
  GObjectClass parent_class;

};

G_DEFINE_TYPE (PolkitAuthorization, polkit_authorization, G_TYPE_OBJECT);

static void
polkit_authorization_init (PolkitAuthorization *authorization)
{
}

static void
polkit_authorization_finalize (GObject *object)
{
  PolkitAuthorization *authorization;

  authorization = POLKIT_AUTHORIZATION (object);

  if (authorization->subject != NULL)
    g_object_unref (authorization->subject);

  g_object_unref (authorization->real);

  if (G_OBJECT_CLASS (polkit_authorization_parent_class)->finalize != NULL)
    G_OBJECT_CLASS (polkit_authorization_parent_class)->finalize (object);
}

static void
polkit_authorization_class_init (PolkitAuthorizationClass *klass)
{
  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);

  gobject_class->finalize = polkit_authorization_finalize;
}

PolkitAuthorization *
polkit_authorization_new (const gchar         *action_id,
                          PolkitSubject       *subject,
                          gboolean             is_negative)
{
  PolkitAuthorization *authorization;
  _PolkitAuthorization *real;
  _PolkitSubject *real_subject;

  real_subject = polkit_subject_get_real (subject);

  real = _polkit_authorization_new (action_id, real_subject, is_negative);

  g_object_unref (real_subject);

  authorization = polkit_authorization_new_for_real (real);

  g_object_unref (real);

  return authorization;
}

PolkitAuthorization  *
polkit_authorization_new_for_real (_PolkitAuthorization *real)
{
  PolkitAuthorization *authorization;

  authorization = POLKIT_AUTHORIZATION (g_object_new (POLKIT_TYPE_AUTHORIZATION, NULL));

  authorization->real = g_object_ref (real);

  return authorization;
}

_PolkitAuthorization *
polkit_authorization_get_real (PolkitAuthorization  *authorization)
{
  return g_object_ref (authorization->real);
}

/* ---------------------------------------------------------------------------------------------------- */

const gchar *
polkit_authorization_get_action_id (PolkitAuthorization *authorization)
{
  return _polkit_authorization_get_action_id (authorization->real);
}


PolkitSubject *
polkit_authorization_get_subject (PolkitAuthorization *authorization)
{
  if (authorization->subject == NULL)
    authorization->subject = polkit_subject_new_for_real (_polkit_authorization_get_subject (authorization->real));

  return authorization->subject;
}

gboolean
polkit_authorization_get_is_negative (PolkitAuthorization *authorization)
{
  return _polkit_authorization_get_is_negative (authorization->real);
}