summaryrefslogtreecommitdiff
path: root/src/user.h
blob: 32be8567031477cbb2fd4507fb34d409f4ece152 (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2009-2010 Red Hat, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef __USER__
#define __USER__

#include <sys/types.h>
#include <pwd.h>

#include <glib.h>
#include <dbus/dbus-glib.h>

#include "types.h"

G_BEGIN_DECLS

#define TYPE_USER (user_get_type ())
#define USER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), TYPE_USER, User))
#define IS_USER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), TYPE_USER))

typedef enum {
        ACCOUNT_TYPE_STANDARD,
        ACCOUNT_TYPE_ADMINISTRATOR,
#define ACCOUNT_TYPE_LAST ACCOUNT_TYPE_ADMINISTRATOR
} AccountType;

typedef enum {
        PASSWORD_MODE_REGULAR,
        PASSWORD_MODE_SET_AT_LOGIN,
        PASSWORD_MODE_NONE,
#define PASSWORD_MODE_LAST PASSWORD_MODE_NONE
} PasswordMode;

/* local methods */

GType        user_get_type                  (void) G_GNUC_CONST;
User        *user_local_new                 (Daemon        *daemon,
                                             uid_t          uid);

void         user_local_update_from_pwent   (User          *user,
                                             struct passwd *pwent);
void         user_local_update_from_keyfile (User          *user,
                                             GKeyFile      *keyfile);

void         user_local_register            (User          *user);
void         user_local_unregister          (User          *user);

const gchar *user_local_get_user_name       (User          *user);
const gchar *user_local_get_user_name       (User          *user);
const gchar *user_local_get_object_path     (User          *user);
uid_t        user_local_get_uid             (User          *user);

/* exported methods */

gboolean       user_set_user_name      (User                  *user,
                                        const gchar           *user_name,
                                        DBusGMethodInvocation *context);
gboolean       user_set_real_name      (User                  *user,
                                        const gchar           *real_name,
                                        DBusGMethodInvocation *context);
gboolean       user_set_email          (User                  *user,
                                        const gchar           *email,
                                        DBusGMethodInvocation *context);
gboolean       user_set_language       (User                  *user,
                                        const gchar           *language,
                                        DBusGMethodInvocation *context);
gboolean       user_set_x_session      (User                  *user,
                                        const gchar           *x_session,
                                        DBusGMethodInvocation *context);
gboolean       user_set_location       (User                  *user,
                                        const gchar           *location,
                                        DBusGMethodInvocation *context);
gboolean       user_set_home_directory (User                  *user,
                                        const gchar           *home_dir,
                                        DBusGMethodInvocation *context);
gboolean       user_set_shell          (User                  *user,
                                        const gchar           *shell,
                                        DBusGMethodInvocation *context);
gboolean       user_set_icon_file      (User                  *user,
                                        const gchar           *filename,
                                        DBusGMethodInvocation *context);
gboolean       user_set_locked         (User                  *user,
                                        gboolean               locked,
                                        DBusGMethodInvocation *context);
gboolean       user_set_account_type   (User                  *user,
                                        gint                   account_type,
                                        DBusGMethodInvocation *context);
gboolean       user_set_password_mode  (User                  *user,
                                        gint                   mode,
                                        DBusGMethodInvocation *context);
gboolean       user_set_password       (User                  *user,
                                        const gchar           *password,
                                        const gchar           *hint,
                                        DBusGMethodInvocation *context);
gboolean       user_set_automatic_login(User                  *user,
                                        gboolean               enabled,
                                        DBusGMethodInvocation *context);

G_END_DECLS

#endif