]> err.no Git - scalable-opengroupware.org/blob - SOGo/Main/SOGoUser.m
cc131098eeee4d9c86dce8955a9991661cd53c33
[scalable-opengroupware.org] / SOGo / Main / 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->cn    release];
30   [self->email release];
31   [super dealloc];
32 }
33
34 /* internals */
35
36 - (AgenorUserManager *)userManager {
37   static AgenorUserManager *um = nil;
38   if (um == nil) um = [[AgenorUserManager sharedUserManager] retain];
39   return um;
40 }
41
42 /* properties */
43
44 - (NSString *)email {
45   if (self->email == nil)
46     self->email = [[[self userManager] getEmailForUID:[self login]] copy];
47   return self->email;
48 }
49
50 - (NSString *)cn {
51   if (self->cn == nil)
52     self->cn = [[[self userManager] getCNForUID:[self login]] copy];
53   return self->cn;
54 }
55
56 - (NSString *)primaryIMAP4AccountString {
57   return [[self userManager] getIMAPAccountStringForUID:[self login]];
58 }
59 - (NSString *)primaryMailServer {
60   return [[self userManager] getServerForUID:[self login]];
61 }
62
63 - (NSArray *)additionalIMAP4AccountStrings {
64   return [[self userManager]getSharedMailboxAccountStringsForUID:[self login]];
65 }
66 - (NSArray *)additionalEMailAddresses {
67   return [[self userManager] getSharedMailboxEMailsForUID:[self login]];
68 }
69
70 - (NSURL *)freeBusyURL {
71   return [[self userManager] getFreeBusyURLForUID:[self login]];
72 }
73
74 @end /* SOGoUser */