]> err.no Git - scalable-opengroupware.org/blob - SOGo/SoObjects/SOGo/SOGoUser.m
04922e4828745c07a0d42684e6ca4c5fc7e47d54
[scalable-opengroupware.org] / SOGo / SoObjects / SOGo / SOGoUser.m
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 #include "SOGoUser.h"
23 #include <SOGo/AgenorUserManager.h>
24 #include "common.h"
25
26 @implementation SOGoUser
27
28 - (void)dealloc {
29   [self->userDefaults release];
30   [self->cn    release];
31   [self->email release];
32   [super dealloc];
33 }
34
35 /* internals */
36
37 - (AgenorUserManager *)userManager {
38   static AgenorUserManager *um = nil;
39   if (um == nil) um = [[AgenorUserManager sharedUserManager] retain];
40   return um;
41 }
42
43 /* properties */
44
45 - (NSString *)email {
46   if (self->email == nil)
47     self->email = [[[self userManager] getEmailForUID:[self login]] copy];
48   return self->email;
49 }
50
51 - (NSString *)cn {
52   if (self->cn == nil)
53     self->cn = [[[self userManager] getCNForUID:[self login]] copy];
54   return self->cn;
55 }
56
57 - (NSString *)primaryIMAP4AccountString {
58   return [[self userManager] getIMAPAccountStringForUID:[self login]];
59 }
60 - (NSString *)primaryMailServer {
61   return [[self userManager] getServerForUID:[self login]];
62 }
63
64 - (NSArray *)additionalIMAP4AccountStrings {
65   return [[self userManager]getSharedMailboxAccountStringsForUID:[self login]];
66 }
67 - (NSArray *)additionalEMailAddresses {
68   return [[self userManager] getSharedMailboxEMailsForUID:[self login]];
69 }
70
71 - (NSDictionary *)additionalIMAP4AccountsAndEMails {
72   return [[self userManager] getSharedMailboxesAndEMailsForUID:[self login]];
73 }
74
75 - (NSURL *)freeBusyURL {
76   return [[self userManager] getFreeBusyURLForUID:[self login]];
77 }
78
79 /* defaults */
80
81 - (NSUserDefaults *)userDefaults {
82   if (self->userDefaults == nil) {
83     self->userDefaults = 
84       [[[self userManager] getUserDefaultsForUID:[self login]] retain];
85   }
86   return self->userDefaults;
87 }
88
89 /* folders */
90
91 // TODO: those methods should check whether the traversal stack in the context
92 //       already contains proper folders to improve caching behaviour
93
94 - (id)homeFolderInContext:(id)_ctx {
95   /* Note: watch out for cyclic references */
96   // TODO: maybe we should add an [activeUser reset] method to SOPE
97   id folder;
98   
99   folder = [(WOContext *)_ctx objectForKey:@"ActiveUserHomeFolder"];
100   if (folder != nil)
101     return [folder isNotNull] ? folder : nil;
102   
103   folder = [[WOApplication application] lookupName:[self login]
104                                         inContext:_ctx acquire:NO];
105   if ([folder isKindOfClass:[NSException class]])
106     return folder;
107   
108   [(WOContext *)_ctx setObject:folder ? folder : [NSNull null] 
109                      forKey:@"ActiveUserHomeFolder"];
110   return folder;
111 }
112
113 - (id)schedulingCalendarInContext:(id)_ctx {
114   /* Note: watch out for cyclic references */
115   id folder;
116
117   folder = [(WOContext *)_ctx objectForKey:@"ActiveUserCalendar"];
118   if (folder != nil)
119     return [folder isNotNull] ? folder : nil;
120
121   folder = [self homeFolderInContext:_ctx];
122   if ([folder isKindOfClass:[NSException class]])
123     return folder;
124   
125   folder = [folder lookupName:@"Calendar" inContext:_ctx acquire:NO];
126   if ([folder isKindOfClass:[NSException class]])
127     return folder;
128   
129   [(WOContext *)_ctx setObject:folder ? folder : [NSNull null] 
130                      forKey:@"ActiveUserCalendar"];
131   return folder;
132 }
133
134 @end /* SOGoUser */