]> err.no Git - scalable-opengroupware.org/blob - SoObjects/SOGo/SOGoObject.h
b265699efa6ea700cc9de240da08eeedb45e19d5
[scalable-opengroupware.org] / SoObjects / SOGo / SOGoObject.h
1 /*
2   Copyright (C) 2004-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 __SoObjects_SOGoObject_H__
23 #define __SoObjects_SOGoObject_H__
24
25 #import <Foundation/NSObject.h>
26
27 /*
28   SOGoObject
29   
30   This is the abstract class used by all SOGo SoObjects. It contains the
31   ability to track a container as well as the key the object was invoked with.
32   
33   In addition it provides some generic methods like user or group folder
34   lookup.
35 */
36
37 #import <NGObjWeb/SoObject.h>
38
39 @class NSString;
40 @class NSArray;
41 @class NSMutableString;
42 @class NSException;
43 @class NSTimeZone;
44
45 @class WOContext;
46 @class GCSFolderManager;
47 @class GCSFolder;
48
49 @class SOGoUserFolder;
50 @class SOGoGroupsFolder;
51 @class SOGoDAVSet;
52
53 #define $(class) NSClassFromString(class)
54
55 @interface SOGoObject : NSObject
56 {
57   WOContext *context;
58   NSString *nameInContainer;
59   id       container;
60   NSString *customOwner;
61 }
62
63 + (id) objectWithName: (NSString *)_name inContainer:(id)_container;
64
65 - (id) initWithName: (NSString *) _name inContainer:(id)_container;
66
67 /* accessors */
68
69 - (NSString *) nameInContainer;
70 - (id) container;
71
72 /* ownership */
73
74 - (void) setOwner: (NSString *) newOwner;
75 - (NSString *) ownerInContext: (id) _ctx;
76
77 /* looking up shared objects */
78
79 - (SOGoUserFolder *) lookupUserFolder;
80 - (SOGoGroupsFolder *) lookupGroupsFolder;
81
82 - (void) sleep;
83
84 /* hierarchy */
85
86 - (NSArray *) fetchSubfolders; /* uses toManyRelationshipKeys */
87
88 /* operations */
89
90 - (NSException *)delete;
91 - (id)GETAction:(id)_ctx;
92
93 - (SOGoDAVSet *) davCurrentUserPrivilegeSet;
94
95 /* etag support */
96
97 - (NSException *)matchesRequestConditionInContext:(id)_ctx;
98
99 /* acls */
100
101 - (NSArray *) aclUsers;
102 - (NSArray *) aclsForUser: (NSString *) uid;
103 - (void) setRoles: (NSArray *) roles
104           forUser: (NSString *) uid;
105 - (void) removeAclsForUsers: (NSArray *) users;
106 - (NSString *) defaultUserID;
107 - (BOOL) hasSupportForDefaultRoles;
108
109 /* description */
110
111 - (void) appendAttributesToDescription:(NSMutableString *)_ms;
112
113 @end
114
115 #endif /* __SoObjects_SOGoObject_H__ */