CMISService.class.php
6.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
require_once(realpath(dirname(__FILE__)) . '/../../../../ktcmis/ktcmis.inc.php');
/**
* CMIS Service class which hooks into the KnowledgeTree interface
* for processing of CMIS queries and responses via webservices
*/
class CMISService extends KTCMIS {
/**
* Fetches a list of available repositories
*
* @return cmisRepositoryEntryType[]
*/
function getRepositories()
{
$result = parent::getRepositories();
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
/**
* Fetches information about the selected repository
*
* @param string $repositoryId
* @return cmisRepositoryInfoType
*/
function getRepositoryInfo($repositoryId)
{
$result = parent::getRepositoryInfo($repositoryId);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
/**
* Fetch the list of supported object types for the selected repository
*
* @param string $repositoryId The ID of the repository for which object types must be returned
* @param string $typeId The type to return, ALL if not set
* @param boolean $returnPropertyDefinitions Return property definitions as well if TRUE
* @param int $maxItems The maximum number of items to return
* @param int $skipCount The number of items to skip before starting to return results
* @param boolean $hasMoreItems TRUE if there are more items to return than were requested
* @return cmisTypeDefinitionType[]
*/
function getTypes($repositoryId, $typeId = '', $returnPropertyDefinitions = false,
$maxItems = 0, $skipCount = 0, &$hasMoreItems = false)
{
$result = parent::getTypes($repositoryId, $typeId, $returnPropertyDefinitions,
$maxItems, $skipCount, $hasMoreItems);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
/**
* Fetch the object type definition for the requested type
*
* @param string $repositoryId
* @param string $typeId
* @return cmisTypeDefinitionType
*/
function getTypeDefinition($repositoryId, $typeId)
{
$result = parent::getTypeDefinition($repositoryId, $typeId);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
// Navigation service functions
/**
* Get descendents of the specified folder, up to the depth indicated
*
* @param string $repositoryId
* @param string $folderId
* @param boolean $includeAllowableActions
* @param boolean $includeRelationships
* @param string $typeID
* @param int $depth
* @param string $filter
* @return cmisObjectType[]
*/
function getDescendants($repositoryId, $folderId, $includeAllowableActions, $includeRelationships,
$depth = 1, $typeID = 'Any', $filter = '')
{
$result = parent::getDescendants($repositoryId, $folderId, $includeAllowableActions,
$includeRelationships, $depth, $typeID, $filter);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
/**
* Get direct children of the specified folder
*
* @param string $repositoryId
* @param string $folderId
* @param boolean $includeAllowableActions
* @param boolean $includeRelationships
* @param string $typeID
* @param string $filter
* @param int $maxItems
* @param int $skipCount
* @return cmisObjectType[]
*/
function getChildren($repositoryId, $folderId, $includeAllowableActions, $includeRelationships,
$typeID = 'Any', $filter = '', $maxItems = 0, $skipCount = 0)
{
$result = parent::getChildren($repositoryId, $folderId, $includeAllowableActions, $includeRelationships,
$typeID, $filter, $maxItems, $skipCount);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
/**
* Gets the parent of the selected folder
*
* @param string $repositoryId
* @param string $folderId
* @param boolean $includeAllowableActions
* @param boolean $includeRelationships
* @param boolean $returnToRoot
* @param string $filter
* @return cmisObjectType[]
*/
function getFolderParent($repositoryId, $folderId, $includeAllowableActions, $includeRelationships, $returnToRoot, $filter = '')
{
$result = parent::getFolderParent($repositoryId, $folderId, $includeAllowableActions, $includeRelationships, $returnToRoot, $filter);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
/**
* Gets the parents for the selected object
*
* @param string $repositoryId
* @param string $folderId
* @param boolean $includeAllowableActions
* @param boolean $includeRelationships
* @param string $filter
* @return cmisObjectType[]
*/
function getObjectParents($repositoryId, $objectId, $includeAllowableActions, $includeRelationships, $filter = '')
{
$result = parent::getObjectParents($repositoryId, $objectId, $includeAllowableActions, $includeRelationships, $filter);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
/**
* Gets the properties for the selected object
*
* @param string $repositoryId
* @param string $objectId
* @param boolean $includeAllowableActions
* @param boolean $includeRelationships
* @param string $returnVersion
* @param string $filter
* @return cmisObjectPropertiesType[]
*/
function getProperties($repositoryId, $objectId, $includeAllowableActions, $includeRelationships,
$returnVersion = false, $filter = '')
{
$result = parent::getProperties($repositoryId, $objectId, $includeAllowableActions, $includeRelationships, $returnVersion, $filter);
if ($result['status_code'] == 0)
{
return $result['results'];
}
}
}
?>