-
Notifications
You must be signed in to change notification settings - Fork 1
/
module_dha.tpl
469 lines (388 loc) · 17.7 KB
/
module_dha.tpl
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
// <?php
/*
----------------------------------------------------------------
「DHA」(DiffAndApprovalAndHistory)
履歴と承認と差分表示のモジュール
※モジュールは基本的に全員が利用できるように設定すること。
----------------------------------------------------------------
*/
$dha_path = MODX_BASE_PATH . 'assets/plugins/dha/';
include_once($dha_path . 'functions.php');
$dha = new DHA();
$dha->run();
class DHA
{
function DHA()
{
}
function run()
{
// ----------------------------------------------------------------
// テーブル名と共通変数を設定
// ----------------------------------------------------------------
global $_lang;
global $modx;
global $manager_theme;
global $modx_charset;
global $SystemAlertMsgQueque;
global $_style;
global $modx_textdir;
global $modx_manager_charset;
global $modx_lang_attribute;
global $content;
global $e;
global $incPath;
$tbl_history = $modx->getFullTableName('history_of_site_content'); // 履歴テーブル
$tbl_contentvalues_history = $modx->getFullTableName('history_of_site_tmplvar_contentvalues');// テンプレート変数履歴テーブル
$tbl_content = $modx->getFullTableName('site_content'); // コンテンツテーブル
$tbl_contentvalues = $modx->getFullTableName('site_tmplvar_contentvalues'); // テンプレート変数テーブル
$tbl_module = $modx->getFullTableName('site_modules'); // モジュールテーブル
// モジュール「DHA」のモジュールID取り出し
$rs = $modx->db->select('*', $tbl_module , " name='DHA' ");
$module_id = $modx->db->getValue($rs);
// リクエスト値受け取り
$request_err_flag = 0;
// コンテンツID
if(isset($_REQUEST['docid'])) $docid = intval($_REQUEST['docid']);
else
{
$docid=0;
$request_err_flag = 1;
}
// 履歴ID
if(isset($_REQUEST['hisid'])) $hisid = intval($_REQUEST['hisid']);
else
{
$hisid=0;
$request_err_flag = 1;
}
// ロールバックスイッチ
if(isset($_REQUEST['rolesw']))
{
$rolesw = $_REQUEST['rolesw'];
if ( $rolesw != "role" ) $request_err_flag = 1;
}
if ( (!is_numeric($docid))||(!is_numeric($hisid))||($request_err_flag == 1) )
{
$modx->webAlert( "処理を停止しました。本機能は編集画面より呼び出してください。" );
echo "処理を停止しました。本機能は編集画面より呼び出してください。";
exit;
}
// ----------------------------------------------------------------
// コンテンツのみの差分を読み込みする場合のルーチン -- はじめ
// ----------------------------------------------------------------
// 現在コンテンツデータをゲット
// ----------------------------------------------------------------
// コンテンツデータをゲット
// ----------------------------------------------------------------
$result = $modx->db->select('*', $tbl_content , " id='{$docid}' ");
// データ取り出し
$a_docs = array();
if( $modx->db->getRecordCount( $result ) >= 1 )
{
while($row = $modx->db->getRow($result) )
{
$s_now_page = $row['content'];
$s_now_template = $row['template'];
}
}
// テンプレート変数データをゲット
// ----------------------------------------------------------------
$sql= "SELECT tv.*, IF(tvc.value!='',tvc.value,tv.default_text) as value ";
$sql .= "FROM " . $modx->getFullTableName("site_tmplvars") . " tv ";
$sql .= "INNER JOIN " . $modx->getFullTableName("site_tmplvar_templates")." tvtpl ON tvtpl.tmplvarid = tv.id ";
$sql .= "LEFT JOIN " . $tbl_contentvalues." tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '" . $docid. "' ";
$sql .= "WHERE tvtpl.templateid = '" . $s_now_template . "'";
$sql .= " ORDER BY tvc.tmplvarid ";
$rs= $modx->db->query($sql);
$rowCount= $modx->recordCount($rs);
$tmplvars = array();
$tmpl_flag = 0;
if ($rowCount > 0)
{
$tmpl_flag = 1;
for ($i= 0; $i < $rowCount; $i++)
{
$row_tvs= $modx->fetchRow($rs);
if ( $row_tvs['value'] != "" ) $tmplvars []= "[" . $row_tvs['caption'] . "]" . $row_tvs['value'];
}
$s_now_page .= implode( "\n", $tmplvars);
}
// 履歴データをゲット
// ----------------------------------------------------------------
// コンテンツデータをゲット
// ----------------------------------------------------------------
// SQL発行
$result = $modx->db->select('*', $tbl_history , " id='{$docid}' " , ' editedon desc ' );
// データ取り出し
$a_docs = array();
$s_drop_down_history = '';
if( $modx->db->getRecordCount( $result ) >= 1 )
{
while($row = $modx->db->getRow($result))
{
$a_docs[ $row['editedon'] ] = $row;
// ドロップダウン組み立て
$s_drop_down_history .= '<option value="';
$s_drop_down_history .= $row['editedon'];
$s_drop_down_history .= '"';
if($row['editedon'] == $hisid ) $s_drop_down_history .= ' selected="selected"';
$s_drop_down_history .= '>';
$s_drop_down_history .= mb_strftime('%Y年%m月%d日(%a)%H時%M分%S秒' , $row['editedon'] );
$s_drop_down_history .= '</option>';
}
}
if (!isset($a_docs[$hisid]))
{
$modx->webAlert( "承認を受けたページデータが存在しません。" );
echo "承認を受けたページデータが存在しません。";
exit;
}
else
{
$doc_data = array();
$doc_data = $a_docs[$hisid];
}
// Diffで比較対照となる過去データ取り出し
$s_old_page = $doc_data['content'];
$s_old_pagetitle = $doc_data['pagetitle'];
$s_old_longtitle = $doc_data['longtitle'];
$s_old_menutitle = $doc_data['menutitle'];
$s_old_description = $doc_data['description'];
$s_old_alias = $doc_data['alias'];
$s_old_editedon = $doc_data['editedon'];
$s_old_editedby = $doc_data['editedby'];
// テンプレート変数データをゲット
// ----------------------------------------------------------------
$sql= "SELECT tv.*, IF(tvc.value!='',tvc.value,tv.default_text) as value ";
$sql .= "FROM " . $modx->getFullTableName("site_tmplvars") . " tv ";
$sql .= "INNER JOIN " . $modx->getFullTableName("site_tmplvar_templates")." tvtpl ON tvtpl.tmplvarid = tv.id ";
$sql .= "LEFT JOIN " . $tbl_contentvalues_history." tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '" . $docid. "' ";
$sql .= "WHERE tvtpl.templateid = '" . $doc_data ['template'] . "'";
$sql .= " AND ";
$sql .= " tvc.editedon = '" . $hisid . "'";
$sql .= " ORDER BY tvc.tmplvarid ";
$rs= $modx->db->query($sql);
$rowCount= $modx->recordCount($rs);
$tmplvars = array();
$s_old_tvs = "";
if ($rowCount > 0)
{
for ($i= 0; $i < $rowCount; $i++)
{
$row_tvs= $modx->fetchRow($rs);
$tmplvars []= "[" . $row_tvs['caption'] . "]" . $row_tvs['value'];
}
$s_old_tvs = implode( "\n", $tmplvars);
}
// コンテンツのみの差分を読み込みする場合のルーチン -- おわり
// ----------------------------------------------------------------
// ----------------------------------------------------------------
// ロールバックを行う場合のルーチン -- はじめ
// ----------------------------------------------------------------
if ( ( isset( $rolesw ) ) && ( $rolesw == "role" ) ) {
// 本文データのロールバック
// ----------------------------------------------------------------
$s_old_page = $modx->db->escape($s_old_page);
// SQL文構築
$sql_string_where = "";
$sql_string_where .= " id='$docid' ";
$sql_string_update = "";
$sql_string_update .= " content='$s_old_page' ";
$sql_string_update .= ",";
$sql_string_update .= " pagetitle='$s_old_pagetitle' ";
$sql_string_update .= ",";
$sql_string_update .= " longtitle='$s_old_longtitle' ";
$sql_string_update .= ",";
$sql_string_update .= " menutitle='$s_old_menutitle' ";
$sql_string_update .= ",";
$sql_string_update .= " description='$s_old_description' ";
$sql_string_update .= ",";
$sql_string_update .= " alias='$s_old_alias' ";
$sql_string_update .= ",";
$sql_string_update .= " editedon='$s_old_editedon' ";
$sql_string_update .= ",";
$sql_string_update .= " editedby='$s_old_editedby' ";
// SQL発行
$modx->db->update( $sql_string_update , $tbl_content , $sql_string_where );
// テンプレート変数データのロールバック
// ----------------------------------------------------------------
if ( $tmpl_flag == 1 ) {
// SQL文構築
$sql_string_where = "";
$sql_string_where .= " contentid ='$docid' ";
$sql_string_where .= " AND ";
$sql_string_where .= " editedon ='$hisid' ";
// SQL発行
$result = $modx->db->select('*', $tbl_contentvalues_history , $sql_string_where );
// データ取り出し
$a_tvs_app = array();
if( $modx->db->getRecordCount( $result ) >= 1 ) {
while( $row = $modx->db->getRow( $result ) ) {
$a_tvs_app[] = "('" . $row['id'] . "','" . $row['tmplvarid'] . "','" . $row['contentid'] . "', '" . $modx->db->escape( $row['value'] ) . "')";
}
}
// テンプレート変数登録
if (!empty($a_tvs_app)) {
$sql_app = 'REPLACE INTO '.$tbl_contentvalues.' (id,tmplvarid, contentid, value) VALUES '.implode(',', $a_tvs_app);
$rs = mysql_query($sql_app);
}
}
// ロールバックした後は、編集画面へ移動
header("Location: index.php?a=27&id=$docid");
exit;
}
// ----------------------------------------------------------------
// ロールバックを行う場合のルーチン -- おわり
// ----------------------------------------------------------------
// ----------------------------------------------------------------
// 差分確認 -- はじめ
// ----------------------------------------------------------------
// Diffモジュール読み込み
global $path;
$path = $modx->config['base_path'] . 'assets/plugins/dha/';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
include_once($path . 'Text/Diff.php');
include_once($path . 'Text/Diff/Renderer/inline.php');
$php_errormsg = ""; // ignore php5 strict errors
// Diffにかける前のお膳立て
$s_old_page .= $s_old_tvs;
$s_now_page = strip_tags ( $s_now_page );
$s_old_page = strip_tags ( $s_old_page );
$s_now_page = str_replace("\t", "", $s_now_page );
$s_old_page = str_replace("\t", "", $s_old_page );
$s_now_page = str_replace(" ", "", $s_now_page );
$s_old_page = str_replace(" ", "", $s_old_page );
$s_now_page = str_replace(" ", "", $s_now_page );
$s_old_page = str_replace(" ", "", $s_old_page );
while ( preg_match('|\n\n|' , $s_now_page ) ) $s_old_page = preg_replace('|\n\n|' , "\n" , $s_now_page );
while ( preg_match('|\n\n|' , $s_old_page ) ) $s_old_page = preg_replace('|\n\n|' , "\n" , $s_old_page );
$a_now_page = explode ("\n", $s_now_page);
$a_old_page = explode ("\n", $s_old_page);
// Diff開始
$diff = new Text_Diff($a_old_page ,$a_now_page);
$renderer = new Text_Diff_Renderer_inline();
// Diff結果データ加工
$publish_diff_data = $renderer->render($diff);
while(preg_match('|\n\n|' , $publish_diff_data)) $publish_diff_data = preg_replace('|\n\n|' , "\n" , $publish_diff_data );
$publish_diff_data = str_replace("\n", "<br />\n", $publish_diff_data );
if($publish_diff_data == '')
{
$publish_diff_data = '二つのページ内容に違いはありません。';
}
// ----------------------------------------------------------------
// 差分確認 -- おわり
// ----------------------------------------------------------------
// ----------------------------------------------------------------
// ヘッダ読み込み
// ----------------------------------------------------------------
include_once "header.inc.php";
// ----------------------------------------------------------------
// 結果画面表示
// ----------------------------------------------------------------
?>
<link rel="stylesheet" type="text/css" href="<?php echo MODX_SITE_URL;?>assets/plugins/dha/css/style.css" />
<script type="text/javascript">
function previewOlddocument() {
var win = window.frames['preview'];
url = "../index.php?id=<?php echo $docid; ?>&hisid=" + document.history.hisid.value + "&manprev=z";
nQ = "id=<?php echo $docid; ?>&hisid=" + document.history.hisid.value + "&manprev=z"; // new querysting
oQ = (win.location.href.split("?"))[1]; // old querysting
if (nQ != oQ) {
win.location.href = url;
win.alreadyPreviewed = true;
}
}
function goBySelectValue( selname ) {
fucus_sel = document.getElementById( selname );
select_number = fucus_sel.selectedIndex;
select_value = fucus_sel.options[select_number].value;
url = "<?php echo "index.php?a=112&id=$module_id&docid=$docid&hisid="; ?>" + select_value;
location.href = url;
}
function goBySelectValueForRolback( selname ) {
fucus_sel = document.getElementById( selname );
select_number = fucus_sel.selectedIndex;
select_value = fucus_sel.options[select_number].value;
if ( window.confirm("編集中の内容を指定した日時の状態に戻します。\n現在の内容に再度、戻すことはできません。\nよろしいですか?") ) {
url = "<?php echo "index.php?a=112&id=$module_id&docid=$docid&hisid="; ?>" + select_value + "&rolesw=role";
location.href = url;
}
}
</script>
<br />
<form name="history" id="contentHistory" method="post" enctype="multipart/form-data" action="index.php">
<input type="hidden" name="docid" value="<?php echo $docid; ?>" />
<input type="hidden" name="hisid" value="<?php echo $hisid; ?>" />
<div class="sectionHeader">ドキュメントの更新履歴/差分表示</div>
<div class="sectionBody">
<script type="text/javascript" src="media/script/tabpane.js"></script>
<div class="tab-pane" id="dhaPane">
<script type="text/javascript">
tpSettings = new WebFXTabPane( document.getElementById( "dhaPane" ) );
</script>
<!-- General -->
<div class="tab-page" id="tabGeneral">
<h2 class="tab">差分</h2>
<script type="text/javascript">tpSettings.addTabPage( document.getElementById( "tabGeneral" ) );</script>
<span class="warning"><?php echo mb_strftime('%Y年%m月%d日(%a)%H時%M分%S秒' , $hisid )?></span>に承認を受けた内容と<span class="warning">現在、編集中のページデータ</span>との差分を表示しています。<br />
<div class="split"></div>
<br /><span class="warning">本文のみ抽出して差分表示</span><br />
<div style="border:1px solid #ccc;padding:10px;">
<?php echo $publish_diff_data;?>
</div>
<br />
<div class="split"></div>
<table width="450" border="0" cellspacing="0" cellpadding="0">
<tr style="height: 24px;"><td width="150"><span class="warning">過去のページ内容</span></td>
<td>
<select id="historyList" name="historyList" class="inputBox" onchange="goBySelectValue('historyList');" style="width:250px">
<?php echo $s_drop_down_history; ?>
</select>を表示
</td></tr>
</table>
</div><!-- end #tabGeneral -->
<!-- Roleback -->
<div class="tab-page" id="tabRoleback">
<h2 class="tab">編集内容を戻す</h2>
<script type="text/javascript">tpSettings.addTabPage( document.getElementById( "tabRoleback" ) );</script>
<table width="450" border="0" cellspacing="0" cellpadding="0">
<tr style="height: 24px;">
<td>
<select id="rolebackList" name="historyList" class="inputBox" style="width:250px">
<?php echo $s_drop_down_history; ?>
</select> に承認を受けた内容へ
<div class="actionButtons" style="padding:7px 0;">
<a href="#" onclick="goBySelectValueForRolback('rolebackList');"><img src="<?php global $style_path; echo $style_path; ?>icons/clock_play.png" align="absmiddle" /> 編集中の内容を戻す</a>
</div>
</td></tr>
</table>
</div><!-- end #tabRoleback -->
<!-- Preview -->
<div class="tab-page" id="tabPreviewNow">
<h2 class="tab">編集中のページ内容</h2>
<script type="text/javascript">tpSettings.addTabPage(document.getElementById("tabPreviewNow"));</script>
<table width="96%" border="0"><tr><td>ここには最後に保存した編集内容をプレビューしています。</td></tr>
<tr><td><iframe name="previewnow" frameborder="0" width="100%" height="400" id="previewnowIframe" src="../index.php?id=<?php echo $docid; ?>&preview_sw=1&manprev=z"></iframe></td></tr>
</table>
</div><!-- end #tabPreview -->
<!-- Settings -->
<div class="tab-page" id="tabPreview">
<h2 class="tab">過去のページ内容</h2>
<script type="text/javascript">tpSettings.addTabPage( document.getElementById( "tabPreview" ), previewOlddocument );</script>
<table width="96%" border="0"><tr><td>ここには<?php echo mb_strftime('%Y年%m月%d日(%a)%H時%M分%S秒' , $hisid )?>に承認を受けた内容をプレビューしています。</td></tr>
<tr><td><iframe name="previewpub" frameborder="0" width="100%" style="height:400px;" id="previewIframe"
src="<?php echo $modx->config['site_url'];?>index.php?id=<?php echo $docid; ?>&hisid=<?php echo $_GET['hisid'];?>&manprev=z"></iframe></td></tr>
</table>
</div><!-- end #tabSettings -->
</div><!-- end #documentPane -->
</div><!-- end .sectionBody -->
</form>
<?php
// ----------------------------------------------------------------
// フッタ読み込み
// ----------------------------------------------------------------
include_once "footer.inc.php";
}
}
// ?>