]> err.no Git - scalable-opengroupware.org/blob - SoObjects/SOGo/SOGoUser.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1065 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 #include <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 NSString;
38 @class NSArray;
39 @class NSDictionary;
40 @class NSURL;
41 @class NSUserDefaults;
42 @class NSTimeZone;
43 @class WOContext;
44
45 @interface SOGoUser : SoUser
46 {
47   NSString *cn;
48   NSArray *allEmails;
49   NSUserDefaults *userDefaults;
50   NSUserDefaults *userSettings;
51   NSTimeZone *userTimeZone;
52 }
53
54 + (SOGoUser *) userWithLogin: (NSString *) login
55                        roles: (NSArray *) roles;
56
57 /* properties */
58
59 - (NSString *) primaryEmail;
60 - (NSString *) systemEmail;
61 - (NSArray *) allEmails;
62
63 - (BOOL) hasEmail: (NSString *) email;
64
65 - (NSString *) cn;
66 - (NSURL *) freeBusyURL;
67
68 /* shares and identities */
69
70 - (NSString *) primaryIMAP4AccountString;
71
72 // - (NSString *) primaryIMAP4AccountString;
73 // - (NSString *) primaryMailServer;
74 // - (NSArray *) additionalIMAP4AccountStrings;
75 // - (NSArray *) additionalEMailAddresses;
76 // - (NSDictionary *) additionalIMAP4AccountsAndEMails;
77
78 /* defaults */
79
80 - (NSUserDefaults *) userDefaults;
81 - (NSUserDefaults *) userSettings;
82
83 - (NSTimeZone *) timeZone;
84 - (NSTimeZone *) serverTimeZone;
85
86 /* folders */
87
88 - (id) homeFolderInContext: (id) _ctx;
89 // - (id) schedulingCalendarInContext: (id) _ctx;
90
91 - (NSArray *) rolesForObject: (NSObject *) object
92                    inContext: (WOContext *) context;
93
94 @end
95
96 #endif /* __SOGoUser_H__ */