OSDN Git Service

インストール時のリダイレクト処理を修正。
[magic3/magic3.git] / include / container / baseFrameContainer.php
1 <?php
2 /**
3  * フレームコンテナ作成用ベースクラス
4  *
5  * PHP versions 5
6  *
7  * LICENSE: This source file is licensed under the terms of the GNU General Public License.
8  *
9  * @package    Magic3 Framework
10  * @author     平田直毅(Naoki Hirata) <naoki@aplo.co.jp>
11  * @copyright  Copyright 2006-2017 Magic3 Project.
12  * @license    http://www.gnu.org/copyleft/gpl.html  GPL License
13  * @version    SVN: $Id$
14  * @link       http://www.magic3.org
15  */
16 require_once(M3_SYSTEM_INCLUDE_PATH . '/db/systemDb.php');              // システムDBアクセスクラス
17 require_once(M3_SYSTEM_INCLUDE_PATH . '/common/core.php');
18
19 class BaseFrameContainer extends Core
20 {
21         protected $_db; // DB接続オブジェクト
22         private $joomlaBufArray = array();                      // Joomla!データ受け渡し用
23         const SYSTEM_TEMPLATE = '_system';              // システム画面用テンプレート
24         const M_ADMIN_TEMPLATE = 'm/_admin';    // 携帯用管理画面テンプレート
25         const ERR_MESSAGE_ACCESS_DENY = 'Access denied.';               // ウィジェットアクセスエラーのメッセージ
26         const SITE_ACCESS_EXCEPTION_IP = 'site_access_exception_ip';            // アクセス制御、例外とするIP
27         const CONFIG_KEY_MSG_TEMPLATE = 'msg_template';                 // メッセージ用テンプレート取得キー
28 //      const CF_MOBILE_AUTO_REDIRECT = 'mobile_auto_redirect';         // 携帯の自動遷移
29         const TEMPLATE_GENERATOR_THEMLER = 'themler';                   // テンプレート作成アプリケーション(Themler)
30                 
31         /**
32          * コンストラクタ
33          */
34         function __construct()
35         {
36                 // 親クラスを呼び出す
37                 parent::__construct();
38                 
39                 // DBオブジェクト取得
40                 $this->_db = $this->gInstance->getSytemDbObject();
41         }
42         /**
43          * 起動マネージャから呼ばれる唯一のメソッド
44          *
45          * @param RequestManager $request               HTTPリクエスト処理クラス
46          */
47         function process($request)
48         {
49                 // パラメータを取得
50                 $cmd = $request->trimValueOf(M3_REQUEST_PARAM_OPERATION_COMMAND);               // 実行コマンドを取得
51                                 
52                 // インストール画面への制御は、install.phpファイルの作成、削除で制御する
53                 // 最小限の設定が行われていない場合,DBに接続できない場合は、インストール画面へ
54                 if (!defined('M3_STATE_IN_INSTALL')){
55                         if (($this->gEnv->canUseDb() && $this->gSystem->canInitSystem()) ||             // システム初期化モードのとき
56                                 !$this->gConfig->isConfigured()){                                                                       // 設定ファイルに設定がないとき(初回インストール)
57                                 
58                                 // 旧システムがある場合はadminディレクトリまでアクセスしてインストーラを実行。
59                                 $isRedirect = false;
60                                 if ($this->_isExistsOldSystemDir()){            // ディレクトリアクセス権がない場合も旧システムが存在するものとしてリダイレクトを行う
61                                         if ($this->gEnv->isAdminDirAccess()) $isRedirect = true;
62                                 } else {
63                                         $isRedirect = true;
64                                 }
65                                 
66                                 if ($isRedirect){
67                                         // インストーラファイルがない場合は回復
68                                         $this->gInstance->getFileManager()->recoverInstaller();
69
70                                         $this->gPage->redirectToInstall();
71                                 } else {
72                                         // サイト非公開(システムメンテナンス)表示
73                                         $this->gPage->showError(503);
74                                 }
75                                 return;
76                         } else if ($this->gConfig->isConfigured() && !$this->gEnv->canUseDb()){         // DB接続失敗のとき
77                                 if ($this->gEnv->isAdminDirAccess()){           // 管理画面の場合のみインストーラ起動
78                                         // インストーラファイルがない場合は回復
79                                         $this->gInstance->getFileManager()->recoverInstaller();
80
81                                         $this->gPage->redirectToInstall();
82                                 } else {
83                                         // サーバ内部エラーメッセージ表示
84                                         $this->gPage->showError(500);
85                                 }
86                                 return;
87                         }
88                 }
89                 
90                 // 開始ログ出力
91                 //$this->gLog->info(__METHOD__, 'フレーム作成開始');
92
93                 // ページ作成開始
94                 // セッション変数読み込み。サブページIDの設定。
95                 $this->gPage->startPage($request);
96                 
97                 // パラメータ取得
98                 $isSystemAdmin = $this->gEnv->isSystemAdmin();          // 管理者権限があるかどうか
99                 $isSystemManageUser = $this->gEnv->isSystemManageUser();                // システム運用可能かどうか
100                         
101                 if (!defined('M3_STATE_IN_INSTALL')){           // インストールモード以外のとき
102                         // ############## ユーザごとの設定の読み込み ###################
103                         // 引数での言語設定取得、言語変更可能な場合は変更
104                         // 言語の優先順は、URLの言語設定、クッキーの言語設定の順
105                         if (!$this->gEnv->isAdminDirAccess()){          // 管理画面以外の場合
106                                 if ($this->gEnv->getCanChangeLang() && $this->gEnv->isMultiLanguageSite()){     // 言語変更可能で多言語対応サイトのとき
107                                         $lang = $request->trimValueOf(M3_REQUEST_PARAM_OPERATION_LANG);
108                                         if (empty($lang)){
109                                                 // 空の場合はクッキーから言語値を取得
110                                                 $lang = $request->getCookieValue(M3_COOKIE_LANG);
111                                         }
112
113                                         // アクセス可能な言語な場合は変更
114                                         if (in_array($lang, $this->gSystem->getAcceptLanguage())){
115                                                 $this->gEnv->setCurrentLanguage($lang);
116                                                 
117                                                 // クッキーに言語を保存
118                                                 $request->setCookieValue(M3_COOKIE_LANG, $lang);
119                                         } else {                // アクセス不可の場合はクッキーを削除
120                                                 // クッキーを削除
121                                                 $request->setCookieValue(M3_COOKIE_LANG, '', -1);
122                                         }
123                                 } else {
124                                         // クッキーを削除
125                                         $request->setCookieValue(M3_COOKIE_LANG, '', -1);
126                                 }
127                                 // 言語に依存する情報を取り込む
128                                 $this->gPage->loadLang();
129                         }
130                         // ################### URLアクセス制御 ######################
131                         // 非公開URLへは管理権限がないとアクセスできない
132                         $canAccess = true;              // アクセス可能かどうか
133                         $isErrorAccess = false;         // 不正アクセスかどうか
134                         $toAdminType = 0;               // 管理画面の遷移タイプ(0=アクセス不可、1=ログイン画面、2=サイト非公開画面, 3=存在しないページ)
135                         $errMessage = '';       // エラーメッセージ
136                         $messageDetail = '';    // 詳細メッセージ
137                         
138                         // ページID,ページサブID以外のURLパラメータをチェック。ページマネージャーでの処理(startPage())の結果を反映。
139                         $ret = $this->gPage->isSystemPage();            // システム制御ページへ遷移するかどうか
140                         if ($ret){
141                                 // ページが見つかりません画面へ遷移
142                                 $canAccess = false;
143                                 $toAdminType = 4;
144                         }
145                         
146                         // ページID,ページサブIDからアクセス権をチェック
147                         if ($canAccess){
148                                 $isPublicUrl = $this->gPage->canAccessUrl($isActivePage, $errCode);
149                                 if (!$isPublicUrl && !$isSystemManageUser){// システム運用可能ユーザかどうか
150                                         $canAccess = false;
151                                         $isErrorAccess = true;          // 不正アクセスかどうか
152                                         $errMessage = 'ユーザに公開されていないページへのアクセス。';
153                                 
154                                         if (!$isActivePage){
155                                                 if ($errCode == 1){                     // ページIDが不正な場合
156                                                         $toAdminType = 4;
157                                                 } else {
158                                                         $toAdminType = 3;               // 有効なアクセスポイント、ページでない場合は存在しないページとする
159                                                 }
160                                         }
161                                 }
162                         }
163                         
164                         // ################### ユーザアクセス制御 ######################
165                         // クッキーがないため権限を識別できない場合でも、管理者として処理する場合があるので、サブクラスの_checkAccess()メソッドは必ず通るようにする
166                         if ($canAccess){                // アクセス可能な場合はユーザをチェック
167                                 if (method_exists($this, '_checkAccess')){
168                                         // 管理画面へのアクセスを制御
169                                         $canAccess = $this->_checkAccess($request);             // サブクラスメソッドの呼び出し
170                                         
171                                         // フロント画面から直接管理画面が呼ばれた場合は一旦ログインへ遷移
172                                         if (!$canAccess && 
173                                                 ($cmd == M3_REQUEST_CMD_CONFIG_WIDGET ||                                                // ウィジェットの設定
174                                                 $cmd == M3_REQUEST_CMD_SHOW_POSITION_WITH_WIDGET)){                     // 表示位置を表示するとき(ウィジェット付き)
175                                                 // 管理画面で処理
176                                                 $toAdminType = 1;               // ログイン画面へ
177                                         }
178                                 } else {                        // _checkAccess()がないときは、標準のアクセス制御
179                                         // フロント画面へのアクセスを制御
180                                         $canAccess = $this->_accessSite($request);              // サイト公開制御
181                                         if ($canAccess){
182                                                 if ($cmd == M3_REQUEST_CMD_LOGIN ||                                     // ログイン画面を表示のとき
183                                                         $cmd == M3_REQUEST_CMD_LOGOUT){                         // ログアウトのとき
184
185                                                         // 管理画面で処理
186                                                         $canAccess = false;
187                                                         $toAdminType = 1;               // ログイン画面へ
188                                                 } else if ($cmd != '' &&                                                                // コマンドなし
189                                                         $cmd != M3_REQUEST_CMD_CHANGE_TEMPLATE &&                       // テンプレート変更
190                                                         $cmd != M3_REQUEST_CMD_SHOW_POSITION &&                         // 表示位置を表示するとき
191                                                         $cmd != M3_REQUEST_CMD_SHOW_POSITION_WITH_WIDGET &&     // 表示位置を表示するとき(ウィジェット付き)
192                                                         $cmd != M3_REQUEST_CMD_FIND_WIDGET &&                           // ウィジェットを検索
193                                                         $cmd != M3_REQUEST_CMD_DO_WIDGET &&                                     // ウィジェット単体実行
194                                                         $cmd != M3_REQUEST_CMD_PREVIEW &&                                       // サイトのプレビューを表示
195                                                         $cmd != M3_REQUEST_CMD_RSS &&                                           // RSS配信
196                                                         $cmd != M3_REQUEST_CMD_CSS){                                            // CSS生成
197                                                         
198                                                         // 標準のアクセスでは、上記コマンド以外は受け付けない
199                                                         $canAccess = false;
200                                                         $isErrorAccess = true;          // 不正アクセス
201                                                         $errMessage = '不正なコマンドの実行。';
202                                                         $messageDetail = 'アクセスポイント状態=公開';
203                                                 }
204                                         } else {                // サイトアクセスできない場合は、管理画面でメッセージを表示
205                                                 if ($cmd == M3_REQUEST_CMD_LOGIN ||                                     // ログイン画面を表示のとき
206                                                         $cmd == M3_REQUEST_CMD_LOGOUT ||                                // ログアウトのとき
207                                                         $cmd == M3_REQUEST_CMD_PREVIEW){                                        // サイトのプレビューを表示
208                                                         $toAdminType = 1;               // ログイン画面へ
209                                                 } else {
210                                                         $toAdminType = 2;               // サイト非公開画面へ
211                                                 }
212                                                 
213                                                 // 不正なコマンドはログを残す
214                                                 if ($cmd != '' &&                                                               // コマンドなし
215                                                         $cmd != M3_REQUEST_CMD_LOGIN &&                         // ログイン画面を表示のとき
216                                                         $cmd != M3_REQUEST_CMD_LOGOUT &&                                        // ログアウトのとき
217                                                         $cmd != M3_REQUEST_CMD_CHANGE_TEMPLATE &&                       // テンプレート変更
218                                                         $cmd != M3_REQUEST_CMD_SHOW_POSITION &&                         // 表示位置を表示するとき
219                                                         $cmd != M3_REQUEST_CMD_SHOW_POSITION_WITH_WIDGET &&     // 表示位置を表示するとき(ウィジェット付き)
220                                                         $cmd != M3_REQUEST_CMD_FIND_WIDGET &&                           // ウィジェットを検索
221                                                         $cmd != M3_REQUEST_CMD_DO_WIDGET &&                                     // ウィジェット単体実行
222                                                         $cmd != M3_REQUEST_CMD_PREVIEW &&                                       // サイトのプレビューを表示
223                                                         $cmd != M3_REQUEST_CMD_RSS &&                                           // RSS配信
224                                                         $cmd != M3_REQUEST_CMD_CSS){                                            // CSS生成
225                                                         
226                                                         $isErrorAccess = true;          // 不正アクセス
227                                                         $errMessage = '不正なコマンドの実行。';
228                                                         $messageDetail = 'アクセスポイント状態=非公開';
229                                                 }
230                                         }
231                                 }
232                                 // システム運用可能ユーザはアクセス可。
233                                 // ログアウトのときはすでに管理ユーザの可能性があるので、ログアウト時は変更しない
234                                 //if ($isSystemManageUser && $cmd != M3_REQUEST_CMD_LOGOUT) $canAccess = true;
235                                 if ($isSystemAdmin && $cmd != M3_REQUEST_CMD_LOGOUT) $canAccess = true;                 // 2011/8/31 システム管理者のみに変更
236                         }
237                         // #################### アクセスログ記録 #######################
238                         // DBが使用可能であれば、ログイン処理終了後、アクセスログを残す
239                         if ($this->gEnv->canUseDb()) $this->gAccess->accessLog();
240
241                         // アクセス不可のときはここで終了
242                         if (!$canAccess){
243                                 switch ($toAdminType){
244                                         case 1:                 // ログイン画面へ
245                                                 // システム制御モードに変更
246                                                 $this->gPage->setSystemHandleMode(1/*管理画面*/);
247                                                 break;
248                                         case 2:                 // サイト非公開画面へ
249                                                 $this->gPage->setSystemHandleMode(10/*サイト非公開中*/);
250                                                 break;
251                                         case 3:                 // 存在しないページ画面へ(システム運用可能ユーザ以外)
252                                                 // サイトが非公開の場合は、メンテナンス中画面のみ表示
253                                                 if ($this->_accessSite($request)){              // サイト公開中の場合
254                                                         $messageDetail = 'アクセスポイント状態=公開';
255                                                         $this->gPage->setSystemHandleMode(12/*存在しないページ*/);
256                                                 } else {
257                                                         $messageDetail = 'アクセスポイント状態=非公開';
258                                                         $this->gPage->setSystemHandleMode(10/*サイト非公開中*/);
259                                                 }
260                                                 break;
261                                         case 4:         // 不正なページIDの指定
262                                                 $messageDetail = '不正なページIDの指定';
263                                                 $this->gPage->setSystemHandleMode(12/*存在しないページ*/);
264                                                 break;
265                                         default:                // アクセス不可画面へ
266                                                 // システム制御モードに変更
267                                                 $this->gPage->setSystemHandleMode(11/*アクセス不可*/);
268                                                 break;
269                                 }
270                                 // システム制御画面を表示
271                                 $this->_showSystemPage($request, $toAdminType);
272                                                 
273                                 // 不正アクセスの場合は、アクセスエラーログを残す
274                                 if ($isErrorAccess) $this->gOpeLog->writeUserAccess(__METHOD__, '不正なアクセスを検出しました。' . $errMessage, 2201, 'アクセスをブロックしました。URL: ' . $this->gEnv->getCurrentRequestUri() . ', ' . $messageDetail);
275                                 return;
276                         }
277                         // #################### URLの遷移 #######################
278                         //if ($this->gSystem->getSystemConfig(self::CF_MOBILE_AUTO_REDIRECT)){          // 携帯自動遷移を行う場合
279                         if ($this->gSystem->mobileAutoRedirect()){              // 携帯自動遷移を行う場合
280                                 // 携帯のときは携帯用URLへ遷移
281                                 if ($this->gEnv->isMobile() && !$this->gEnv->getIsMobileSite()){
282                                         $this->gPage->redirect($this->gEnv->getDefaultMobileUrl(true/*携帯用パラメータ付加*/), true/*遷移時のダイアログ表示を抑止*/);
283                                         return;
284                                 }
285                         }
286                         if ($this->gSystem->smartphoneAutoRedirect()){          // スマートフォン自動遷移を行う場合
287                                 // スマートフォンのときはスマートフォンURLへ遷移
288                                 if ($this->gEnv->isSmartphone() && !$this->gEnv->getIsSmartphoneSite()){
289                                         $this->gPage->redirect($this->gEnv->getDefaultSmartphoneUrl());
290                                         return;
291                                 }
292                         }
293                 }
294
295                 // ################## 実行コマンドから処理を確定 ##################
296                 $openBy = $request->trimValueOf(M3_REQUEST_PARAM_OPEN_BY);              // ウィンドウオープンタイプ
297                 
298                 // 画面作成モードか、ウィジェット単体処理モードかを決定
299                 $createPage = true;             // 画面作成モード
300                 if ($cmd == M3_REQUEST_CMD_INIT_DB){    // DB初期化オペレーションのとき
301                 } else if ($cmd == M3_REQUEST_CMD_SHOW_POSITION){               // 表示位置を表示するとき
302                         // 管理者権限がある場合のみ実行可能
303                         //if ($this->gEnv->isSystemAdmin()){
304                         if ($isSystemAdmin){
305                                 // ポジションの表示画面のアクセスは、すべて管理機能URLで受け付ける
306                                 // ページIDを再設定
307 /*                              $pageId = $request->trimValueOf(M3_REQUEST_PARAM_DEF_PAGE_ID);
308                                 if (empty($pageId)) $pageId = $this->gEnv->getDefaultPageId();          // 値がないときはデフォルトのページIDを設定
309                                 $this->gEnv->setCurrentPageId($pageId);
310                                 $pageSubId = $request->trimValueOf(M3_REQUEST_PARAM_DEF_PAGE_SUB_ID);
311                                 if (!empty($pageSubId)) $this->gEnv->setCurrentPageSubId($pageSubId);
312                         */
313                                 $this->gPage->showPosition(1);                  // ポジションを表示
314                         } else {
315                                 return;
316                         }
317                 } else if ($cmd == M3_REQUEST_CMD_SHOW_POSITION_WITH_WIDGET){           // 表示位置を表示するとき(ウィジェット付き)
318                         // 管理者権限がある場合のみ実行可能
319                         //if ($this->gEnv->isSystemAdmin()){
320                         if ($isSystemAdmin){
321                                 // ポジションの表示画面のアクセスは、すべて管理機能URLで受け付ける
322                                 // ページIDを再設定
323 /*                              $pageId = $request->trimValueOf(M3_REQUEST_PARAM_DEF_PAGE_ID);
324                                 if (empty($pageId)) $pageId = $this->gEnv->getDefaultPageId();          // 値がないときはデフォルトのページIDを設定
325                                 $this->gEnv->setCurrentPageId($pageId);
326                                 $pageSubId = $request->trimValueOf(M3_REQUEST_PARAM_DEF_PAGE_SUB_ID);
327                                 if (!empty($pageSubId)) $this->gEnv->setCurrentPageSubId($pageSubId);
328                                 */
329                                 $this->gPage->showPosition(2);                  // ウィジェット付きポジションを表示
330                         } else {
331                                 return;
332                         }
333                 } else if ($cmd == M3_REQUEST_CMD_GET_WIDGET_INFO){             // ウィジェット各種情報取得(AJAX用)
334                         // ウィジェット情報取得
335                         $this->gPage->getWidgetInfoByAjax($request);
336                         return;
337                 } else if ($cmd == M3_REQUEST_CMD_SHOW_PHPINFO){        // phpinfoの表示
338                         // phpinfo画面を表示
339                         $this->_showPhpinfoPage($request);
340                         return;
341                 } else if ($cmd == M3_REQUEST_CMD_FIND_WIDGET){         // ウィジェットを検索し、前面表示
342                         // 目的のウィジェットのあるページサブIDへ遷移
343                         $this->gPage->redirectToUpdatedPageSubId($request);
344                         return;
345                 } else if ($cmd == M3_REQUEST_CMD_SHOW_WIDGET){         // ウィジェットの単体表示
346                         $createPage = false;            // ウィジェット単体処理モードに設定
347                         $this->gPage->showWidget();     // ウィジェット表示
348                 } else if ($cmd == M3_REQUEST_CMD_CONFIG_WIDGET){               // ウィジェットの設定管理
349                         $createPage = false;            // ウィジェット単体処理モードに設定
350                         $this->gPage->showWidget();     // ウィジェット表示
351                 } else if ($cmd == M3_REQUEST_CMD_DO_WIDGET){           // ウィジェット単体オペレーション
352                         $createPage = false;            // ウィジェット単体処理モードに設定
353                         
354                         // ウィンドウオープンタイプ指定のときは、テンプレートを表示する
355                         if (!empty($openBy)) $this->gPage->showWidget();        // ウィジェット表示
356                 } else if ($cmd == M3_REQUEST_CMD_RSS){         // RSS配信
357                         $createPage = false;            // ウィジェット単体処理モードに設定
358                 } else if ($cmd == M3_REQUEST_CMD_CSS){         // CSS生成
359                 
360                 } else if ($this->gEnv->isServerConnector()){           // サーバ接続の場合
361                         $createPage = false;            // ウィジェット単体処理モードに設定
362                 }
363
364                 // ################### クライアントへの出力方法の制御 ######################
365                 // ウィジェットIDの取得
366                 $widgetId = $request->trimValueOf(M3_REQUEST_PARAM_WIDGET_ID);
367                 if ($createPage){                               // 通常の画面作成の場合
368                         // 画面のキャッシュデータを取得
369                         $this->gCache->initCache($request);             // キャッシュ機能初期化
370                         $cacheData = $this->gCache->getPageCache($request);
371                         
372                         if (empty($cacheData)){         // キャッシュデータがないときは画面を作成
373                                 // カレントのテンプレートを決定
374                                 $curTemplateId = $this->_defineTemplate($request, $subTemplateId);
375
376                                 // 画面を作成
377                                 $pageData = $this->_createPage($request, $curTemplateId, $subTemplateId);
378                                 
379                                 // 使用した非共通ウィジェットの数をチェック
380                                 $nonSharedWidgetCount = $this->gPage->getNonSharedWidgetCount();
381                                 if ($nonSharedWidgetCount == -1){               // カウントなしの場合
382                                         $this->gCache->setPageCache($request, $pageData);               // キャッシュデータを設定
383                                         echo $pageData;
384                                 } else {
385                                         // ***** WordPressテンプレートの場合は非共通のウィジェットが使用されていなくても表示可とする *****
386                                         if ($this->gEnv->getCurrentTemplateType() == 100) $nonSharedWidgetCount = 1;
387                                         
388                                         if ($isSystemAdmin || $nonSharedWidgetCount > 0){
389                                                 $this->gCache->setPageCache($request, $pageData);               // キャッシュデータを設定
390                                                 echo $pageData;
391                                         } else {                // 管理者以外で、非共通のウィジェットが使用されていないページはアクセス不可とする
392                                                 $errMessage = 'ユーザに公開されていないページへのアクセス。';
393                                                 $messageDetail = 'アクセスポイント状態=公開, 要因: グローバルウィジェットのみのページへのアクセスはできません。ページには1つ以上のローカルウィジェットが必要です。';
394                                                 $this->gOpeLog->writeUserAccess(__METHOD__, '不正なアクセスを検出しました。' . $errMessage, 2202, 'アクセスをブロックしました。URL: ' . $this->gEnv->getCurrentRequestUri() . ', ' . $messageDetail);
395
396                                                 // アクセス不可ページへ遷移
397                                                 $this->gPage->redirect('?' . M3_REQUEST_PARAM_PAGE_SUB_ID . '=_accessdeny');
398                                                 // システム制御モードに変更
399                                                 //$this->gPage->setSystemHandleMode(11/*アクセス不可*/);
400
401                                                 // システム制御画面を表示
402                                                 //$this->_showSystemPage($request, 0/*アクセス不可画面*/);
403                                         }
404                                 }
405                         } else {
406                                 echo $cacheData;
407                         }
408                         
409                         if ($cmd != M3_REQUEST_CMD_CSS){                // 画面出力(CSS生成以外)のとき
410                                 // オプション出力(時間計測等)追加
411                                 echo $this->gPage->getOptionContents($request);
412                         }
413                 } else {                // ウィジェット単体実行モードのとき
414                         // ###################ウィジェット指定で出力の場合####################
415                         // ウィジェット単体を直接実行するインターフェイスで、HTTPヘッダは送信しない。
416                         // 以下のパターンで使用する。
417                         // ・Ajaxを使って、データをやり取りしたい場合
418                         // ・ウィジェット単体での実行(ウィジェットが生成したタグのみ)
419                         // ・ウィジェット単体での実行(HTMLやJavascriptの追加あり)
420                         // ・ウィジェット個別の設定(セキュリティの必要あり)
421
422                         // ################# アクセスチェック ################
423                         // ウィジェット単体オペレーションのときは、ウィジェット情報の単体実行許可があるかどうか判断(管理権限にかかわらず同じ動作)
424                         if ($cmd == M3_REQUEST_CMD_DO_WIDGET ||         // ウィジェット単体実行
425                                 $cmd == M3_REQUEST_CMD_RSS){            // RSS配信
426                                 if (empty($widgetId)){
427                                         $this->gOpeLog->writeUserAccess(__METHOD__, 'ウィジェットIDが設定されていません。', 2200,
428                                                 '実行処理はキャンセルされました。');
429                                         return;
430                                 } else if ($this->_db->getWidgetInfo($widgetId, $row)){                 // ウィジェット情報取得
431                                         if ($cmd == M3_REQUEST_CMD_DO_WIDGET && !$row['wd_enable_operation']){  // ウィジェット単体実行
432                                                 // アクセスエラーのログを残す
433                                                 $this->_db->writeWidgetLog($widgetId, 1/*単体実行*/, $cmd, self::ERR_MESSAGE_ACCESS_DENY);
434                                                 
435                                                 $this->gOpeLog->writeUserAccess(__METHOD__, 'このウィジェットは単体起動できません。(ウィジェットID: ' . $widgetId . ')', 2200,
436                                                 '実行処理はキャンセルされました。このウィジェットは単体起動できないウィジェットです。単体起動を許可するにはウィジェット情報(_widgets)の単体起動フラグ(wd_enable_operation)がtrueになっている必要があります。');
437                                                 return;
438                                         } else if ($cmd == M3_REQUEST_CMD_RSS && !$row['wd_has_rss']){                          // RSS配信
439                                                 // アクセスエラーのログを残す
440                                                 $this->_db->writeWidgetLog($widgetId, 1/*単体実行*/, $cmd, self::ERR_MESSAGE_ACCESS_DENY);
441                                                 
442                                                 $this->gOpeLog->writeUserAccess(__METHOD__, 'このウィジェットはRSS配信できません。(ウィジェットID: ' . $widgetId . ')', 2200,
443                                                 '実行処理はキャンセルされました。このウィジェットはRSS配信できないウィジェットです。RSS配信を許可するにはウィジェット情報(_widgets)のRSS配信フラグ(wd_has_rss)がtrueになっている必要があります。');
444                                                 return;
445                                         }
446                                 } else {
447                                         $this->gOpeLog->writeUserAccess(__METHOD__, 'このウィジェットは実行許可がありません。(ウィジェットID: ' . $widgetId . ')', 2200,
448                                                 '実行処理はキャンセルされました。ウィジェット情報(_widgets)が見つかりません。');
449                                         return;
450                                 }
451                         }
452                         
453                         // 管理権限がない場合は、ウィジェットのページへの配置状況からアクセス権限をチェックする
454                         if (!$isSystemManageUser && !$this->gAccess->isValidAdminKey() && !$this->_db->canAccessWidget($widgetId)){
455                                 // アクセスエラーのログを残す
456                                 $this->_db->writeWidgetLog($widgetId, 1/*単体実行*/, $cmd, self::ERR_MESSAGE_ACCESS_DENY);
457                                 
458                                 $this->gOpeLog->writeUserAccess(__METHOD__, 'ウィジェットへの不正なアクセスを検出しました。(ウィジェットID: ' . $widgetId . ')', 2200,
459                                                 '実行処理はキャンセルされました。このウィジェットは一般ユーザに公開されているページ上に存在しないため単体実行できません。');
460                                 return;
461                         }
462                         
463                         // ################# パラメータチェック ################
464                         if (!$isSystemManageUser && !$this->gAccess->isValidAdminKey() && $this->gEnv->isServerConnector()){            // サーバ接続の場合
465                                 // クエリーパラメータはウィジェットIDのみ正常とする
466                                 $params = $request->getQueryArray();
467                                 $paramCount = count($params);
468                                 if (!($paramCount == 1 && !empty($params[M3_REQUEST_PARAM_WIDGET_ID]))){
469                                         // アクセスエラーのログを残す
470                                         $this->_db->writeWidgetLog($widgetId, 1/*単体実行*/, $cmd, self::ERR_MESSAGE_ACCESS_DENY);
471                                 
472                                         $this->gOpeLog->writeUserAccess(__METHOD__, 'サーバ接続アクセスポイントへの不正なアクセスを検出しました。', 2200,
473                                                         '実行処理はキャンセルされました。URLのクエリー部が不正です。URL=' . $this->gEnv->getCurrentRequestUri());
474                                         return;
475                                 }
476                         }
477
478                         // 画面表示する場合はテンプレートを設定。画面に表示しない場合はテンプレートが必要ない。
479                         if ($this->gPage->getShowWidget()){
480                                 // 管理用テンプレートに固定
481                                 //$curTemplate = $this->_defineTemplate($request);
482                                 $curTemplate = $this->gSystem->defaultAdminTemplateId();
483
484                                 // カレントのテンプレートIDを設定
485                                 $this->gEnv->setCurrentTemplateId($curTemplate);
486                         }
487                         
488                         // ################### バッファリング開始 ######################
489                         // ob_end_flush()までの出力をバッファリングする
490                         ob_start();
491                         
492                         // サブクラスの前処理を実行
493                         if (method_exists($this, '_preBuffer')) $this->_preBuffer($request);
494                 
495                         // 作業中のウィジェットIDを設定
496                         $this->gEnv->setCurrentWidgetId($widgetId);
497                         
498                         if ($this->gEnv->isServerConnector()){          // サーバ接続の場合
499                                 // ウィジェット用のHTMLヘッダを出力
500                                 $this->gPage->startWidgetXml($cmd);
501
502                                 // 指定のウィジェットを実行
503                                 $widgetIndexFile = $this->gEnv->getWidgetsPath() . '/' . $widgetId . '/' . M3_FILENAME_INDEX;
504
505                                 if (file_exists($widgetIndexFile)){
506                                         // 実行のログを残す
507                                         $this->_db->writeWidgetLog($widgetId, 1/*単体実行*/, $cmd);
508
509                                         require_once($widgetIndexFile);
510                                 } else {
511                                         echo 'file not found: ' . $widgetIndexFile;
512                                 }
513                         
514                                 // ウィジェット用のタグを閉じる
515                                 $this->gPage->endWidgetXml($cmd);
516                         } else if ($cmd == M3_REQUEST_CMD_RSS){         // RSS配信のとき
517                                 ob_start();// バッファ作成
518                                 
519                                 // ウィジェット用のHTMLヘッダを出力
520                                 $this->gPage->startWidgetRss($cmd);
521                                 
522                                 // 指定のウィジェットを実行
523                                 $widgetIndexFile = $this->gEnv->getWidgetsPath() . '/' . $widgetId . '/' . M3_FILENAME_INDEX;
524
525                                 if (file_exists($widgetIndexFile)){
526                                         // ウィジェット定義ID、ページ定義のシリアル番号を取得
527                                         $configId = 0;          // 定義ID
528                                         $serial = 0;            // シリアル番号
529                                         if ($this->_db->getPageDefOnPageByWidgetId($this->gEnv->getCurrentPageId(), $this->gEnv->getCurrentPageSubId(), $widgetId, $row)){
530                                                 $configId = $row['pd_config_id'];               // 定義ID
531                                                 $serial = $row['pd_serial'];            // シリアル番号
532                                         }
533
534                                         // ウィジェット定義IDを設定
535                                         $this->gEnv->setCurrentWidgetConfigId($configId);
536                         
537                                         // ページ定義のシリアル番号を設定
538                                         $this->gEnv->setCurrentPageDefSerial($serial);
539                                 
540                                         // 実行のログを残す
541                                         $this->_db->writeWidgetLog($widgetId, 1/*単体実行*/, $cmd);
542
543                                         require_once($widgetIndexFile);
544                                         
545                                         // ウィジェット定義IDを解除
546                                         $this->gEnv->setCurrentWidgetConfigId('');
547                                 
548                                         // ページ定義のシリアル番号を解除
549                                         $this->gEnv->setCurrentPageDefSerial(0);
550                                 } else {
551                                         echo 'file not found: ' . $widgetIndexFile;
552                                 }
553                         
554                                 // 現在のバッファ内容を取得し、バッファを破棄
555                                 $content = ob_get_contents();
556                                 ob_end_clean();
557                                 
558                                 // ウィジェット用のタグを閉じる
559                                 $this->gPage->endWidgetRss($cmd, $content);
560                         } else {                // RSS配信以外のとき
561                                 ob_start();// バッファ作成
562                                                         
563                                 // ウィジェット用のHTMLヘッダを出力
564                                 $this->gPage->startWidget($cmd);
565                                 
566                                 // 指定のウィジェットを実行
567                                 if ($cmd == M3_REQUEST_CMD_CONFIG_WIDGET){              // ウィジェット設定のとき
568                                         $widgetIndexFile = $this->gEnv->getWidgetsPath() . '/' . $widgetId . '/admin/' . M3_FILENAME_INDEX;             // 管理用画面
569                                 } else {
570                                         $widgetIndexFile = $this->gEnv->getWidgetsPath() . '/' . $widgetId . '/' . M3_FILENAME_INDEX;
571                                 }
572                                 if (file_exists($widgetIndexFile)){
573                                         // ウィジェット定義ID、ページ定義のシリアル番号を取得
574                                         $configId = 0;          // 定義ID
575                                         $serial = 0;            // シリアル番号
576                                         if ($this->_db->getPageDefOnPageByWidgetId($this->gEnv->getCurrentPageId(), $this->gEnv->getCurrentPageSubId(), $widgetId, $row)){
577                                                 $configId = $row['pd_config_id'];               // 定義ID
578                                                 $serial = $row['pd_serial'];            // シリアル番号
579                                         }
580
581                                         // ウィジェット定義IDを設定
582                                         $this->gEnv->setCurrentWidgetConfigId($configId);
583                         
584                                         // ページ定義のシリアル番号を設定
585                                         $this->gEnv->setCurrentPageDefSerial($serial);
586                                         
587                                         // 実行のログを残す
588                                         $this->_db->writeWidgetLog($widgetId, 1/*単体実行*/, $cmd);
589
590                                         require_once($widgetIndexFile);
591                                         
592                                         // ウィジェット定義IDを解除
593                                         $this->gEnv->setCurrentWidgetConfigId('');
594                                 
595                                         // ページ定義のシリアル番号を解除
596                                         $this->gEnv->setCurrentPageDefSerial(0);
597                                 } else {
598                                         echo 'file not found: ' . $widgetIndexFile;
599                                 }
600                         
601                                 // 現在のバッファ内容を取得し、バッファを破棄
602                                 $content = ob_get_contents();
603                                 ob_end_clean();
604                                 
605                                 // ウィジェット用のタグを閉じる
606                                 $this->gPage->endWidget($cmd, $content);
607                         }
608                 
609                         // 作業中のウィジェットIDを解除
610                         $this->gEnv->setCurrentWidgetId('');
611                         
612                         // サブクラスの後処理の呼び出し
613                         if (method_exists($this, '_postBuffer')) $this->_postBuffer($request);
614                         
615                         if ($cmd == M3_REQUEST_CMD_SHOW_WIDGET ||               // ウィジェットの単体表示
616                                 $cmd == M3_REQUEST_CMD_CONFIG_WIDGET ||         // ウィジェット設定のとき
617                                 ($cmd == M3_REQUEST_CMD_DO_WIDGET && !empty($openBy))){         // ウィンドウオープンタイプ指定でウィジェット単体実行のとき
618                                 
619                                 // 現在の出力内容を取得し、一旦内容をクリア
620                                 $srcContents = ob_get_contents();
621                                 ob_clean();
622                                 
623                                 // 追加変換処理。HTMLヘッダ出力する。
624                                 $destContents = $this->gPage->lateLaunchWidget($request, $srcContents);
625                                 
626                                 echo $destContents;
627                         }
628                         
629                         // ページ作成終了処理(HTTPヘッダ出力)
630                         $this->gPage->endPage($request);
631
632                         if ($cmd != M3_REQUEST_CMD_RSS){                // 画面出力(RSS配信以外)のとき
633                                 // オプション出力(時間計測等)追加
634                                 echo $this->gPage->getOptionContents($request);
635                         }
636
637                         // バッファ内容を送信(クライアントへの送信完了)
638                         ob_end_flush();
639                 }
640                 if (!defined('M3_STATE_IN_INSTALL')){           // インストールモード以外のとき
641                         // #################### アクセスログ記録 #######################
642                         // DBが使用可能であれば、アクセスログのユーザを登録
643                         if ($this->gEnv->canUseDb()) $this->gAccess->accessLogUser();
644                 }
645
646                 // 終了ログ出力
647                 //$this->gLog->info(__METHOD__, 'フレーム作成終了');
648         }
649         /**
650          * 画面を作成
651          *
652          * @param RequestManager $request               HTTPリクエスト処理クラス
653          * @param string $curTemplate                   テンプレートID
654          * @param string $subTemplateId                 サブページID
655          * @return string                                               画面出力
656          */
657         function _createPage($request, $curTemplate, $subTemplateId = '')
658         {
659                 $defaultIndexFile = M3_FILENAME_INDEX;                  // テンプレートの起動ファイル
660                 
661                 $cmd = $request->trimValueOf(M3_REQUEST_PARAM_OPERATION_COMMAND);               // 実行コマンドを取得
662                 
663                 // カレントのテンプレートIDを設定
664                 $this->gEnv->setCurrentTemplateId($curTemplate, $subTemplateId);
665
666                 // テンプレート情報を取得
667                 $convType = 0;          // 変換処理タイプ(0=デフォルト(Joomla!v1.0)、-1=携帯用、1=Joomla!v1.5、2=Joomla!v2.5)
668                 if ($this->gEnv->getIsMobileSite()){
669                         $convType = -1;         // 携帯サイト用変換
670                 } else {
671                         // テンプレートタイプを取得(0=デフォルト(Joomla!v1.0),1=Joomla!v1.5,2=Joomla!v2.5)
672                         $convType = $this->gEnv->getCurrentTemplateType();
673                 }
674
675                 // バッファリングの準備
676                 if (method_exists($this, '_prepareBuffer')) $this->_prepareBuffer($request);
677         
678                 // ################### バッファリング開始 ######################
679                 // ob_end_flush()までの出力をバッファリングする
680                 if ($convType == -1){// 携帯用サイトの場合は出力エンコーディングを変更
681                         $mobileEncoding = $this->gEnv->getMobileEncoding();             // 携帯用エンコーディングを取得
682                         mb_http_output($mobileEncoding);
683                         ob_start("mb_output_handler"); // 出力のバッファリング開始
684                 } else {
685                         ob_start();
686                 }
687
688                 // サブクラスの前処理を実行
689                 if (method_exists($this, '_preBuffer')) $this->_preBuffer($request);
690         
691                 if ($convType == 100){          // WordPressテンプレートのとき
692                         // WordPress用ベース定義値
693                         define('WPINC', 'wp-includes');
694                         define('ABSPATH', $this->gEnv->getWordpressRootPath() . '/' );
695                         define('TEMPLATEPATH', $this->gEnv->getTemplatesPath() . '/' . $curTemplate);
696                         define('STYLESHEETPATH', $this->gEnv->getTemplatesPath() . '/' . $curTemplate);         // 子テンプレートを使用している場合は子テンプレートを示す。デフォルトはテンプレートを示す。
697                         define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
698                         define('WP_LANG_DIR', WP_CONTENT_DIR . '/languages');
699                         define('WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins');
700                         define('WP_CONTENT_URL', '/wp-content');                                // 定義自体は必要であるが使用しないのでダミー値で定義
701                         define('WP_PLUGIN_URL', WP_CONTENT_URL . '/plugins');   // 定義自体は必要であるが使用しないのでダミー値で定義
702                         
703                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/load.php');
704                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/default-constants.php');               // デフォルト値取得
705                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/plugin.php');
706
707                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/functions.php');
708                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/default-filters.php');
709                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/l10n.php');
710                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp.php');
711                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-locale.php');
712                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-user.php');
713                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-walker.php');
714                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-query.php');                          // コンテンツデータ取得
715                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-comment-query.php');
716                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-term.php');
717                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-walker-page.php');
718                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-theme.php');
719                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-widget.php');
720                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-widget-factory.php');
721                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-list-util.php');
722 //                      require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-walker-nav-menu.php');
723 //                      require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-dependency.php');
724                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/class-wp-post.php');                   // コンテンツAPIマネージャーからWP_Post型でデータを取得
725
726                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/query.php');
727                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/pluggable.php');
728                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/post.php');
729                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/user.php');
730                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/widgets.php');
731                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/comment.php');
732                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/http.php');
733                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/kses.php');
734                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/script-loader.php');
735                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/theme.php');
736                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/template.php');
737                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/link-template.php');
738                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/category.php');
739                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/category-template.php');
740                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/post-template.php');
741                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/post-thumbnail-template.php');
742                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/comment-template.php');
743                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/author-template.php');
744                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/nav-menu-template.php');
745                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/nav-menu.php');
746                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/general-template.php');
747                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/cache.php');
748                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/shortcodes.php');
749                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/formatting.php');
750                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/post-formats.php');
751                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/taxonomy.php');
752                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/media.php');
753                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/embed.php');
754 //                      require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/option.php');
755                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/pomo/translations.php');
756                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/pomo/mo.php');
757                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/capabilities.php');
758                         require_once($this->gEnv->getWordpressRootPath() . '/wp-includes/meta.php');
759                 
760                         // Magic3用インターフェイス
761                         require_once($this->gEnv->getWordpressRootPath() . '/wpInit.php');              // 初期値取得
762                         require_once($this->gEnv->getWordpressRootPath() . '/contentApi.php');  // コンテンツ取得API
763                         require_once($this->gEnv->getWordpressRootPath() . '/menuApi.php');             // メニュー情報取得API
764                         require_once($this->gEnv->getWordpressRootPath() . '/WPRender.php');            // ウィジェット描画クラス
765
766                         // ##### データ初期化 #####
767                         wp_initial_constants();                 // WordPressその他定義値設定
768                         
769                         // プラグイン初期化
770                         $GLOBALS['wp_plugin_paths'] = array();                  // $wp_plugin_pathsは未使用?
771                         foreach (wp_get_active_and_valid_plugins() as $plugin) {// プラグインロード
772                                 wp_register_plugin_realpath($plugin);
773                                 include_once($plugin);
774                         }
775                         unset($plugin);
776
777                         // WordPressメインオブジェクト作成
778                         $GLOBALS['wp_version'] = '4.7.0';                       // 下位互換性チェックで引っかかるのでv4.7.0に定める
779                         $GLOBALS['locale'] = $this->gEnv->getCurrentLanguage();         // 表示言語を設定
780                         $GLOBALS['wp_the_query'] = new WP_Query();                              // $wp_the_queryは変更不可変数で$wp_queryは変更可変数
781                         $GLOBALS['wp_query'] = $GLOBALS['wp_the_query'];
782                         $GLOBALS['wp'] = new WP();
783                         $GLOBALS['wp_widget_factory'] = new WP_Widget_Factory();
784                         $GLOBALS['gContentApi'] = new contentApi();                     // Magic3コンテンツAPIオブジェクト
785                         $GLOBALS['gMenuApi'] = new menuApi();                   // Magic3メニュー情報APIオブジェクト
786                         // テンプレートから参照可能にする
787                         global $wp_query;
788
789                         // テンプレート初期処理
790                         do_action('setup_theme');
791                         load_default_textdomain();                      // 言語リソースを読み込む
792                         m3WpInit();                                                     // 言語リソース読み込み後にMagic3用インターフェイス初期化。$GLOBALS['m3WpOptions']を初期化し、get_option()はここから使用可能にする。
793                         $GLOBALS['wp_locale'] = new WP_Locale();                // 言語リソース読み込み後に生成
794                         
795                         // functions.phpを読み込む。ファイル内で定義されている変数はグローバル変数に変換する。
796                         $this->_loadFileAsGlobal(TEMPLATEPATH . '/functions.php');
797
798                         do_action('after_setup_theme');         // wp-multibyte-patchプラグイン読み込み
799                         do_action('init');                                      // テンプレート側からの初期処理(ウィジェットのCSSの初期化等)
800                         do_action('wp_loaded');
801                         
802                         // ##### 起動PHPファイル取得。データ取得用パラメータ設定。#####
803                         // URLパラメータからコンテンツ形式を取得し、ページを選択
804                         $params = $request->getQueryArray();
805                         $paramCount = count($params);
806                         reset($params);
807                         $firstKey = key($params);
808 //                      $firstValue = $params[$firstKey];
809                         
810                         // コンテンツタイプに合わせて起動PHPファイルを決める。デフォルトはindex.phpで一覧形式で表示。
811                         $pageTypeDefined = false;               // ページタイプ確定したかどうか
812                         $contentType = $GLOBALS['gContentApi']->getContentType();
813                         switch ($contentType){
814                         case M3_VIEW_TYPE_CONTENT:              // 汎用コンテンツ
815                                 if ($firstKey == M3_REQUEST_PARAM_CONTENT_ID || $firstKey == M3_REQUEST_PARAM_CONTENT_ID_SHORT){        // コンテンツIDのとき
816                                         // ページタイプを設定
817                                         $GLOBALS['gContentApi']->setPageType('page');
818                                         
819                                         // フルパスで返るので相対パスに修正
820                                         $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, get_page_template());            // 固定ページテンプレート
821                                         
822                                         // コンテンツID設定
823                                         $firstValue = $request->trimValueOf($firstKey);
824                                         $GLOBALS['gContentApi']->setContentId($firstValue);
825                                         
826                                         $pageTypeDefined = true;                // ページタイプ確定
827                                 }
828                                 break;
829                         case M3_VIEW_TYPE_PRODUCT:      // 製品
830                                 break;
831                         case M3_VIEW_TYPE_BBS:  // BBS
832                                 break;
833                         case M3_VIEW_TYPE_BLOG: // ブログ
834 //                              if ($firstKey == M3_REQUEST_PARAM_BLOG_ID || $firstKey == M3_REQUEST_PARAM_BLOG_ID_SHORT ||                     // ブログIDのとき
835 //                                      $firstKey == M3_REQUEST_PARAM_BLOG_ENTRY_ID || $firstKey == M3_REQUEST_PARAM_BLOG_ENTRY_ID_SHORT){              // ブログ記事IDのとき
836                                 if ($firstKey == M3_REQUEST_PARAM_BLOG_ENTRY_ID || $firstKey == M3_REQUEST_PARAM_BLOG_ENTRY_ID_SHORT){          // ブログ記事IDのとき
837                                         // ページタイプを設定
838                                         $GLOBALS['gContentApi']->setPageType('single');
839                                         
840                                         // フルパスで返るので相対パスに修正
841                                         $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, get_single_template());          // 記事詳細テンプレート
842                                         
843                                         // コンテンツID設定
844                                         $firstValue = $request->trimValueOf($firstKey);
845                                         $GLOBALS['gContentApi']->setContentId($firstValue);
846                                         
847                                         $pageTypeDefined = true;                // ページタイプ確定
848                                 } else {
849                                         // カテゴリーが設定されている場合はカテゴリー画面を表示
850                                         $value = $request->trimValueOf(M3_REQUEST_PARAM_CATEGORY_ID);
851                                         if (!empty($value)){
852                                                 // ページタイプを設定
853                                                 $GLOBALS['gContentApi']->setPageType('category');                       // カテゴリー表示
854                                 
855                                                 // カテゴリー用テンプレート取得
856                                                 $template = get_category_template();
857                                                 if (empty($template)) $template = get_archive_template();               // カテゴリー用のテンプレートが取得できない場合はアーカイブ用テンプレートを取得
858                                                 
859                                                 // フルパスで返るので相対パスに修正
860                                                 $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, $template);              // カテゴリーテンプレート
861                                                 
862                                                 $pageTypeDefined = true;                // ページタイプ確定
863                                         }
864                                         if (!$pageTypeDefined){
865                                                 $year = $request->trimValueOf(M3_REQUEST_PARAM_YEAR);           // 年指定
866                                                 $month = $request->trimValueOf(M3_REQUEST_PARAM_MONTH);         // 月指定
867                                                 $day = $request->trimValueOf(M3_REQUEST_PARAM_DAY);             // 日指定
868
869                                                 if (!empty($year)){                     // 年月日指定のとき
870                                                         // ページタイプを設定
871                                                         $GLOBALS['gContentApi']->setPageType('date');                   // 年月日表示
872                                 
873                                                         // 年月日用テンプレート取得
874                                                         $template = get_date_template();
875                                                         if (empty($template)) $template = get_archive_template();               // 年月日用のテンプレートが取得できない場合はアーカイブ用テンプレートを取得
876                                                 
877                                                         // フルパスで返るので相対パスに修正
878                                                         $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, $template);
879
880                                                         $pageTypeDefined = true;                // ページタイプ確定
881                                                 }
882                                         }
883                                         // 検索条件が設定されている場合は検索画面を表示
884                                         if (!$pageTypeDefined){
885                                                 $value = $request->trimValueOf('s');
886                                                 if (!empty($value)){
887                                                         // ページタイプを設定
888                                                         $GLOBALS['gContentApi']->setPageType('search');                 // 検索結果表示
889                                         
890                                                         // フルパスで返るので相対パスに修正
891                                                         $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, get_search_template());          // 検索結果テンプレート
892                                                         
893                                                         $pageTypeDefined = true;                // ページタイプ確定
894                                                 }
895                                         }
896                                 }
897                                 break;
898                         case M3_VIEW_TYPE_WIKI: // Wiki
899                                 break;
900                         case M3_VIEW_TYPE_USER: // ユーザ作成コンテンツ
901                                 break;
902                         case M3_VIEW_TYPE_EVENT:        // イベント
903                                 break;
904                         case M3_VIEW_TYPE_PHOTO:        // フォトギャラリー
905                                 break;
906                         default:
907                                 // コンテンツタイプが設定されていないページ(お問合わせページ等)に場合は、固定ページ用のテンプレートを使用
908                                 // ページタイプを設定
909                                 $GLOBALS['gContentApi']->setPageType('page');
910                                         
911                                 // フルパスで返るので相対パスに修正
912                                 $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, get_page_template());            // 固定ページテンプレート
913                                 
914                                 $pageTypeDefined = true;                // ページタイプ確定
915                                 break;
916                         }
917                         
918                         // コンテンツタイプが設定されているページでページタイプが設定されていないページの場合はデフォルトテンプレート(index.php)の代わりにホーム用テンプレートを取得
919                         if (!empty($contentType) && !$pageTypeDefined){
920                                 // フルパスで返るので相対パスに修正
921                                 $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, get_home_template());            // ホーム用テンプレート
922                         }
923
924                         // サイトのトップページを表示する場合(コンテンツタイプが設定されていないページをデフォルトで表示する場合)は優先してフロント用テンプレートを表示
925                         if (empty($contentType)){
926                         //if (!$GLOBALS['gContentApi']->isHomeUrl()){
927 //                      if ($defaultIndexFile == M3_FILENAME_INDEX){            // テンプレートの起動ファイル
928                                 $pageSubId = $request->trimValueOf(M3_REQUEST_PARAM_PAGE_SUB_ID);
929                                 if ($this->gEnv->getCurrentPageSubId() == $this->gEnv->getDefaultPageSubId() && empty($pageSubId)){             // デフォルトページを表示し「sub」なしに限定
930                                         $frontPageTemplate = get_front_page_template();
931                                         if (!empty($frontPageTemplate)) $defaultIndexFile = $this->_getRelativeTemplateIndexPath($curTemplate, $frontPageTemplate);     // フロントページテンプレート
932                                 }
933                         }
934
935                         // WordPressオブジェクト作成
936                         wp();
937                 } else if ($convType >= 1){             // Joomla!v1.5,v2.5テンプレートのとき
938                         global $mainframe;
939                         require_once($this->gEnv->getJoomlaRootPath() . '/mosDef.php');// Joomla定義読み込み
940                         require_once($this->gEnv->getJoomlaRootPath() . '/JParameter.php');
941                         require_once($this->gEnv->getJoomlaRootPath() . '/JRender.php');
942                                                 
943                         // 設定ファイルの読み込み
944                         //$params = array();
945                         $paramFile = $this->gEnv->getTemplatesPath() . '/' . $curTemplate . '/params.ini';
946                         if (is_readable($paramFile)){
947                                 $content = file_get_contents($paramFile);
948                                 $params = new JParameter($content);
949                         } else {
950                                 $params = new JParameter();
951                         }
952                         // テンプレートヘッダ画像上のテキスト設定(Joomla!テンプレート2.5以降)
953                         $params->set('siteTitle',               $this->gEnv->getSiteName());            // サイト名
954                         $params->set('siteSlogan',              $this->gSystem->getSiteDef(M3_TB_FIELD_SITE_SLOGAN));           // サイトスローガン
955                         
956                         // Joomla!テンプレート共通の設定
957                         define('_JEXEC', 1);
958                                                 
959                         // Joomla!v1.5用の設定
960                         define('JPATH_BASE', dirname(__FILE__));
961                         define('JPATH_SITE', $this->gEnv->getSystemRootPath());
962                         define('JPATH_PLUGINS', $this->gEnv->getJoomlaRootPath() . '/class/plugins');                   // プラグインパス
963 //                      define('JPATH_THEMES', $this->gEnv->getTemplatesPath());                                                                // テンプレートパス             ## テンプレート内でエラーが発生するのでここでは定義しない(2015/10/13)
964                         define('DS', DIRECTORY_SEPARATOR);
965                         $this->language = $this->gEnv->getCurrentLanguage();
966                         $this->template = $curTemplate;
967                         //$this->baseurl  = $this->gEnv->getRootUrl();
968                         $this->baseurl          = $this->gEnv->getRootUrlByCurrentPage();
969                         $this->direction = 'ltr';
970                         $this->params   = $params;
971                         
972                         // サブテンプレート用の設定
973                         if ($this->gEnv->getCurrentTemplateGenerator() == self::TEMPLATE_GENERATOR_THEMLER){            // Themlerテンプレートの場合はサブテンプレート用のパラメータを設定
974                                 // JRequest経由でレンダー側にサブテンプレートIDを渡す
975                                 if (!empty($subTemplateId)) JRequest::injectSetVar('file_template_name', $subTemplateId);
976
977                                 // サブテンプレートIDの渡し方は以下の方法もある(Themlerテンプレート1.39以降はこちらが有効)
978                                 // サブテンプレートIDを埋め込む
979                                 if (!empty($subTemplateId)) $this->setBuffer('<!--TEMPLATE ' . $subTemplateId . ' /-->', 'component');
980                         }
981                         
982                         // 現在のJoomla!ドキュメントを設定
983                         $this->gEnv->setJoomlaDocument($this);
984                 } else {                        // デフォルト(Joomla!v1.0テンプレート)テンプレートのとき(PC用および携帯用)
985                         // Joomla!テンプレート共通の設定
986                         define('_JEXEC', 1);
987                         
988                         // Joomlaテンプレート用定義
989                         global $mosConfig_absolute_path;
990                         global $mosConfig_live_site;
991                         global $mosConfig_sitename;
992                         global $mosConfig_favicon;
993                         global $mosConfig_sef;
994                         global $cur_template;
995                         global $mainframe;
996                         require_once($this->gEnv->getJoomlaRootPath() . '/mosDef.php');// Joomla定義読み込み
997                         require_once($this->gEnv->getJoomlaRootPath() . '/mosFunc.php');
998                         require_once($this->gEnv->getJoomlaRootPath() . '/includes/sef.php');
999                 }
1000
1001                 // ################### テンプレート読み込み ###################
1002                 // テンプレートのポジションタグからウィジェットが実行される
1003                 //$templateIndexFile = $this->gEnv->getTemplatesPath() . '/' . $curTemplate . '/' . M3_FILENAME_INDEX;
1004                 $templateIndexFile = $this->gEnv->getTemplatesPath() . '/' . $curTemplate . '/' . $defaultIndexFile;
1005                 if (file_exists($templateIndexFile)){
1006                         require_once($templateIndexFile);
1007                 } else {                // テンプレートが存在しないとき
1008                         if ($this->gEnv->isSystemManageUser()){         // システム管理ユーザのとき
1009                                 echo 'template not found error: ' . $curTemplate . ', path=' . $templateIndexFile;
1010                         } else {
1011                                 // 一般向けにはメンテナンス画面を表示
1012                                 $this->gPage->setSystemHandleMode(10/*サイト非公開中*/);
1013                                 $this->_showSystemPage($request, 2/*サイト非公開画面*/);// システム制御画面を表示
1014                                                 
1015                                 // 運用ログに記録(一度だけ出力したい)
1016                                 //$this->gOpeLog->writeFatal(__METHOD__, 'テンプレートが存在しません。メンテナンス画面を表示します。(テンプレートID=' . $curTemplate . ')', 1100);
1017                                 return;
1018                         }
1019                 }
1020
1021                 // サブクラスの後処理の呼び出し
1022                 if (method_exists($this, '_postBuffer')) $this->_postBuffer($request);
1023
1024                 // ##### WordPressテンプレートの場合は終了イベントを実行。WordPressのエラーメッセージは画面に出力させる。 #####
1025                 if ($convType == 100){          // WordPressテンプレートのとき
1026                         do_action('shutdown');
1027                 }
1028                 
1029                 // 現在の出力内容を取得し、一旦内容をクリア
1030                 $srcContents = ob_get_contents();
1031                 ob_clean();
1032
1033                 // Joomla!タグの変換処理(ウィジェット実行)
1034                 if ($convType >= 1 && $convType < 100){         // Joomla!v1.5,v2.5テンプレートのとき
1035                         $srcContents = $this->gPage->launchWidgetByJoomlaTag($srcContents, $convType);
1036                 }
1037         
1038                 // 遅延実行ウィジェットの出力を埋め込む。HTMLヘッダ出力する。
1039                 $destContents = $this->gPage->lateLaunchWidget($request, $srcContents);
1040
1041                 // 携帯インターフェイスのときのときは、手動変換後、バイナリコード(絵文字等)を埋め込む
1042                 if ($convType == -1){                   // 携帯アクセスポイントの場合
1043                         // 出力するコードに変換
1044                         $destContents = mb_convert_encoding($destContents, $mobileEncoding, M3_ENCODING);
1045         
1046                         // コンテンツ変換メソッドがある場合は実行
1047                         if (method_exists($this, '_convContents')){
1048                                 $destContents = $this->_convContents($destContents);// 絵文字埋め込み処理等
1049                         }
1050                 }
1051                 
1052                 // ##### CSS生成の場合は、すべてのウィジェット実行後出力を削除する #####
1053                 if ($cmd == M3_REQUEST_CMD_CSS) $destContents = '';             // CSS生成のとき
1054
1055                 // ページ作成終了処理(HTTPヘッダ出力)
1056                 $destContents .= $this->gPage->endPage($request, true/*出力を取得*/);              // 最終HTMLを追加
1057                 if ($this->gPage->isRedirect()) return '';// リダイレクトの場合ob_end_clean()を実行すると、ログインできないことがあるのでここで終了(2011/11/11)
1058                 
1059                 // バッファを破棄
1060                 //ob_end_flush();
1061                 ob_end_clean();
1062                 
1063                 // 送信データを返す
1064                 return $destContents;
1065         }
1066         /**
1067          * テンプレートを決定
1068          *
1069          * @param RequestManager $request       HTTPリクエスト処理クラス
1070          * @param string $subTemplateId         テンプレートIDが取得できるときはサブページIDが返る
1071          * @return string                                       テンプレート名
1072          */
1073         function _defineTemplate($request, &$subTemplateId)
1074         {
1075                 // ########### テンプレートID(ディレクトリ名)を設定 ############
1076                 // テンプレートIDの指定の方法は2パターン
1077                 //  1.サブクラスで固定に指定
1078                 //  2.コンテンツからの指定
1079                 //  3.セッションに保持
1080                 // テンプレートIDの優先順位
1081                 //  1.サブクラスの_setTemplate()で固定設定にしている場合の固定値
1082                 //  2.セッションに持っている値
1083                 //  3.DBのデフォルト値
1084                 $curTemplate = '';
1085                 $subTemplateId = '';
1086                 $isSystemManageUser = $this->gEnv->isSystemManageUser();                // システム運用可能かどうか
1087                 $useSubClassDefine = true;                      // サブクラスでの定義を使用するかどうか
1088                 
1089                 // テンプレート変更のときは、セッションのテンプレートIDを変更
1090                 $cmd = $request->trimValueOf(M3_REQUEST_PARAM_OPERATION_COMMAND);               // 実行コマンドを取得
1091                 if ($cmd == M3_REQUEST_CMD_CHANGE_TEMPLATE){
1092                         // テンプレートIDをセッションに残す場合
1093                         if ($this->gSystem->useTemplateIdInSession()){          // セッションに保存する場合
1094                                 $request->setSessionValue(M3_SESSION_CURRENT_TEMPLATE, $request->trimValueOf(M3_SYSTEM_TAG_CHANGE_TEMPLATE));
1095                         }
1096                 }
1097
1098                 // サブクラスでテンプレートIDを指定している場合はそちらを使用
1099                 $templateDefined = false;               // テンプレート固定かどうか
1100                 if ($useSubClassDefine){
1101                         $tmplStr = trim($this->_setTemplate($request));
1102                         if (strlen($tmplStr) > 0){
1103                                 $curTemplate = $tmplStr;
1104                                 $templateDefined = true;                // テンプレート固定かどうか
1105                         }
1106                 }
1107
1108                 // セッションにあるときは、セッションの値を使用(携帯でないとき)
1109                 $pageId = $request->trimValueOf(M3_REQUEST_PARAM_DEF_PAGE_ID);
1110                 if (empty($curTemplate)){
1111                         if ($cmd == M3_REQUEST_CMD_SHOW_POSITION ||                             // 表示位置を表示するとき
1112                                 $cmd == M3_REQUEST_CMD_SHOW_POSITION_WITH_WIDGET){      // 表示位置を表示するとき(ウィジェット付き)
1113                                 // URLの引数として、ページIDとページサブIDが指定されてくる
1114                                 // URLの引数のテンプレートを優先し、引数で指定されていなければ、ページ用個別のテンプレートを取得する
1115                                 
1116                                 // URLの引数でテンプレートIDが指定されている場合は設定
1117                                 $templateId = $request->trimValueOf(M3_REQUEST_PARAM_TEMPLATE_ID);              // テンプレートIDを取得
1118                                 if (!empty($templateId)) $curTemplate = $templateId;
1119                                         
1120                                 // ページ用個別に設定されたテンプレートがある場合は取得
1121                                 if (empty($curTemplate)){
1122                                         $pageSubId = $request->trimValueOf(M3_REQUEST_PARAM_DEF_PAGE_SUB_ID);
1123                                         $line = $this->gPage->getPageInfo($pageId, $pageSubId);
1124                                         if (!empty($line)){
1125                                                 $pageTemplateId = $line['pn_template_id'];
1126                                                 $subTemplateId = $line['pn_sub_template_id'];           // サブテンプレートID
1127                                         }
1128                                         if (!empty($pageTemplateId)) $curTemplate = $pageTemplateId;
1129                                 }
1130                                 
1131                                 // 取得できなければデフォルトを取得
1132                                 if (empty($curTemplate)){
1133                                         if ($pageId == $this->gEnv->getDefaultPageId()){                // 通常サイトのとき
1134                                                 $curTemplate = $this->gSystem->defaultTemplateId();
1135                                                 $subTemplateId = $this->gSystem->defaultSubTemplateId();
1136                                         } else if ($pageId == $this->gEnv->getDefaultMobilePageId()){           // 携帯サイトのとき
1137                                                 $curTemplate = $this->gSystem->defaultMobileTemplateId();               // 携帯用デフォルトテンプレート
1138                                         } else if ($pageId == $this->gEnv->getDefaultSmartphonePageId()){               // スマートフォン用サイトのとき
1139                                                 $curTemplate = $this->gSystem->defaultSmartphoneTemplateId();           // スマートフォン用デフォルトテンプレート
1140                                         } else if ($pageId == $this->gEnv->getDefaultAdminPageId() ||           // 管理サイトのとき
1141                                                                 $pageId == $this->gEnv->getDefaultRegistPageId()){              // 登録サイトのとき
1142                                                 $curTemplate = $this->gSystem->defaultAdminTemplateId();
1143                                         } else if (empty($pageId)){                     // ページIDが指定されていないときは、ウィジェットを表示しないテンプレートのみの表示
1144                                                 // URLの引数でテンプレートIDが指定されている場合は設定
1145         //                                      $templateId = $request->trimValueOf(M3_REQUEST_PARAM_TEMPLATE_ID);              // テンプレートIDを取得
1146         //                                      if (!empty($templateId)) $curTemplate = $templateId;
1147                                         }
1148                                 }
1149                         } else {
1150                                 // ページ用のテンプレートがあるときは優先
1151                                 $pageTemplateId = $this->gPage->getTemplateIdFromCurrentPageInfo($subTemplateId);
1152                                 if (!empty($pageTemplateId)) $curTemplate = $pageTemplateId;
1153
1154                                 // テンプレートIDをセッションから取得
1155                                 if (empty($curTemplate) && !$isSystemManageUser){                       // システム運用者はセッション値を使用できない
1156                                         if ($this->gSystem->useTemplateIdInSession()){          // セッションに保存する場合
1157                                                 if (!$this->gEnv->getIsMobileSite() && !$this->gEnv->getIsSmartphoneSite()){
1158                                                         $curTemplate = $request->getSessionValue(M3_SESSION_CURRENT_TEMPLATE);// 携帯サイト、スマートフォンサイトでないときはセッション値を取得
1159                                                 }
1160                                         }
1161                                 }
1162                                 
1163                                 // オプションのテンプレートがある場合はオプションを優先
1164                                 $optionTemplate = $this->gPage->getOptionTemplateId();
1165                                 if (!empty($optionTemplate)){
1166                                         $curTemplate = $optionTemplate;
1167                                         $templateDefined = true;                // テンプレート固定かどうか
1168                                 }
1169                                 
1170                                 // セッションにないときはデフォルトを取得
1171                                 if (empty($curTemplate)){
1172                                         if ($this->gEnv->getIsMobileSite()){// 携帯用サイトの場合
1173                                                 $curTemplate = $this->gSystem->defaultMobileTemplateId();               // 携帯用デフォルトテンプレート
1174                                         } else if ($this->gEnv->getIsSmartphoneSite()){// スマートフォン用サイトの場合
1175                                                 $curTemplate = $this->gSystem->defaultSmartphoneTemplateId();           // スマートフォン用デフォルトテンプレート
1176                                         } else {
1177                                                 $curTemplate = $this->gSystem->defaultTemplateId();
1178                                                 $subTemplateId = $this->gSystem->defaultSubTemplateId();
1179                                         }
1180                                 }
1181                         }
1182                 }
1183
1184                 if (empty($curTemplate)){
1185                         // テンプレートが1つもみつからないときは、管理用テンプレートを使用
1186                         $curTemplate = $this->gSystem->defaultAdminTemplateId();
1187                         echo 'template not found. viewing by administration template. [' . $curTemplate . ']';
1188                 } else {        // セッションにテンプレートIDを保存
1189                         // テンプレートIDをセッションに残す場合
1190 /*                      if ($this->gSystem->useTemplateIdInSession()){          // セッションに保存する場合
1191                                 if ($cmd == M3_REQUEST_CMD_SHOW_POSITION ||                             // 表示位置を表示するとき
1192                                         $cmd == M3_REQUEST_CMD_SHOW_POSITION_WITH_WIDGET){      // 表示位置を表示するとき(ウィジェット付き)
1193                                 } else {
1194                                         if (!$this->gEnv->getIsMobileSite() && !$this->gEnv->getIsSmartphoneSite() && !$templateDefined){               // PC用画面でサブクラス固定でないとき場合は保存
1195                                                 $request->setSessionValue(M3_SESSION_CURRENT_TEMPLATE, $curTemplate);
1196                                         }
1197                                 }
1198                         }*/
1199                 }
1200                 return $curTemplate;
1201         }
1202         /**
1203          * サイト公開制御
1204          *
1205          * @param RequestManager $request               HTTPリクエスト処理クラス
1206          * @return bool                                                 サイトにアクセスできるかどうか
1207          */
1208         function _accessSite($request)
1209         {
1210                 // サイトの公開状況を取得
1211                 $isOpen = $this->gSystem->siteInPublic();
1212                 if ($isOpen){
1213                         // PC用サイト、携帯用サイト、スマートフォン用サイトの公開状況をチェック
1214                         if ($this->gEnv->getIsPcSite()){
1215                                 if ($this->gSystem->sitePcInPublic()) return true;
1216                         } else if ($this->gEnv->getIsMobileSite()){
1217                                 if ($this->gSystem->siteMobileInPublic()) return true;
1218                         } else if ($this->gEnv->getIsSmartphoneSite()){
1219                                 if ($this->gSystem->siteSmartphoneInPublic()) return true;
1220                         }
1221                         return false;
1222                 } else {
1223                         // 例外とするIPアドレスをチェック
1224                         $ip = $this->gSystem->getSystemConfig(self::SITE_ACCESS_EXCEPTION_IP);
1225                         if (!empty($ip) && $ip = $request->trimServerValueOf('REMOTE_ADDR')){
1226                                 return true;
1227                         } else {
1228                                 return false;
1229                         }
1230                 }
1231         }
1232         /**
1233          * システム制御画面表示
1234          *
1235          * @param RequestManager $request               HTTPリクエスト処理クラス
1236          * @param int $type                                             画面タイプ(0=アクセス不可、1=ログイン画面、2=サイト非公開画面)
1237          * @return なし
1238          */
1239         function _showSystemPage($request, $type)
1240         {
1241                 // ページIDを設定
1242                 $pageId = 'admin_index';                // 管理画面を表示
1243                 $this->gEnv->setCurrentPageId($pageId);                                                         // ここでデフォルトページサブIDが再設定される
1244                 $this->gEnv->setCurrentPageSubId($this->gEnv->getDefaultPageSubId());// デフォルトページサブIDをカレントにする
1245                 
1246                 // テンプレートの設定
1247                 // DBで設定されている値を取得し、なければ管理用デフォルトテンプレートを使用
1248                 if ($this->gEnv->getIsMobileSite()){            // 携帯用サイトのアクセスの場合
1249                         $curTemplateId = self::M_ADMIN_TEMPLATE;        // 携帯管理画面用テンプレート
1250                 } else {                        // 携帯以外のサイトへのアクセスの場合
1251                         if ($type == 1){                        // ログインはデフォルトの管理画面テンプレートに固定
1252                                 $curTemplateId = $this->gSystem->defaultAdminTemplateId();
1253                         } else {
1254                                 $curTemplateId = $this->gSystem->getSystemConfig(self::CONFIG_KEY_MSG_TEMPLATE);
1255                                 if (empty($curTemplateId)){
1256                                         $curTemplateId = self::SYSTEM_TEMPLATE;// システム画面用テンプレート
1257                                 } else {
1258                                         // テンプレートの存在チェック
1259                                         $templateIndexFile = $this->gEnv->getTemplatesPath() . '/' . $curTemplateId . '/' . M3_FILENAME_INDEX;
1260                                         if (!file_exists($templateIndexFile)) $curTemplateId = self::SYSTEM_TEMPLATE;// システム画面用テンプレート
1261                                 }
1262                         }
1263                 }
1264
1265                 // 画面を作成
1266                 $pageData = $this->_createPage($request, $curTemplateId);
1267                 echo $pageData;
1268         }
1269         /**
1270          * phpinfo画面表示
1271          *
1272          * @param RequestManager $request               HTTPリクエスト処理クラス
1273          * @return なし
1274          */
1275         function _showPhpinfoPage($request)
1276         {
1277                 // ################### バッファリング開始 ######################
1278                 // ob_end_flush()までの出力をバッファリングする
1279                 ob_start();
1280                 
1281                 phpinfo();
1282                 
1283                 // バッファ内容を送信(クライアントへの送信完了)
1284                 ob_end_flush();
1285         }
1286         /**
1287          * 以下、Joomla!v1.5テンプレート専用
1288          */
1289         /**
1290          * ウィジェット数を取得
1291          *
1292          * @param string $pos           ポジション
1293          * @return int                          ウィジェット数
1294          */
1295         function countModules($pos)
1296         {
1297                 $count = $this->gPage->getWidgetsCount($pos);
1298                 return $count;
1299         }
1300         function getBuffer($type = null, $name = null, $attribs = array())
1301         {
1302                 if (isset($this->joomlaBufArray[$type])){
1303                         return $this->joomlaBufArray[$type];
1304                 } else {
1305                         return '';
1306                 }
1307         }
1308         function setBuffer($contents, $type, $name = null)
1309         {
1310                 $this->joomlaBufArray[$type] = $contents;
1311                 return;
1312         }
1313         /**
1314          * 出力タイプ取得
1315          *
1316          * @return string                               出力タイプ
1317          */
1318         function getType()
1319         {
1320                 return 'html';
1321         }
1322         /**
1323          * HTMLヘッダ情報取得
1324          *
1325          * @return array                                ヘッダ情報
1326          */
1327         function getHeadData()
1328         {
1329                 $data = array();
1330                 /*$data['title']                = $this->title;
1331                 $data['description']= $this->description;
1332                 $data['link']           = $this->link;
1333                 $data['metaTags']       = $this->_metaTags;
1334                 $data['links']          = $this->_links;
1335                 $data['styleSheets']= $this->_styleSheets;
1336                 $data['style']          = $this->_style;
1337                 $data['scripts']        = $this->_scripts;
1338                 $data['script']         = $this->_script;
1339                 $data['custom']         = $this->_custom;*/
1340                 return $data;
1341         }
1342         /**
1343          * BASEタグ設定用
1344          *
1345          * @return string                               ベースパス
1346          */
1347         function getBase()
1348         {
1349                 return '';
1350         }
1351          /**
1352          * Adds a linked script to the page
1353          *
1354          * @param       string  $url            URL to the linked script
1355          * @param       string  $type           Type of script. Defaults to 'text/javascript'
1356          * @access   public
1357          */
1358         function addScript($url, $type="text/javascript") {
1359                 $this->_scripts[$url] = $type;
1360         }
1361         /**
1362          * Adds a script to the page
1363          *
1364          * @access   public
1365          * @param       string  $content   Script
1366          * @param       string  $type   Scripting mime (defaults to 'text/javascript')
1367          * @return   void
1368          */
1369         function addScriptDeclaration($content, $type = 'text/javascript')
1370         {
1371                 if (!isset($this->_script[strtolower($type)])) {
1372                         $this->_script[strtolower($type)] = $content;
1373                 } else {
1374                         $this->_script[strtolower($type)] .= chr(13).$content;
1375                 }
1376         }
1377         /**
1378          * WordPressテンプレートの起動ファイルパスを相対パスに変換
1379          *
1380          * @param string $templateId    テンプレートID
1381          * @param string $path                  テンプレートの起動ファイル絶対パス
1382          * @return string                               テンプレート内での相対パス。エラー発生の場合はデフォルト(index.php)を返す。
1383          */
1384         function _getRelativeTemplateIndexPath($templateId, $path)
1385         {
1386                 $savedPath = $path;
1387                 $templatePath = $this->gEnv->getTemplatesPath() . '/' . $templateId . '/';
1388                 
1389                 // テンプレートまでのパスを削除
1390                 $path = str_replace($templatePath, '', $path);
1391                 if ($path == $savedPath) $path = M3_FILENAME_INDEX;
1392                 return $path;
1393         }
1394         /**
1395          * 旧システムディレクトリが存在するかどうかを取得
1396          *
1397          * @return bool                         true=存在する、false=存在しない
1398          */
1399         function _isExistsOldSystemDir()
1400         {
1401                 // 旧システムディレクトリは同ディレクト階層に存在し、ディレクトリ名の先頭に「_」が付加されているディレクトリ
1402                 $currentDir = $this->gEnv->getSystemRootPath();
1403                 $parentDir = dirname($currentDir);
1404                 $dirName = basename($currentDir);
1405                 
1406                 // ##### open_basedir等のアクセス制限が掛かっていてディレクトリが見えない場合はis_dir()はfalseを返す #####
1407                 // 親ディレクトリへのアクセス権をチェック
1408                 if (@is_dir($parentDir)){
1409                         if (@is_dir($parentDir . '/_' . $dirName)){
1410                                 return true;
1411                         } else {
1412                                 return false;
1413                         }
1414                 } else {                // 親ディレクトリへのアクセス権がない場合は旧システムが存在すると判断する
1415                         return true;
1416                 }
1417         }
1418         /**
1419          * PHPファイルを読み込み、定義値をグローバル値に変換する
1420          *
1421          * @param string $path          ファイルパス
1422          * @return bool                         true=ファイル読み込み完了、false=ファイル読み込み失敗
1423          */
1424         function _loadFileAsGlobal($path)
1425         {
1426                 if (file_exists($path)){
1427                         include($path);
1428                         
1429                         // グローバル変数に変換
1430                         $vars = get_defined_vars();
1431                         foreach($vars as $varName => $varValue) $GLOBALS[$varName] = $varValue;
1432                         
1433                         return true;
1434                 } else {
1435                         return false;
1436                 }
1437         }
1438 }
1439 ?>