-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPageAssociationsBehavior.php
More file actions
311 lines (278 loc) · 8.67 KB
/
PageAssociationsBehavior.php
File metadata and controls
311 lines (278 loc) · 8.67 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
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
<?php
/**
* Page Behavior
*
* @property Room $Room
* @property Page $ParentPage
* @property Box $Box
* @property Page $ChildPage
* @property Box $Box
* @property Container $Container
* @property Language $Language
*
* @copyright Copyright 2014, NetCommons Project
* @author Kohei Teraguchi <kteraguchi@commonsnet.org>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
*/
App::uses('ModelBehavior', 'Model');
App::uses('Page', 'Pages.Model');
App::uses('Container', 'Containers.Model');
/**
* Page Behavior
*
* @author Kohei Teraguchi <kteraguchi@commonsnet.org>
* @package NetCommons\Pages\Model
*/
class PageAssociationsBehavior extends ModelBehavior {
/**
* Save box data.
*
* @param Model $model ビヘイビア呼び出し前のモデル
* @param array $page ページデータ
* @return mixed On success Model::$data
* @throws InternalErrorException
*/
public function saveBox(Model $model, $page) {
$model->loadModels([
'Box' => 'Boxes.Box',
]);
if (! $page['Page']['id']) {
$containerTypes = array(
Container::TYPE_HEADER, Container::TYPE_MAJOR,
Container::TYPE_MINOR, Container::TYPE_FOOTER,
);
$type = Box::TYPE_WITH_ROOM;
} else {
$containerTypes = array(
Container::TYPE_HEADER, Container::TYPE_MAJOR, Container::TYPE_MAIN,
Container::TYPE_MINOR, Container::TYPE_FOOTER,
);
$type = Box::TYPE_WITH_PAGE;
}
$boxes['Box'] = array();
foreach ($containerTypes as $containerType) {
$model->Box->create(false);
$data = array(
'Box' => array(
'type' => $type,
'space_id' => $page['Room']['space_id'],
'room_id' => $page['Page']['room_id'],
'page_id' => $page['Page']['id'],
'container_type' => $containerType,
)
);
$result = $model->Box->save($data);
if (! $result) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
$boxes['Box'][$containerType] = $result;
}
return $boxes;
}
/**
* PageContainersの登録処理
*
* @param Model $model ビヘイビア呼び出し前のモデル
* @param array $page ページデータ
* @return array
* @throws InternalErrorException
*/
public function savePageContainers(Model $model, $page) {
$model->loadModels([
'PageContainer' => 'Pages.PageContainer',
]);
$query = array(
'recursive' => -1,
'conditions' => array(
'page_id' => $this->getReferencePageId($model, $page),
)
);
$pageContainers = $model->PageContainer->find('all', $query);
$results['PageContainer'] = array();
foreach ($pageContainers as $pageContainer) {
$data = array(
'page_id' => $page['Page']['id'],
'container_type' => $pageContainer['PageContainer']['container_type'],
'is_published' => $pageContainer['PageContainer']['is_published'],
'is_configured' => $pageContainer['PageContainer']['is_configured']
);
$model->PageContainer->create(false);
$result = $model->PageContainer->save($data);
if (! $result) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
$results['PageContainer'][$data['container_type']] = $result;
}
return $results;
}
/**
* PageBoxesの登録処理
*
* @param Model $model ビヘイビア呼び出し前のモデル
* @param array $page ページデータ
* @return bool True on success
* @throws InternalErrorException
*/
public function saveBoxesPageContainers(Model $model, $page) {
$model->loadModels([
'Box' => 'Boxes.Box',
'BoxesPageContainer' => 'Boxes.BoxesPageContainer',
]);
$parentBoxesPages = array();
$parentBoxesPages = array_merge(
$parentBoxesPages,
$this->__getDafaultBoxesPageContainers($model, $page, Box::TYPE_WITH_SITE)
);
$parentBoxesPages = array_merge(
$parentBoxesPages,
$this->__getDafaultBoxesPageContainers($model, $page, Box::TYPE_WITH_SPACE)
);
$parentBoxesPages = array_merge(
$parentBoxesPages,
$this->__getDafaultBoxesPageContainers($model, $page, Box::TYPE_WITH_ROOM)
);
$parentBoxesPages = array_merge(
$parentBoxesPages,
$this->__getDafaultBoxesPageContainers($model, $page, Box::TYPE_WITH_PAGE)
);
$parentBoxesPages[] = array(
'BoxesPageContainer' => array(
'container_type' => Container::TYPE_MAIN,
'is_published' => true,
'weight' => '1',
),
'Box' => array(
'page_id' => true,
'type' => Box::TYPE_WITH_PAGE
),
);
foreach ($parentBoxesPages as $boxPage) {
$containerType = $boxPage['BoxesPageContainer']['container_type'];
$boxId = $this->__getBoxId($model, $page, $boxPage);
$pageContaireId = $page['PageContainer'][$containerType]['PageContainer']['id'];
$data = array(
'page_container_id' => $pageContaireId,
'page_id' => $page['Page']['id'],
'container_type' => $containerType,
'box_id' => $boxId,
'is_published' => $boxPage['BoxesPageContainer']['is_published'],
'weight' => $boxPage['BoxesPageContainer']['weight'],
);
$model->BoxesPageContainer->create(false);
if (!$model->BoxesPageContainer->save($data)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
}
return true;
}
/**
* PageBoxesの登録処理
*
* @param Model $model ビヘイビア呼び出し前のモデル
* @param array $page ページデータ
* @param int $boxType ボックスタイプ
* @return bool True on success
* @throws InternalErrorException
*/
private function __getDafaultBoxesPageContainers(Model $model, $page, $boxType) {
$model->loadModels([
'Box' => 'Boxes.Box',
'BoxesPageContainer' => 'Boxes.BoxesPageContainer',
]);
$conditions = array(
'BoxesPageContainer.page_id' => $this->getReferencePageId($model, $page),
'BoxesPageContainer.container_type !=' => Container::TYPE_MAIN,
'Box.type' => $boxType
);
$parentBoxesPages = $model->BoxesPageContainer->find('all', array(
'recursive' => 0,
'conditions' => $conditions
));
return $parentBoxesPages;
}
/**
* box_idの取得処理
*
* @param Model $model ビヘイビア呼び出し前のモデル
* @param array $page ページデータ
* @param array $boxPage ボックスページデータ
* @return int
*/
private function __getBoxId(Model $model, $page, $boxPage) {
$model->loadModels([
'Box' => 'Boxes.Box',
]);
$containerType = $boxPage['BoxesPageContainer']['container_type'];
if (in_array($boxPage['Box']['type'], [Box::TYPE_WITH_SITE, Box::TYPE_WITH_SPACE], true)) {
$boxId = $boxPage['Box']['id'];
} elseif ($boxPage['Box']['type'] === Box::TYPE_WITH_ROOM) {
$box = $model->Box->find('first', [
'recursive' => -1,
'fields' => 'Box.id',
'conditions' => array(
'type' => Box::TYPE_WITH_ROOM,
'room_id' => $page['Box'][$containerType]['Box']['room_id'],
'container_type' => $containerType,
)
]);
$boxId = Hash::get($box, 'Box.id');
} else {
$boxId = $page['Box'][$containerType]['Box']['id'];
}
return $boxId;
}
/**
* PageContainersを作成するためのコピー元のページIDを取得する
* ※親のページとするが、ない場合は、NC3では、強制的にパブリックスペースのものとする
*
* @param Model $model ビヘイビアの呼び出し前のモデル
* @param array $page ページデータ
* @return string
*/
public function getReferencePageId(Model $model, $page) {
if (! is_array($page)) {
return Page::PUBLIC_ROOT_PAGE_ID;
}
return Hash::get($page, 'Page.parent_id', Page::PUBLIC_ROOT_PAGE_ID);
}
/**
* Containerの削除処理
*
* @param Model $model ビヘイビア呼び出し前のモデル
* @param int $pageId ページID
* @return bool True on success
* @throws InternalErrorException
*/
public function deleteContainers(Model $model, $pageId) {
$model->loadModels([
'PageContainer' => 'Pages.PageContainer',
]);
if (! $model->PageContainer->deleteAll(array('PageContainer.page_id' => $pageId), false)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
return true;
}
/**
* Boxの削除処理
*
* @param Model $model ビヘイビア呼び出し前のモデル
* @param int $pageId ページID
* @return bool True on success
* @throws InternalErrorException
*/
public function deleteBoxes(Model $model, $pageId) {
$model->loadModels([
'Box' => 'Boxes.Box',
'BoxesPageContainer' => 'Boxes.BoxesPageContainer',
]);
if (! $model->Box->deleteAll(array('Box.page_id' => $pageId), false)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
$conditions = array('BoxesPageContainer.page_id' => $pageId);
if (! $model->BoxesPageContainer->deleteAll($conditions, false)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
return true;
}
}