-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTopicFrameSetting.php
More file actions
431 lines (387 loc) · 11.2 KB
/
TopicFrameSetting.php
File metadata and controls
431 lines (387 loc) · 11.2 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
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<?php
/**
* TopicFrameSetting Model
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
App::uses('TopicsAppModel', 'Topics.Model');
/**
* TopicFrameSetting Model
*
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @package NetCommons\Topics\Model
*/
class TopicFrameSetting extends TopicsAppModel {
/**
* 表示方法(フラットに表示)
*
* @var int
*/
const DISPLAY_TYPE_FLAT = '0';
/**
* 表示方法(プラグインごとに表示)
*
* @var int
*/
const DISPLAY_TYPE_PLUGIN = '1';
/**
* 表示方法(ルームごとに表示)
*
* @var int
*/
const DISPLAY_TYPE_ROOMS = '2';
/**
* 表示単位(日ごとに表示)
*
* @var int
*/
const UNIT_TYPE_DAYS = '0';
/**
* 表示単位(件数ごとに表示)
*
* @var int
*/
const UNIT_TYPE_NUMBERS = '1';
/**
* 除外するプラグイン
*
* @var array
*/
public static $outPlugins = array(
'announcements',
'calendars',
'circular_notices',
'questionnaires',
'quizzes',
'registrations',
'rss_readers',
);
/**
* Validation rules
*
* @var array
*/
public $validate = array();
/**
* Called during validation operations, before validation. Please note that custom
* validation rules can be defined in $validate.
*
* @param array $options Options passed from Model::save().
* @return bool True if validate operation should continue, false to abort
* @link http://book.cakephp.org/2.0/en/models/callback-methods.html#beforevalidate
* @see Model::save()
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
* @throws BadRequestException
*/
public function beforeValidate($options = array()) {
$this->validate = array_merge($this->validate, array(
'frame_key' => array(
'notBlank' => array(
'rule' => array('notBlank'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_type' => array(
'inList' => array(
'rule' => array('inList', array(
self::DISPLAY_TYPE_FLAT,
self::DISPLAY_TYPE_PLUGIN,
self::DISPLAY_TYPE_ROOMS
)),
'message' => __d('net_commons', 'Invalid request.'),
)
),
'unit_type' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_days' => array(
'numeric' => array(
'rule' => array('numeric'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_number' => array(
'numeric' => array(
'rule' => array('numeric'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_title' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_room_name' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_plugin_name' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_created_user' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_created' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'display_description' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'use_rss_feed' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'select_room' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'select_block' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'select_plugin' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
'show_my_room' => array(
'boolean' => array(
'rule' => array('boolean'),
'message' => __d('net_commons', 'Invalid request.'),
),
),
));
//TopicFramesRoomのチェック
if (isset($this->data['TopicFramesRoom'])) {
$this->loadModels([
'TopicFramesRoom' => 'Topics.TopicFramesRoom',
]);
if (! $this->TopicFramesRoom->validateRequestData($this->data)) {
throw new BadRequestException(__d('net_commons', 'Bad Request'));
}
}
//TopicFramesPluginのチェック
if (isset($this->data['TopicFramesPlugin'])) {
$this->loadModels([
'TopicFramesPlugin' => 'Topics.TopicFramesPlugin',
]);
if (! $this->TopicFramesPlugin->validateRequestData($this->data)) {
throw new BadRequestException(__d('net_commons', 'Bad Request'));
}
}
//TopicFramesBlockのチェック
if (isset($this->data['TopicFramesBlock'])) {
$this->loadModels([
'TopicFramesBlock' => 'Topics.TopicFramesBlock',
]);
if (! $this->TopicFramesBlock->validateRequestData($this->data)) {
throw new BadRequestException(__d('net_commons', 'Bad Request'));
}
}
}
/**
* Called after each successful save operation.
*
* @param bool $created True if this save created a new record
* @param array $options Options passed from Model::save().
* @return void
* @throws InternalErrorException
* @link http://book.cakephp.org/2.0/en/models/callback-methods.html#aftersave
* @see Model::save()
* @throws InternalErrorException
*/
public function afterSave($created, $options = array()) {
//TopicFramesRoom登録
if (isset($this->data['TopicFramesRoom'])) {
$this->loadModels([
'TopicFramesRoom' => 'Topics.TopicFramesRoom',
]);
if (! $this->TopicFramesRoom->saveTopicFramesRoom($this->data)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
}
//TopicFramesPluginのチェック
if (isset($this->data['TopicFramesPlugin'])) {
$this->loadModels([
'TopicFramesPlugin' => 'Topics.TopicFramesPlugin',
]);
if (! $this->TopicFramesPlugin->saveTopicFramesPlugin($this->data)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
}
//TopicFramesBlockのチェック
if (isset($this->data['TopicFramesBlock'])) {
$this->loadModels([
'TopicFramesBlock' => 'Topics.TopicFramesBlock',
]);
if (! $this->TopicFramesBlock->saveTopicFramesBlock($this->data)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
}
parent::afterSave($created, $options);
}
/**
* TopicFrameSettingデータ取得
*
* @return array TopicFrameSetting data
*/
public function getTopicFrameSetting() {
$conditions = array(
'frame_key' => Current::read('Frame.key')
);
$topicFrameSetting = $this->find('first', array(
'recursive' => -1,
'conditions' => $conditions,
));
if (! $topicFrameSetting) {
$topicFrameSetting = $this->create([
'display_type' => self::DISPLAY_TYPE_FLAT,
'unit_type' => self::UNIT_TYPE_DAYS,
'display_days' => '3',
'display_number' => '10',
'feed_title' => __d('topics', '[{X-SITE_NAME}]What\'s new'),
'feed_summary' => __d('topics', 'What\'s new today?'),
]);
}
return $topicFrameSetting;
}
/**
* TopicFrameSettingの登録
*
* @param array $data リクエストデータ
* @return mixed On success Model::$data if its not empty or true, false on failure
* @throws InternalErrorException
*/
public function saveTopicFrameSetting($data) {
//トランザクションBegin
$this->begin();
//バリデーション
$this->set($data);
if (! $this->validates()) {
return false;
}
try {
//登録処理
if (! $this->save(null, false)) {
throw new InternalErrorException(__d('net_commons', 'Internal Server Error'));
}
//トランザクションCommit
$this->commit();
} catch (Exception $ex) {
//トランザクションRollback
$this->rollback($ex);
}
return true;
}
/**
* 新着データ取得のオプション生成
*
* @param array $topicFrameSetting TopicFrameSettingデータ
* @param array $conditions 取得条件
* @return array
*/
public function getQueryOptions($topicFrameSetting, $conditions = array()) {
$this->loadModels([
'TopicFramesRoom' => 'Topics.TopicFramesRoom',
'TopicFramesPlugin' => 'Topics.TopicFramesPlugin',
'TopicFramesBlock' => 'Topics.TopicFramesBlock',
]);
$options = array();
//指定したルームのみ表示する
$conditions = $this->TopicFramesRoom->getTopicConditions($topicFrameSetting, $conditions);
//指定したプラグインのみ表示する
$conditions = $this->TopicFramesPlugin->getConditions($topicFrameSetting, $conditions);
//指定したブロックのみ表示する
$conditions = $this->TopicFramesBlock->getConditions($topicFrameSetting, $conditions);
//期間指定
if (! isset($conditions['Topic.publish_start >=']) &&
$topicFrameSetting[$this->alias]['unit_type'] === self::UNIT_TYPE_DAYS) {
$date = new DateTime();
$date->sub(new DateInterval('P' . $topicFrameSetting[$this->alias]['display_days'] . 'D'));
$period = $date->format('Y-m-d H:i:s');
$conditions['Topic.publish_start >='] = $period;
}
$options['conditions'] = $conditions;
if ($topicFrameSetting[$this->alias]['unit_type'] === self::UNIT_TYPE_NUMBERS) {
$options['limit'] = (int)$topicFrameSetting[$this->alias]['display_number'];
} else {
$options['limit'] = 100;
$options['maxLimit'] = 1000;
}
return $options;
}
/**
* 新着に表示するブロックデータ取得
*
* @param array $pluginKeys plugin_keyリスト
* @param array $roomIds room_idリスト
* @return array ブロックデータ
*/
public function getBlocks($pluginKeys, $roomIds) {
$this->loadModels([
'Block' => 'Blocks.Block',
]);
//除外するプラグイン
$pluginKeys = array_diff($pluginKeys, self::$outPlugins);
$conditions = array(
'Block.room_id' => $roomIds,
'BlocksLanguage.language_id' => Current::read('Language.id'),
'Block.plugin_key' => $pluginKeys,
);
if (! Current::permission('block_editable')) {
$now = gmdate('Y-m-d H:i:s');
//ブロック公開設定の条件生成
$conditions['OR'] = array(
$this->Block->alias . '.public_type' => self::TYPE_PUBLIC,
array(
$this->Block->alias . '.public_type' => self::TYPE_LIMITED,
$this->Block->alias . '.publish_start <=' => $now,
$this->Block->alias . '.publish_end >=' => $now,
),
);
}
$result = $this->Block->find('all', array(
'recursive' => 0,
'fields' => array(
'Block.id', 'Block.plugin_key', 'Block.room_id', 'Block.key', 'BlocksLanguage.name'
),
'conditions' => $conditions,
));
$blocks = array();
foreach ($result as $block) {
$key = $block['Block']['plugin_key'] . $block['Block']['room_id'];
$blocks[$key][$block['Block']['key']] = $block['Block'];
$blocks[$key][$block['Block']['key']]['name'] = $block['BlocksLanguage']['name'];
}
return $blocks;
}
}