-
Notifications
You must be signed in to change notification settings - Fork 1
/
datamodel.authent-token.xml
367 lines (366 loc) · 11.6 KB
/
datamodel.authent-token.xml
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
<?xml version="1.0" encoding="UTF-8"?>
<itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0">
<constants>
</constants>
<classes>
<class id="PersonalToken" _delta="define">
<parent>cmdbAbstractObject</parent>
<php_parent>
<name>AbstractPersonalToken</name>
</php_parent>
<properties>
<category>addon/authentication,grant_by_profile</category>
<abstract>false</abstract>
<key_type>autoincrement</key_type>
<db_table>priv_personal_token</db_table>
<db_key_field>id</db_key_field>
<db_final_class_field/>
<icon/>
<naming>
<attributes>
<attribute id="application"/>
</attributes>
</naming>
<reconciliation>
<attributes>
<attribute id="application"/>
<attribute id="user_id"/>
</attributes>
</reconciliation>
</properties>
<fields>
<field id="user_id" xsi:type="AttributeExternalKey">
<sql>user_id</sql>
<dependencies/>
<is_null_allowed>false</is_null_allowed>
<allow_target_creation>false</allow_target_creation>
<display_style>list</display_style>
<target_class>User</target_class>
<on_target_delete>DEL_AUTO</on_target_delete>
</field>
<field id="org_id" xsi:type="AttributeExternalField">
<extkey_attcode>user_id</extkey_attcode>
<target_attcode>org_id</target_attcode>
</field>
<field id="auth_token" xsi:type="AttributeOneWayPassword">
<sql>auth_token</sql>
<default_value/>
<is_null_allowed>false</is_null_allowed>
</field>
<field id="application" xsi:type="AttributeString">
<sql>application</sql>
<default_value/>
<is_null_allowed>false</is_null_allowed>
</field>
<!-- Duplicated field in UserToken class -->
<field id="scope" xsi:type="AttributeEnumSet">
<values>
<value id="WebService">
<code>REST/JSON</code>
</value>
<value id="Synchro">
<code>Synchro</code>
</value>
<value id="Import">
<code>Import</code>
</value>
<value id="Export">
<code>Export</code>
</value>
</values>
<sql>scope</sql>
<default_value>WebService</default_value>
<is_null_allowed>true</is_null_allowed>
</field>
<field id="expiration_date" xsi:type="AttributeDateTime" _delta="define">
<sql>expiration_date</sql>
<default_value/>
<tracking_level>none</tracking_level>
<is_null_allowed>true</is_null_allowed>
</field>
<field id="use_count" xsi:type="AttributeInteger" _delta="define">
<sql>use_count</sql>
<default_value>0</default_value>
<tracking_level>none</tracking_level>
<is_null_allowed>true</is_null_allowed>
</field>
<field id="last_use_date" xsi:type="AttributeDateTime" _delta="define">
<sql>last_use_date</sql>
<default_value/>
<is_null_allowed>true</is_null_allowed>
</field>
</fields>
<methods>
<method id="GetAttributeFlags">
<comment></comment>
<static>false</static>
<access>public </access>
<code><![CDATA[ public function GetAttributeFlags($sAttCode, &$aReasons = array(), $sTargetState = '')
{
// This function is invoked when the object is EDITED on the Console
// It is called for each and every field of the object,
// but we just want to change the behavior for a single field
if ($sAttCode == 'use_count' || $sAttCode == 'last_use_date')
{
// Combine the new Flag with those impose by a parent class
return(OPT_ATT_READONLY | parent::GetAttributeFlags($sAttCode, $aReasons, $sTargetState));
}
return parent::GetAttributeFlags($sAttCode, $aReasons, $sTargetState);
}]]></code>
</method>
<method id="GetInitialStateAttributeFlags">
<comment></comment>
<static>false</static>
<access>public </access>
<code><![CDATA[ public function GetInitialStateAttributeFlags($sAttCode, &$aReasons = array())
{
// This function is invoked when the object is CREATED on the Console
// It is called for each and every field of the object,
// but we just want to change the behavior for a single field
if ($sAttCode == 'use_count' || $sAttCode == 'last_use_date')
{
// Combine the new Flag with those imposed by a parent class
return(OPT_ATT_READONLY | parent::GetInitialStateAttributeFlags($sAttCode, $aReasons));
}
// For other fields ask the parent class to do the job
return parent::GetInitialStateAttributeFlags($sAttCode, $aReasons);
}]]></code>
</method>
</methods>
<presentation>
<details>
<items>
<item id="user_id">
<rank>10</rank>
</item>
<item id="org_id">
<rank>20</rank>
</item>
<item id="application">
<rank>30</rank>
</item>
<item id="scope">
<rank>40</rank>
</item>
<item id="expiration_date">
<rank>50</rank>
</item>
<item id="use_count">
<rank>60</rank>
</item>
<item id="last_use_date">
<rank>70</rank>
</item>
</items>
</details>
<list>
<items>
<item id="user_id">
<rank>10</rank>
</item>
<item id="application">
<rank>20</rank>
</item>
<item id="scope">
<rank>30</rank>
</item>
<item id="expiration_date">
<rank>40</rank>
</item>
</items>
</list>
<search>
<items>
<item id="user_id">
<rank>10</rank>
</item>
<item id="application">
<rank>20</rank>
</item>
<item id="scope">
<rank>30</rank>
</item>
<item id="expiration_date">
<rank>40</rank>
</item>
</items>
</search>
<default_search>
<items>
<item id="application">
<rank>10</rank>
</item>
<item id="user_id">
<rank>20</rank>
</item>
<item id="org_id">
<rank>30</rank>
</item>
<item id="expiration_date">
<rank>40</rank>
</item>
</items>
</default_search>
</presentation>
</class>
<class id="UserToken" _delta="define">
<parent>cmdbAbstractObject</parent>
<php_parent>
<name>AbstractApplicationToken</name>
</php_parent>
<properties>
<category>addon/authentication,grant_by_profile</category>
<abstract>false</abstract>
<key_type>autoincrement</key_type>
<db_table>priv_user_token</db_table>
<db_key_field>id</db_key_field>
<db_final_class_field/>
<icon/>
<naming>
<attributes>
<attribute id="login"/>
</attributes>
</naming>
</properties>
<fields>
<field id="auth_token" xsi:type="AttributeOneWayPassword">
<sql>auth_token</sql>
<default_value/>
<is_null_allowed>false</is_null_allowed>
</field>
<!-- Duplicated field in PersonalToken class -->
<field id="scope" xsi:type="AttributeEnumSet">
<values>
<value id="WebService">
<code>REST/JSON</code>
</value>
<value id="Synchro">
<code>Synchro</code>
</value>
<value id="Import">
<code>Import</code>
</value>
<value id="Export">
<code>Export</code>
</value>
</values>
<sql>scope</sql>
<default_value>WebService</default_value>
<is_null_allowed>true</is_null_allowed>
</field>
</fields>
<methods/>
<presentation>
<details>
<items>
<item id="col:col1">
<rank>10</rank>
<items>
<item id="fieldset:User:info">
<rank>10</rank>
<items>
<item id="contactid">
<rank>10</rank>
</item>
<item id="org_id">
<rank>20</rank>
</item>
<item id="email">
<rank>30</rank>
</item>
<item id="login">
<rank>40</rank>
</item>
<item id="scope">
<rank>45</rank>
</item>
<item id="language">
<rank>50</rank>
</item>
<item id="status">
<rank>60</rank>
</item>
</items>
</item>
</items>
</item>
<item id="col:col2">
<rank>20</rank>
<items>
<item id="fieldset:User:profiles">
<rank>10</rank>
<items>
<item id="profile_list">
<rank>10</rank>
</item>
</items>
</item>
</items>
</item>
<item id="allowed_org_list">
<rank>80</rank>
</item>
<item id="log">
<rank>90</rank>
</item>
</items>
</details>
<list>
<items>
<item id="contactid">
<rank>10</rank>
</item>
<item id="org_id">
<rank>20</rank>
</item>
<item id="email">
<rank>30</rank>
</item>
<item id="status">
<rank>40</rank>
</item>
</items>
</list>
</presentation>
</class>
</classes>
<dictionaries>
</dictionaries>
<user_rights>
<groups>
<group id="PersonalToken" _delta="define">
<classes>
<class id="PersonalToken"/>
</classes>
</group>
</groups>
<profiles>
<profile id="117" _delta="if_exists">
<!-- SuperUser -->
<groups>
<group id="PersonalToken">
<actions>
<action id="action:read">allow</action>
<action id="action:write">allow</action>
<action id="action:delete">allow</action>
<action id="action:bulk read">allow</action>
<action id="action:bulk write">allow</action>
<action id="action:bulk delete">allow</action>
</actions>
</group>
</groups>
</profile>
</profiles>
</user_rights>
<module_parameters>
<parameters id="authent-token" _delta="define">
<personal_tokens_allowed_profiles type="array">
<item>Administrator</item>
</personal_tokens_allowed_profiles>
<application_token type="hash">
<allow_fallback_token>false</allow_fallback_token>
</application_token>
<enable_myaccount_menu type="bool">true</enable_myaccount_menu>
</parameters>
</module_parameters>
</itop_design>