]> err.no Git - scalable-opengroupware.org/blob - SoObjects/SOGo/SOGoUser.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1267 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / SOGo / SOGoUser.h
1 /*
2   Copyright (C) 2005 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #ifndef __SOGoUser_H__
23 #define __SOGoUser_H__
24
25 #import <NGObjWeb/SoUser.h>
26
27 /*
28   SOGoUser
29
30   This adds some additional SOGo properties to the SoUser object. The
31   properties are (currently) looked up using the AgenorUserManager.
32
33   You have access to this object from the WOContext:
34     context.activeUser
35 */
36
37 @class NSArray;
38 @class NSDictionary;
39 @class NSString;
40 @class NSTimeZone;
41 @class NSURL;
42 @class NSUserDefaults;
43
44 @class WOContext;
45
46 @class SOGoAppointmentFolder;
47 @class SOGoAppointmentFolders;
48 @class SOGoDateFormatter;
49 @class SOGoUserFolder;
50
51 extern NSString *SOGoWeekStartHideWeekNumbers;
52 extern NSString *SOGoWeekStartJanuary1;
53 extern NSString *SOGoWeekStartFirst4DayWeek;
54 extern NSString *SOGoWeekStartFirstFullWeek;
55
56 @interface SoUser (SOGoExtension)
57
58 - (NSString *) language;
59
60 @end
61
62 @interface SOGoUser : SoUser
63 {
64   NSString *currentPassword;
65   NSString *cn;
66   NSString *language;
67   NSArray *allEmails;
68   NSUserDefaults *userDefaults;
69   NSUserDefaults *userSettings;
70   NSTimeZone *userTimeZone;
71   SOGoDateFormatter *dateFormatter;
72   NSMutableArray *mailAccounts;
73   SOGoUserFolder *homeFolder;
74 }
75
76 + (NSString *) language;
77
78 + (SOGoUser *) userWithLogin: (NSString *) login
79                        roles: (NSArray *) roles;
80 - (void) setCurrentPassword: (NSString *) newPassword;
81 - (NSString *) currentPassword;
82
83 /* properties */
84
85 // - (NSString *) fullEmail;
86
87 // - (NSString *) primaryEmail;
88 // - (NSString *) systemEmail;
89 - (NSArray *) allEmails;
90
91 - (BOOL) hasEmail: (NSString *) email;
92
93 - (NSString *) cn;
94 - (NSURL *) freeBusyURL;
95
96 - (SOGoDateFormatter *) dateFormatterInContext: (WOContext *) context;
97
98 /* shares and identities */
99
100 // - (NSString *) primaryIMAP4AccountString;
101
102 // - (NSString *) primaryIMAP4AccountString;
103 // - (NSString *) primaryMailServer;
104 // - (NSArray *) additionalIMAP4AccountStrings;
105 // - (NSArray *) additionalEMailAddresses;
106 // - (NSDictionary *) additionalIMAP4AccountsAndEMails;
107
108 /* defaults */
109
110 - (NSUserDefaults *) userDefaults;
111 - (NSUserDefaults *) userSettings;
112
113 - (NSString *) language;
114 - (NSTimeZone *) timeZone;
115 - (NSTimeZone *) serverTimeZone;
116
117 - (NSArray *) mailAccounts;
118 - (NSArray *) allIdentities;
119 - (NSDictionary *) primaryIdentity;
120 - (NSString *) messageForwarding;
121 - (NSString *) messageCheck;
122
123 - (NSString *) signature;
124
125 - (BOOL) isSuperUser;
126
127 /* folders */
128
129 - (SOGoUserFolder *) homeFolderInContext: (id) context;
130
131 - (SOGoAppointmentFolders *) calendarsFolderInContext: (WOContext *) context;
132 - (SOGoAppointmentFolder *)
133  personalCalendarFolderInContext: (WOContext *) context;
134
135 - (NSArray *) rolesForObject: (NSObject *) object
136                    inContext: (WOContext *) context;
137
138 @end
139
140 #endif /* __SOGoUser_H__ */