Created
June 16, 2021 04:58
-
-
Save atsu666/16d327e9de6c5e60bb9976f64ae454d1 to your computer and use it in GitHub Desktop.
php/Services/Common/Helper.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Acms\Services\Common; | |
| use DB; | |
| use SQL; | |
| use Tpl; | |
| use Storage; | |
| use Image; | |
| use Field; | |
| use Field_Search; | |
| use Field_Validation; | |
| use Template; | |
| use ACMS_Http; | |
| use ACMS_Corrector; | |
| use ACMS_POST_Image; | |
| use ACMS_RAM; | |
| use ACMS_Hook; | |
| use ACMS_Session; | |
| use Acms\Services\Facades\RichEditor; | |
| use \phpseclib\Crypt\AES; | |
| use \phpseclib\Crypt\Random; | |
| class Helper | |
| { | |
| /** | |
| * @var \Field | |
| */ | |
| protected $Post; | |
| /** | |
| * @var \Field | |
| */ | |
| protected $Get; | |
| /** | |
| * @var \Field | |
| */ | |
| protected $Q; | |
| /** | |
| * extract()後の削除フィールドを一時保存 | |
| * | |
| * @var \Field | |
| */ | |
| protected $deleteField; | |
| /** | |
| * Constructor | |
| */ | |
| public function __construct() | |
| { | |
| $app = \App::getInstance(); | |
| $this->Q =& $app->getQueryParameter(); | |
| $this->Get =& $app->getGetParameter(); | |
| $this->Post =& $app->getPostParameter(); | |
| } | |
| /** | |
| * @param string $path キャッシュファイルのパス | |
| * @param string $txt テキストデータ | |
| * @param int $expire 秒指定 | |
| * | |
| * @return string|boolean | |
| */ | |
| public function cacheTextData($path, $txt = '', $expire = 120) | |
| { | |
| try { | |
| if (Storage::exists($path)) { | |
| if (Storage::lastModified($path) + $expire > REQUEST_TIME) { | |
| return Storage::get($path); | |
| } | |
| Storage::remove($path); | |
| } | |
| if (empty($txt)) { | |
| return false; | |
| } | |
| Storage::makeDirectory(dirname($path)); | |
| Storage::put($path, $txt); | |
| } catch (\Exception $e) {} | |
| return $txt; | |
| } | |
| /** | |
| * @param $className | |
| * @param $identifier | |
| * @return string | |
| */ | |
| public function getModuleCacheBasePath($className, $identifier) { | |
| $path = CACHE_DIR . 'module/' . $className . '/'; | |
| if ($identifier) { | |
| return $path . $identifier . '/'; | |
| } | |
| return $path; | |
| } | |
| /** | |
| * @param $module | |
| * @return string | |
| */ | |
| public function getModuleCacheRule($module) { | |
| $rule = md5($module->tpl) . '-' . RID; | |
| $target = array('mid', 'bid', 'uid', 'cid', 'eid', 'keyword', 'start', 'end', 'page', 'order'); | |
| foreach ($target as $key) { | |
| if ($val = $module->{$key}) { | |
| $rule .= '-' . $val; | |
| } | |
| } | |
| if ($module->tags) { | |
| $rule .= '-' . implode('_', $module->tags); | |
| } | |
| if (!$module->Field->isNull()) { | |
| $rule .= '-' . acmsSerialize($module->Field); | |
| } | |
| if (SUID) { | |
| $rule .= ACMS_RAM::userAuth(SUID); | |
| } | |
| return $rule; | |
| } | |
| /** | |
| * @return int | |
| */ | |
| public function getEncryptIv() | |
| { | |
| $cipher = new AES(); | |
| $cipher->setKey(PASSWORD_SALT_1); | |
| return Random::string(($cipher->getBlockLength() >> 3)); | |
| } | |
| /** | |
| * @param string $string | |
| * @param string $iv | |
| * @return string | |
| */ | |
| public function encrypt($string, $iv) | |
| { | |
| $cipher = new AES(); | |
| $cipher->setKey(PASSWORD_SALT_1); | |
| $cipher->setIV($iv); | |
| return base64_encode($cipher->encrypt($string)); | |
| } | |
| /** | |
| * @param string $cipherText | |
| * @param string $iv | |
| * @return string | |
| */ | |
| public function decrypt($cipherText, $iv) | |
| { | |
| $cipher = new AES(); | |
| $cipher->setKey(PASSWORD_SALT_1); | |
| $cipher->setIV($iv); | |
| return $cipher->decrypt(base64_decode($cipherText)); | |
| } | |
| /** | |
| * すぐにリダイレクトし、同一プロセスのバックグラウンドで処理を実行 | |
| * | |
| * @param string $url | |
| */ | |
| public function backgroundRedirect($url) | |
| { | |
| ignore_user_abort(true); | |
| set_time_limit(0); | |
| session_write_close(); // セッションロックを解除する | |
| $out = ''; | |
| while( ob_get_level() ) { ob_end_clean(); } | |
| for ($i = 0; $i < 99999; $i++) $out .= ' '; | |
| header("HTTP/1.1 301"); | |
| header("Content-Length: " . strlen($out)); | |
| header("Connection: close"); | |
| header("Location: " . $url); | |
| if (ob_get_level() === 0) ob_start(); | |
| echo $out; | |
| sleep(2); | |
| ob_flush(); | |
| flush(); | |
| ob_end_flush(); | |
| } | |
| /** | |
| * セキュリティヘッダー | |
| */ | |
| public function addSecurityHeader() | |
| { | |
| // クリックジャッキング対策 | |
| if ( config('x_frame_options') !== 'off' ) { | |
| if ( config('x_frame_options') === 'DENY' ) { | |
| header('X-FRAME-OPTIONS: DENY'); | |
| } else { | |
| header('X-FRAME-OPTIONS: SAMEORIGIN'); | |
| } | |
| } | |
| // X-XSS-Protection | |
| if ( config('x_xss_protection') !== 'off' ) { | |
| header('X-XSS-Protection: 1; mode=block'); | |
| } | |
| // X-Content-Type-Options | |
| if ( config('x_content_type_options') !== 'off' ) { | |
| header('X-Content-Type-Options: nosniff'); | |
| } | |
| // Strict-Transport-Security(HSTS) | |
| if ( SSL_ENABLE && FULLTIME_SSL_ENABLE && config('strict_transport_security') !== 'off' ) { | |
| header('Strict-Transport-Security: ' . config('strict_transport_security', 'max-age=86400; includeSubDomains')); | |
| } | |
| // Content-Security-Policy | |
| $csp = config('content_security_policy'); | |
| if ( !empty($csp) && $csp !== 'off' ) { | |
| header('Content-Security-Policy: ' . $csp); | |
| } | |
| } | |
| /** | |
| * CSRFトークンをFromに付与 | |
| * | |
| * @param string $tpl | |
| * @return string | |
| */ | |
| public function addCsrfToken($tpl) | |
| { | |
| $tpl = preg_replace('@(<input\s+type="hidden"\s+name="formUniqueToken"\s+value="[^"]+">)@i', '', $tpl); | |
| $tpl = preg_replace('@(<input\s+type="hidden"\s+name="formToken"\s+value="[^"]+">)@i', '', $tpl); | |
| // ログアウト時 && POSTリクエストではない && ログインページでない && フォームじゃない && コメントフォームじゃない 時 は session start しない(Set-Cookie しない)CDNなどのキャッシュのため | |
| if (1 | |
| && !ACMS_SID | |
| && !ACMS_POST | |
| && !LOGIN | |
| && !defined('IS_LOGIN_PAGE') | |
| && strpos($tpl,'ACMS_POST_Form_') === false | |
| && strpos($tpl,'ACMS_POST_Comment_') === false | |
| && strpos($tpl,'check-csrf-token') === false | |
| && 'secret' !== ACMS_RAM::blogStatus(BID) | |
| && !(defined('IS_OTHER_LOGIN') && IS_OTHER_LOGIN) | |
| ) { | |
| $token = uniqueString(); | |
| } else { | |
| $Session = ACMS_Session::singleton(); | |
| $token = $Session->get('formToken'); | |
| if (empty($token)) { | |
| $token = uniqueString(); | |
| $Session->set('formToken', $token); | |
| $Session->save(); | |
| } | |
| } | |
| // form unique token の埋め込み | |
| $tpl = preg_replace('@(?=<\s*/\s*form[^\w]*>)@i', '<input type="hidden" name="formUniqueToken" value="' . uniqueString() . '">' . "\n", $tpl); | |
| // form に token の埋め込み | |
| $tpl = preg_replace('@(?=<\s*/\s*form[^\w]*>)@i', '<input type="hidden" name="formToken" value="' . $token . '">' . "\n", $tpl); | |
| // meta に token の埋め込み | |
| $tpl = preg_replace('@(?=<\s*/\s*head[^\w]*>)@i', '<meta name="csrf-token" content="' . $token . '">', $tpl); | |
| return $tpl; | |
| } | |
| /** | |
| * extract()後の削除フィールドを取得 | |
| * | |
| * @return \Field | |
| */ | |
| public function getDeleteField() | |
| { | |
| return $this->deleteField; | |
| } | |
| /** | |
| * メールテンプレートの解決 | |
| * | |
| * @param string $path | |
| * @param Field $field | |
| * @param string $charset | |
| * | |
| * @return string | |
| */ | |
| public function getMailTxt($path, $field=null, $charset=null) | |
| { | |
| try { | |
| $tpl = Storage::get($path); | |
| $charset = detectEncode($tpl); | |
| $tpl = mb_convert_encoding($tpl, 'UTF-8', $charset); | |
| return $this->getMailTxtFromTxt($tpl, $field); | |
| } catch ( \Exception $e ) { | |
| return ''; | |
| } | |
| } | |
| /** | |
| * @param string $txt | |
| * @param Field $field | |
| * @return string | |
| */ | |
| public function getMailTxtFromTxt($txt, $field) | |
| { | |
| try { | |
| global $extend_section_stack; | |
| $extend_section_stack = array(); | |
| $txt = buildVarBlocks($txt, true); | |
| $txt = spreadTemplate(setGlobalVars($txt)); | |
| $tpl = build($txt, Field_Validation::singleton('post'), true); | |
| $Tpl = new Template($tpl, new ACMS_Corrector()); | |
| $vars = Tpl::buildField($field, $Tpl); | |
| $Tpl->add(null, $vars); | |
| return buildVarBlocks(buildIF($Tpl->get())); | |
| } catch (\Exception $e) { | |
| return ''; | |
| } | |
| } | |
| /** | |
| * メール設定の取得 | |
| * | |
| * @param array $argConfig | |
| * | |
| * @return array | |
| */ | |
| public function mailConfig ( $argConfig=array() ) | |
| { | |
| $config = array(); | |
| foreach ( array( | |
| 'mail_smtp-host' => 'smtp-host', | |
| 'mail_smtp-port' => 'smtp-port', | |
| 'mail_smtp-user' => 'smtp-user', | |
| 'mail_smtp-pass' => 'smtp-pass', | |
| 'mail_smtp-auth_method' => 'smtp-auth_method', | |
| 'mail_smtp-timeout' => 'smtp-timeout', | |
| 'mail_localhost' => 'localhost', | |
| 'mail_from' => 'mail_from', | |
| 'mail_sendmail_path' => 'sendmail_path', | |
| 'mail_sendmail_params' => 'sendmail_params', | |
| ) as $cmsConfigKey => $mailConfigKey ) { | |
| $config[$mailConfigKey] = config($cmsConfigKey, ''); | |
| } | |
| $config['additional_headers'] = 'X-Mailer: ' | |
| .(LICENSE_OPTION_OEM ? LICENSE_OPTION_OEM : 'a-blog cms'); | |
| $config['sendmail_path'] = ini_get('sendmail_path'); | |
| if ( config('mail_additional_headers') ) { | |
| $config['additional_headers'] .= "\x0D\x0A".config('mail_additional_headers'); | |
| } | |
| return $argConfig + $config; | |
| } | |
| /** | |
| * パスワードジェネレータ | |
| * | |
| * @param int $len パスワードの長さ | |
| * | |
| * @return string | |
| */ | |
| public function genPass($len) | |
| { | |
| $pass = ''; | |
| for ( $i=0; $i<$len; $i++ ) { | |
| switch ( rand(0, 5) ) { | |
| case 0: // 0-9 | |
| if ( !$i ) { | |
| $pass .= chr(rand(48, 57)); | |
| break; | |
| } | |
| case 1: // A-Z | |
| case 2: | |
| $pass .= chr(rand(65, 90)); | |
| break; | |
| default: // a-z | |
| $pass .= chr(rand(97, 122)); | |
| } | |
| } | |
| return $pass; | |
| } | |
| /** | |
| * タグの配列化 | |
| * | |
| * @param $string | |
| * @param bool $checkReserved | |
| * @return array|array[]|false|string[] | |
| */ | |
| public function getTagsFromString($string, $checkReserved = true) | |
| { | |
| $tags = preg_split(TAG_SEPARATER, $string, -1, PREG_SPLIT_NO_EMPTY); | |
| $tags = array_map('trim', $tags); | |
| $tags = array_unique($tags); | |
| if ($checkReserved) { | |
| $tags = array_filter($tags, function ($tag) { | |
| return !isReserved($tag); | |
| }); | |
| } | |
| return $tags; | |
| } | |
| /** | |
| * エントリーのフルテキストを取得 | |
| * | |
| * @param int $eid | |
| * | |
| * @return string | |
| */ | |
| public function loadEntryFulltext($eid) | |
| { | |
| $DB = DB::singleton(dsn()); | |
| $SQL = SQL::newSelect('column'); | |
| $SQL->addWhereOpr('column_entry_id', $eid); | |
| $SQL->addWhereOpr('column_attr', 'acms-form', '<>'); | |
| $q = $SQL->get(dsn()); | |
| $text = ''; | |
| $meta = ''; | |
| if ( $DB->query($q, 'fetch') and ($row = $DB->fetch($q)) ) { do { | |
| if ( $row['column_align'] === 'hidden' ) continue; | |
| $type = detectUnitTypeSpecifier($row['column_type']); | |
| if ( 'text' == $type ) { | |
| $_text = $row['column_field_1']; | |
| if ( 'markdown' == $row['column_field_2'] ) { | |
| $_text = \Michelf\MarkdownExtra::defaultTransform($_text); | |
| } | |
| $text .= $_text.' '; | |
| } else if ( 'custom' == $type ) { | |
| $Custom = acmsUnserialize($row['column_field_6']); | |
| foreach ( $Custom->listFields() as $f ) { | |
| $text .= $Custom->get($f).' '; | |
| } | |
| } else { | |
| $meta .= $row['column_field_1'].' '; | |
| } | |
| } while ( $row = $DB->fetch($q) ); } | |
| $meta .= $eid . ' '; | |
| $meta .= ACMS_RAM::entryTitle($eid) . ' '; | |
| $meta .= ACMS_RAM::entryCode($eid) . ' '; | |
| $SQL = SQL::newSelect('field'); | |
| $SQL->addSelect('field_value'); | |
| $SQL->addWhereOpr('field_search', 'on'); | |
| $SQL->addWhereOpr('field_eid', $eid); | |
| $q = $SQL->get(dsn()); | |
| if ( $DB->query($q, 'fetch') and ($row = $DB->fetch($q)) ) { do { | |
| $meta .= $row['field_value'].' '; | |
| } while ( $row = $DB->fetch($q) ); } | |
| $text = fulltextUnitData($text); | |
| return preg_replace('/\s+/u', ' ', strip_tags($text)) | |
| ."\x0d\x0a\x0a\x0d".preg_replace('/\s+/u', ' ', strip_tags($meta)) | |
| ; | |
| } | |
| /** | |
| * ユーザーのフルテキストを取得 | |
| * | |
| * @param int $uid | |
| * | |
| * @return string | |
| */ | |
| public function loadUserFulltext($uid) | |
| { | |
| $DB = DB::singleton(dsn()); | |
| // ユーザーフィールド | |
| $user = array(); | |
| // カスタムフィールド | |
| $meta = array(); | |
| $user[] = ACMS_RAM::userName($uid); | |
| $user[] = ACMS_RAM::userCode($uid); | |
| $user[] = ACMS_RAM::userMail($uid); | |
| $user[] = ACMS_RAM::userMailMobile($uid); | |
| $user[] = ACMS_RAM::userUrl($uid); | |
| $SQL = SQL::newSelect('field'); | |
| $SQL->addSelect('field_value'); | |
| $SQL->addWhereOpr('field_search', 'on'); | |
| $SQL->addWhereOpr('field_uid', $uid); | |
| $q = $SQL->get(dsn()); | |
| if ( $DB->query($q, 'fetch') and ($row = $DB->fetch($q)) ) { do { | |
| $meta[] = $row['field_value']; | |
| } while ( $row = $DB->fetch($q) ); } | |
| $user = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $user))); | |
| $meta = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $meta))); | |
| return $user."\x0d\x0a\x0a\x0d".$meta; | |
| } | |
| /** | |
| * カテゴリのフルテキストを取得 | |
| * | |
| * @param int $cid | |
| * | |
| * @return string | |
| */ | |
| public function loadCategoryFulltext($cid) | |
| { | |
| $DB = DB::singleton(dsn()); | |
| // カテゴリーフィールド | |
| $category = array(); | |
| // カスタムフィールド | |
| $meta = array(); | |
| $category[] = ACMS_RAM::categoryName($cid); | |
| $category[] = ACMS_RAM::categoryCode($cid); | |
| $SQL = SQL::newSelect('field'); | |
| $SQL->addSelect('field_value'); | |
| $SQL->addWhereOpr('field_search', 'on'); | |
| $SQL->addWhereOpr('field_cid', $cid); | |
| $q = $SQL->get(dsn()); | |
| if ( $DB->query($q, 'fetch') and ($row = $DB->fetch($q)) ) { do { | |
| $meta[] = $row['field_value']; | |
| } while ( $row = $DB->fetch($q) ); } | |
| $category = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $category))); | |
| $meta = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $meta))); | |
| return $category."\x0d\x0a\x0a\x0d".$meta; | |
| } | |
| /** | |
| * ブログのフルテキストを取得 | |
| * | |
| * @param int $cid | |
| * | |
| * @return string | |
| */ | |
| public function loadBlogFulltext($bid) | |
| { | |
| $DB = DB::singleton(dsn()); | |
| // ブログフィールド | |
| $blog = array(); | |
| // カスタムフィールド | |
| $meta = array(); | |
| $blog[] = ACMS_RAM::blogName($bid); | |
| $blog[] = ACMS_RAM::blogCode($bid); | |
| $blog[] = ACMS_RAM::blogDomain($bid); | |
| $SQL = SQL::newSelect('field'); | |
| $SQL->addSelect('field_value'); | |
| $SQL->addWhereOpr('field_search', 'on'); | |
| $SQL->addWhereOpr('field_bid', $bid); | |
| $q = $SQL->get(dsn()); | |
| if ( $DB->query($q, 'fetch') and ($row = $DB->fetch($q)) ) { do { | |
| $meta[] = $row['field_value']; | |
| } while ( $row = $DB->fetch($q) ); } | |
| $blog = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $blog))); | |
| $meta = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $meta))); | |
| return $blog."\x0d\x0a\x0a\x0d".$meta; | |
| } | |
| /** | |
| * プラグインフルテキストを取得 | |
| * | |
| * @param int $cuid | |
| * | |
| * @return string | |
| */ | |
| public function loadPluginFulltext($cuid) | |
| { | |
| $DB = DB::singleton(dsn()); | |
| // ユーザーフィールド | |
| $user = array(); | |
| // カスタムフィールド | |
| $meta = array(); | |
| $SQL = SQL::newSelect('crm_customer'); | |
| $SQL->addWhereOpr('customer_id', $cuid); | |
| if ( $row = $DB->query($SQL->get(dsn()), 'row') ) { | |
| foreach ( $row as $key => $val ) { | |
| $user[] = $val; | |
| } | |
| } | |
| $SQL = SQL::newSelect('crm_field'); | |
| $SQL->addSelect('field_value'); | |
| $SQL->addWhereOpr('field_customer_id', $cuid); | |
| $q = $SQL->get(dsn()); | |
| if ( $DB->query($q, 'fetch') and ($row = $DB->fetch($q)) ) { do { | |
| $meta[] = $row['field_value']; | |
| } while ( $row = $DB->fetch($q) ); } | |
| $user = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $user))); | |
| $meta = preg_replace('/\s+/u', ' ', strip_tags(implode(' ', $meta))); | |
| return $user."\x0d\x0a\x0a\x0d".$meta; | |
| } | |
| /** | |
| * フルテキストの保存 | |
| * | |
| * @param string $type フルテキストのタイプ | |
| * @param int $id | |
| * @param string $fulltext | |
| * @param int $targetBid | |
| * | |
| * @return void | |
| */ | |
| public function saveFulltext($type, $id, $fulltext=null, $targetBid=BID) | |
| { | |
| $DB = DB::singleton(dsn()); | |
| $SQL = SQL::newDelete('fulltext'); | |
| $SQL->addWhereOpr('fulltext_'.$type, $id); | |
| $DB->query($SQL->get(dsn()), 'exec'); | |
| if ( !empty($fulltext) ) { | |
| $SQL = SQL::newInsert('fulltext'); | |
| $SQL->addInsert('fulltext_value', $fulltext); | |
| if ( config('ngram') ) { | |
| $SQL->addInsert('fulltext_ngram', | |
| preg_replace('/( |\s)+/u', ' ', join(' ', ngram(strip_tags($fulltext), config('ngram')))) | |
| ); | |
| } | |
| $SQL->addInsert('fulltext_'.$type, $id); | |
| $SQL->addInsert('fulltext_blog_id', $targetBid); | |
| $DB->query($SQL->get(dsn()), 'exec'); | |
| } | |
| } | |
| /** | |
| * プラグインのフルテキスト保存 | |
| * | |
| * @param string $type フルテキストのタイプ | |
| * @param int $id | |
| * @param string $fulltext | |
| * @param int $targetBid | |
| * | |
| * @return void | |
| */ | |
| public function savePluginFulltext($type, $id, $fulltext=null, $targetBid=BID) | |
| { | |
| $DB = DB::singleton(dsn()); | |
| $SQL = SQL::newDelete('fulltext_plugin'); | |
| $SQL->addWhereOpr('fulltext_key', $type); | |
| $SQL->addWhereOpr('fulltext_id', $id); | |
| $DB->query($SQL->get(dsn()), 'exec'); | |
| if ( !empty($fulltext) ) { | |
| $SQL = SQL::newInsert('fulltext_plugin'); | |
| $SQL->addInsert('fulltext_value', $fulltext); | |
| $SQL->addInsert('fulltext_key', $type); | |
| $SQL->addInsert('fulltext_id', $id); | |
| $SQL->addInsert('fulltext_blog_id', $targetBid); | |
| $DB->query($SQL->get(dsn()), 'exec'); | |
| } | |
| } | |
| /** | |
| * ファイルダウンロード | |
| * | |
| * @param string $path | |
| * @param string $fileName | |
| * @param string | boolean $extension // 指定すると、Content-Disposition: inline になります。 | |
| * @param boolean $remove | |
| */ | |
| public function download($path, $fileName, $extension = false, $remove = false) | |
| { | |
| $fileNameEncode = urlencode($fileName); | |
| $size = filesize($path); | |
| $fp = fopen($path,"rb"); | |
| if ($extension) { | |
| $inlineExtensions = configArray('media_inline_download_extension'); | |
| $mime = false; | |
| foreach ($inlineExtensions as $i => $value) { | |
| if ($extension == $value) { | |
| $mime = config('media_inline_download_mime', false, $i); | |
| } | |
| } | |
| header("Content-Disposition: inline; filename=\"$fileName\"; filename*=UTF-8''$fileNameEncode"); | |
| if ($mime) { | |
| header("Content-Type: $mime"); | |
| } else { | |
| header('Content-Type: application/octet-stream'); | |
| } | |
| if (isset($_SERVER["HTTP_RANGE"]) && $_SERVER["HTTP_RANGE"]) { | |
| // 要求された開始位置と終了位置を取得 | |
| list($start, $end) = sscanf($_SERVER["HTTP_RANGE"],"bytes=%d-%d"); | |
| // 終了位置が指定されていない場合(適当に1000000bytesづつ出す) | |
| if (empty($end)) $end = $start + 1000000 - 1; | |
| // 終了位置がファイルサイズを超えた場合 | |
| if ($end >= ($size-1)) $end = $size - 1; | |
| // 部分コンテンツであることを伝える | |
| header("HTTP/1.1 206 Partial Content"); | |
| // コンテンツ範囲を伝える | |
| header("Content-Range: bytes {$start}-{$end}/{$size}"); | |
| // 実際に送信するコンテンツ長: 終了位置 - 開始位置 + 1 | |
| $size = $end - $start + 1; | |
| // ファイルポインタを開始位置まで移動 | |
| fseek($fp, $start); | |
| } | |
| } else { | |
| header("Content-Disposition: attachment; filename=\"$fileName\"; filename*=UTF-8''$fileNameEncode"); | |
| if (strpos(UA, 'MSIE')) { | |
| header('Content-Type: text/download'); | |
| } else { | |
| header('Content-Type: application/octet-stream'); | |
| } | |
| } | |
| header('Content-Length: ' . $size); | |
| while (ob_get_level() > 0) { | |
| ob_end_clean(); | |
| } | |
| ob_start(); | |
| if ($size) echo fread($fp, $size); | |
| fclose($fp); | |
| if ($remove) { | |
| Storage::remove($path); | |
| } | |
| die(); | |
| } | |
| /** | |
| * カスタムフィールドの保存 | |
| * | |
| * @param string $type | |
| * @param int $id | |
| * @param Field $Field | |
| * @param Field $deleteField | |
| * @param int $rvid | |
| * @param string $moveFieldArchive | |
| * @param int $targetBid | |
| * | |
| * @return bool | |
| */ | |
| public function saveField($type, $id, $Field=null, $deleteField=null, $rvid=null, $moveFieldArchive='', $targetBid=BID) | |
| { | |
| if ( empty($id) ) return false; | |
| $DB = DB::singleton(dsn()); | |
| $ARCHIVES_DIR_TO = REVISON_ARCHIVES_DIR; | |
| $tableName = 'field'; | |
| $revision = false; | |
| if ( 1 | |
| && enableRevision(false) | |
| && $rvid | |
| && $type == 'eid' | |
| ) { | |
| if ( $moveFieldArchive === 'ARCHIVES_DIR' ) { | |
| $ARCHIVES_DIR_TO = ARCHIVES_DIR; | |
| $FieldOld = loadEntryField($id); | |
| foreach ( $FieldOld->listFields() as $fd ) { | |
| if ( 1 | |
| and !strpos($fd, '@path') | |
| and !strpos($fd, '@tinyPath') | |
| and !strpos($fd, '@largePath') | |
| and !strpos($fd, '@squarePath') | |
| ) { | |
| continue; | |
| } | |
| foreach ( $FieldOld->getArray($fd, true) as $i => $val ) { | |
| $path = $val; | |
| if ( !Storage::isFile($ARCHIVES_DIR_TO.$path) ) continue; | |
| Storage::remove($ARCHIVES_DIR_TO.$path); | |
| } | |
| } | |
| } else { | |
| $tableName = 'field_rev'; | |
| } | |
| $revision = true; | |
| } | |
| if ( 1 | |
| && $revision | |
| && intval($rvid) === 1 | |
| && empty($moveFieldArchive) | |
| ) { | |
| $FieldOld = loadEntryField($id, 1); | |
| foreach ( $FieldOld->listFields() as $fd ) { | |
| if ( 1 | |
| and !strpos($fd, '@path') | |
| and !strpos($fd, '@tinyPath') | |
| and !strpos($fd, '@largePath') | |
| and !strpos($fd, '@squarePath') | |
| ) { | |
| continue; | |
| } | |
| foreach ( $FieldOld->getArray($fd, true) as $i => $val ) { | |
| $path = $val; | |
| if ( !Storage::isFile(REVISON_ARCHIVES_DIR.$path) ) continue; | |
| Storage::remove(REVISON_ARCHIVES_DIR.$path); | |
| } | |
| } | |
| } | |
| $SQL = SQL::newDelete($tableName); | |
| $SQL->addWhereOpr('field_'.$type, $id); | |
| if ( $tableName === 'field_rev' ) { | |
| $SQL->addWhereOpr('field_rev_id', $rvid); | |
| } | |
| if ( $Field && $Field->get('updateField') === 'on' ) { | |
| $fkey = array(); | |
| $Field->delete('updateField'); | |
| foreach ( $Field->listFields() as $fd ) { | |
| $fkey[] = $fd; | |
| } | |
| $SQL->addWhereIn('field_key', $fkey); | |
| } | |
| $DB->query($SQL->get(dsn()), 'exec'); | |
| $temp = ''; | |
| if ( !empty($moveFieldArchive) ) { | |
| $temp = 'TEMP/'; | |
| } | |
| if ( !empty($Field) ) { | |
| foreach ( $Field->listFields() as $fd ) { | |
| // copy revision | |
| if ( $revision ) { | |
| if ( strpos($fd, '@path') ) { | |
| $list = $Field->getArray($fd, true); | |
| $base = substr($fd, 0, (-1 * strlen('@path'))); | |
| $set = false; | |
| foreach ( $list as $i => $val ) { | |
| $path = $val; | |
| if ( Storage::isFile(ARCHIVES_DIR.$temp.$path) ) { | |
| $info = pathinfo($path); | |
| $dirname = empty($info['dirname']) ? '' : $info['dirname'].'/'; | |
| Storage::makeDirectory($ARCHIVES_DIR_TO.$dirname); | |
| $ext = empty($info['extension']) ? '' : '.'.$info['extension']; | |
| $newPath = $dirname.uniqueString().$ext; | |
| $path = ARCHIVES_DIR.$temp.$path; | |
| $largePath = otherSizeImagePath($path, 'large'); | |
| $tinyPath = otherSizeImagePath($path, 'tiny'); | |
| $squarePath = otherSizeImagePath($path, 'square'); | |
| $newLargePath = otherSizeImagePath($newPath, 'large'); | |
| $newTinyPath = otherSizeImagePath($newPath, 'tiny'); | |
| $newSquarePath = otherSizeImagePath($newPath, 'square'); | |
| Storage::copy($path, $ARCHIVES_DIR_TO.$newPath); | |
| Storage::copy($largePath, $ARCHIVES_DIR_TO.$newLargePath); | |
| Storage::copy($tinyPath, $ARCHIVES_DIR_TO.$newTinyPath); | |
| Storage::copy($squarePath, $ARCHIVES_DIR_TO.$newSquarePath); | |
| if ( !$set ) { | |
| $Field->delete($fd); | |
| $Field->delete($base.'@largePath'); | |
| $Field->delete($base.'@tinyPath'); | |
| $Field->delete($base.'@squarePath'); | |
| $set = true; | |
| } | |
| $Field->add($fd, $newPath); | |
| if ( Storage::isReadable($largePath) ) { | |
| $Field->add($base.'@largePath', $newLargePath); | |
| } | |
| if ( Storage::isReadable($tinyPath) ) { | |
| $Field->add($base.'@tinyPath', $newTinyPath); | |
| } | |
| if ( Storage::isReadable($squarePath) ) { | |
| $Field->add($base.'@squarePath', $newSquarePath); | |
| } | |
| } | |
| } | |
| } | |
| } | |
| foreach ( $Field->getArray($fd, true) as $i => $val ) { | |
| $SQL = SQL::newInsert($tableName); | |
| $SQL->addInsert('field_key', $fd); | |
| $SQL->addInsert('field_value', $val); | |
| $SQL->addInsert('field_sort', $i + 1); | |
| $SQL->addInsert('field_search', $Field->getMeta($fd, 'search') ? 'on' : 'off'); | |
| $SQL->addInsert('field_'.$type, $id); | |
| $SQL->addInsert('field_blog_id', $targetBid); | |
| if ( $tableName === 'field_rev' ) { | |
| $SQL->addInsert('field_rev_id', $rvid); | |
| } | |
| $DB->query($SQL->get(dsn()), 'exec'); | |
| } | |
| } | |
| } | |
| return true; | |
| } | |
| /** | |
| * URIオブジェクトの取得 | |
| * | |
| * @param \Field $Post | |
| * | |
| * @return \Field | |
| */ | |
| public function getUriObject($Post) | |
| { | |
| $Uri = new Field(); | |
| //----- | |
| // arg | |
| if ( !$aryFd = $Post->getArray('arg') ) { | |
| $aryFd = array_diff($Post->listFields(), $Post->getArray('field'), $Post->getArray('query')); | |
| } | |
| foreach ( $aryFd as $fd ) { | |
| //--------- | |
| // field | |
| if ( 'field' == $fd and $aryField = $Post->getArray('field') ) { | |
| $Field = new Field_Search(); | |
| foreach ( $aryField as $j => $fd ) { | |
| $Field->set($fd); | |
| $Field->setConnector($fd); | |
| $Field->setOperator($fd); | |
| $aryValue = $Post->getArray($fd); | |
| $aryConnector = $Post->getArray($fd.'@connector'); | |
| $aryOperator = $Post->getArray($fd.'@operator'); | |
| $Field->addSeparator($fd, $Post->get($fd.'@separator', 'and')); | |
| if ( !!($cnt = max(count($aryValue), count($aryConnector), count($aryOperator))) ) { | |
| $defaultConnector = 'and'; | |
| $defaultOperator = 'eq'; | |
| if ( empty($aryConnector) and empty($aryOperator) /*and 2 <= count($aryValue)*/ ) { | |
| $defaultConnector = 'or'; | |
| } | |
| if ( !empty($aryConnector) ) { | |
| $defaultConnector = $aryConnector[0]; | |
| } | |
| if ( !empty($aryOperator) ) { | |
| $defaultOperator = $aryOperator[0]; | |
| } | |
| for ( $i=0; $i<$cnt; $i++ ) { | |
| $Field->add($fd, isset($aryValue[$i]) ? $aryValue[$i] : ''); | |
| $Field->addConnector($fd, isset($aryConnector[$i]) ? $aryConnector[$i] : $defaultConnector); | |
| $Field->addOperator($fd, isset($aryOperator[$i]) ? $aryOperator[$i] : $defaultOperator); | |
| } | |
| } | |
| } | |
| $Uri->addChild('field', $Field); | |
| //------- | |
| // query | |
| } else if ( 'query' == $fd and $aryQuery = $Post->getArray('query') ) { | |
| $Query = new Field(); | |
| foreach ( $aryQuery as $fd ) { | |
| $Query->set($fd, $Post->getArray($fd)); | |
| } | |
| $Uri->addChild('query', $Query); | |
| //------- | |
| // value | |
| } else { | |
| $Uri->set($fd, $Post->getArray($fd)); | |
| } | |
| } | |
| return $Uri; | |
| } | |
| /** | |
| * POSTデータからデータの抜き出し | |
| * | |
| * @param string $scp | |
| * @param \Field $V | |
| * @param \Field $deleteField | |
| * @param bool $moveArchive | |
| * | |
| * @return \Field | |
| */ | |
| public function extract($scp='field', $V=null, $deleteField=null, $moveArchive=false) | |
| { | |
| $Field = new Field_Validation(); | |
| $this->deleteField = $deleteField; | |
| $ARCHIVES_DIR = ARCHIVES_DIR; | |
| if ( $moveArchive ) { | |
| $ARCHIVES_DIR = ARCHIVES_DIR.'TEMP/'; | |
| } | |
| if ( !$this->deleteField ) $this->deleteField = new Field(); | |
| if ( $takeover = $this->Post->get($scp.':takeover') ) { | |
| $Field->overload(acmsUnserialize($takeover)); | |
| $this->Post->delete($scp.':takeover'); | |
| } | |
| $Field->overload($this->Post->dig($scp)); | |
| $this->Post->addChild($scp, $Field); | |
| // 許可ファイル拡張子をまとめておく | |
| $allow_file_extensions = array_merge( | |
| configArray('file_extension_document'), | |
| configArray('file_extension_archive'), | |
| configArray('file_extension_movie'), | |
| configArray('file_extension_audio') | |
| ); | |
| //------- | |
| // child | |
| foreach ( $Field->listFields() as $fd ) { | |
| if ( !$this->Post->isExists($fd.':field') ) continue; | |
| $this->Post->set($fd, $Field->getArray($fd)); | |
| $Field->delete($fd); | |
| $Field->addChild($fd, $this->extract($fd)); | |
| } | |
| foreach ( $this->Post->listFields() as $metaFd ) { | |
| //----------- | |
| // converter | |
| if ( 1 | |
| and preg_match('@^(.+)(?:\:c|\:converter)$@', $metaFd, $match) | |
| and $Field->isExists($match[1]) | |
| ) { | |
| $fd = $match[1]; | |
| $aryVal = array(); | |
| foreach ( $Field->getArray($fd) as $val ) { | |
| $aryVal[] = mb_convert_kana($val, $this->Post->get($metaFd), 'UTF-8'); | |
| } | |
| $Field->setField($fd, $aryVal); | |
| $this->Post->delete($metaFd); | |
| continue; | |
| } | |
| //----------- | |
| // extension | |
| if ( 1 | |
| and preg_match('@^(.+):extension$@', $metaFd, $match) | |
| and $Field->isExists($match[1]) | |
| ) { | |
| $fd = $match[1]; | |
| $type = $this->Post->get($fd.':extension'); | |
| $dataUrl = false; | |
| $this->Post->delete($fd.':extension'); | |
| if ($type === 'media') { | |
| foreach ($Field->getArray($fd) as $mediaValue) { | |
| $Field->addField($fd . '@media', $mediaValue); | |
| } | |
| } else if ($type === 'paper-editor' || $type === 'rich-editor') { | |
| foreach ($Field->getArray($fd) as $editorValue) { | |
| $Field->addField($fd. '@html', RichEditor::render($editorValue)); | |
| $Field->addField($fd.'@title', RichEditor::renderTitle($editorValue)); | |
| } | |
| } else if ( $type === 'image' || $type === 'file' ) { | |
| try { | |
| $file = ACMS_Http::file($fd); | |
| if ($type === 'file') { | |
| if ($extensions = $this->Post->getArray($fd.'@extension')) { | |
| $extension_entity = pathinfo($file->getName(), PATHINFO_EXTENSION); | |
| $extension_matched = false; | |
| foreach ( $extensions as $extension ) { | |
| if ( $extension === $extension_entity ) { | |
| $extension_matched = true; | |
| } | |
| } | |
| if ( !$extension_matched ) { | |
| throw new \RuntimeException('EXTENSION_IS_DIFFERENT'); | |
| } | |
| } | |
| } | |
| $size = $file->getFileSize(); | |
| if ( isset($Field->_aryMethod[$fd]) ) { | |
| $arg = $Field->_aryMethod[$fd]; | |
| if ( isset($arg['filesize']) ) { | |
| $maxsize = intval($arg['filesize']); | |
| if ( $size > ($maxsize * 1024) ) { | |
| throw new \RuntimeException(UPLOAD_ERR_FORM_SIZE); | |
| } | |
| } | |
| } | |
| } catch ( \Exception $e ) { | |
| if ( $e->getMessage() == 'EXTENSION_IS_DIFFERENT' ) { | |
| $Field->setMethod($fd, 'extension', false); | |
| continue; | |
| } | |
| if ( $e->getMessage() == UPLOAD_ERR_INI_SIZE || $e->getMessage() == UPLOAD_ERR_FORM_SIZE ) { | |
| $Field->setMethod($fd, 'filesize', false); | |
| $Field->set($fd, 'maxfilesize'); | |
| continue; | |
| } | |
| } | |
| } | |
| //------- | |
| // image | |
| if ( 'image' == $type ) { | |
| // data url | |
| if ( isset($_POST[$fd]) ) { | |
| ACMS_POST_Image::base64DataToImage($_POST[$fd], $fd); | |
| $Field->delete($fd); | |
| $dataUrl = true; | |
| } | |
| if ( empty($_FILES[$fd]) ) { | |
| foreach ( array( | |
| 'path', 'x', 'y', 'alt', 'fileSize', | |
| 'largePath', 'largeX', 'largeY', 'largeAlt', 'largeFileSize', | |
| 'tinyPath', 'tinyX', 'tinyY', 'tinyAlt', 'tinyFileSize', | |
| 'squarePath', 'squareX', 'squareY', 'squareAlt', 'squareFileSize', | |
| 'secret' | |
| ) as $key ) { | |
| $key = $fd.'@'.$key; | |
| $this->deleteField->set($key, array()); | |
| $Field->deleteField($fd.'@'.$key); | |
| } | |
| continue; | |
| } | |
| $aryC = array(); | |
| if ( !is_array($_FILES[$fd]['tmp_name']) ) { | |
| $aryC[] = array( | |
| '_tmp_name' => $_FILES[$fd]['tmp_name'], | |
| '_name' => $_FILES[$fd]['name'], | |
| ); | |
| } else { | |
| foreach ( $_FILES[$fd]['tmp_name'] as $i => $tmp_name ) { | |
| $aryC[] = array( | |
| '_tmp_name' => $tmp_name, | |
| '_name' => $_FILES[$fd]['name'][$i], | |
| ); | |
| } | |
| } | |
| foreach ( array( | |
| 'str' => array('old', 'edit', 'alt', 'filename', 'extension', 'secret'), | |
| 'int' => array( | |
| 'width', 'height', 'size', | |
| 'tinyWidth', 'tinyHeight', 'tinySize', | |
| 'largeWidth', 'largeHeight', 'largeSize', | |
| 'squareWidth', 'squareHeight', 'squareSize', | |
| ), | |
| ) as $_type => $keys ) { | |
| foreach ( $keys as $key ) { | |
| foreach ( $aryC as $i => $c ) { | |
| $_field = $fd.'@'.$key; | |
| $value = $this->Post->isExists($_field, $i) ? | |
| $this->Post->get($_field, '', $i) : ''; | |
| $c[$key] = ('int' == $_type) ? intval($value) : strval($value); | |
| $aryC[$i] = $c; | |
| } | |
| $this->Post->delete($fd.'@'.$key); | |
| } | |
| } | |
| $aryData = array(); | |
| foreach ( $aryC as $c ) { | |
| $aryData[] = array(); | |
| } | |
| $cnt = count($aryData); | |
| for ( $i=0; $i<$cnt; $i++ ) { | |
| $c = $aryC[$i]; | |
| $data =& $aryData[$i]; | |
| $pattern = '@'.REVISON_ARCHIVES_DIR.'@'; | |
| $c['old'] = preg_replace($pattern, '', $c['old'], 1); | |
| //------------- | |
| // rawfilename | |
| if ( preg_match('/^@(.*)$/', $c['filename'], $match) ) { | |
| $c['filename'] = ('rawfilename' == $match[1]) ? $c['_name'] : ''; | |
| } | |
| //------------------------------------ | |
| // security check ( nullバイトチェック ) | |
| if ( $c['old'] !== ltrim($c['old']) ) { continue; } | |
| if ( $c['filename'] !== ltrim($c['filename']) ) { continue; } | |
| //------------------------------------------------------------- | |
| // パスの半正規化 ( directory traversal対策・バイナリセーフ関数を使用 ) | |
| // この時点で //+ や ^/ は 混入する可能性はあるが無害とみなす | |
| $c['old'] = preg_replace('/\.+\/+/', '', $c['old']); | |
| $c['filename'] = preg_replace('/\.+\/+/', '', $c['filename']); | |
| //--------------------------------------------- | |
| // 例外的無視ファイル | |
| // pathの終端(ファイル名)が特定の場合にリジェクトする | |
| if ( !!preg_match('/\.htaccess$/', $c['filename']) ) { continue; } | |
| //--------------------- | |
| // セキュリティチェック | |
| // リクエストされた削除ファイル名が怪しい場合に削除と上書きをスキップ | |
| // このチェックに引っかかった場合にもフィールドの情報は保持する(continueしない) | |
| // 削除キーがDBに保存されていなかった場合などファイルが消せなくなるため | |
| // 救済措置としてDEBUG_MODEがONの時にはこのチェックを行わない | |
| // 投稿者以上の権限を持っている場合にもチェックを行わない | |
| // 暗号化は「フィールド名@パス」をmd5したもの | |
| // 暗号化文字列の照合にDBは使えない | |
| // 一回目にフォームを送信するときはDB上にデータがない | |
| // アップロードが完了したにもかかわらず | |
| // 他のエラーチェックで引っかかった時は | |
| // DB上にデータは保存されないため比較できない | |
| $secretCheck = ( 1 | |
| and !DEBUG_MODE | |
| and !$moveArchive | |
| and !sessionWithContribution() | |
| and !empty($c['old']) | |
| and ( 0 | |
| or 'delete' == $c['edit'] | |
| or !empty($c['_tmp_name']) | |
| ) | |
| ) ? ($c['secret'] == md5($fd.'@'.$c['old'])) : true; | |
| //---------------------------- | |
| // delete ( 指定削除 continue ) | |
| if ( 1 | |
| and 'delete' == $c['edit'] | |
| and !empty($c['old']) | |
| and $secretCheck | |
| and empty($tmpMedia) | |
| and isExistsRuleModuleConfig() | |
| ) { | |
| Image::deleteImageAllSize($ARCHIVES_DIR.normalSizeImagePath($c['old'])); | |
| continue; | |
| } | |
| //-------- | |
| // upload | |
| if ( !empty($c['_tmp_name']) and $secretCheck ) { | |
| $tmp_name = $c['_tmp_name']; | |
| if ( !$dataUrl && !is_uploaded_file($tmp_name) ) { continue; } | |
| // getimagesizeが画像ファイルであるかの判定を兼用している | |
| // @todo security: | |
| // "GIF89a <SCRIPT>alert('xss');< /SCRIPT>のようなテキストファイルはgetimagesizeを通過する | |
| // IE6, 7あたりはContent-Typeのほかにファイルの中身も評価してしまう | |
| // 偽装テキストを読み込んだときに、HTML with JavaScriptとして実行されてしまう可能性がある | |
| // 参考: http://www.tokumaru.org/d/20071210.html | |
| if ( !($xy = Storage::getImageSize($tmp_name)) ) { continue; } | |
| //--------------------------- | |
| // delete ( 古いファイルの削除 ) | |
| if ( 1 | |
| and !empty($c['old']) | |
| and empty($tmpMedia) | |
| and isExistsRuleModuleConfig() | |
| ) { | |
| Image::deleteImageAllSize($ARCHIVES_DIR.normalSizeImagePath($c['old'])); | |
| } | |
| //------------------------------ | |
| // dirname, basename, extension | |
| if ( !empty($c['filename']) ) { | |
| if ( !preg_match('@((?:[^/]*/)*)((?:[^.]*\.)*)(.*)$@', sprintf('%03d', BID).'/'.$c['filename'], $match) ) { | |
| trigger_error('unknown', E_USER_ERROR); | |
| } | |
| $extension = !empty($match[3]) ? $match[3] | |
| : Image::detectImageExtenstion($xy['mime']); | |
| $dirname = $match[1]; | |
| $basename = !empty($match[2]) ? $match[2].$extension | |
| : uniqueString().'.'.$extension; | |
| } else { | |
| $extension = !empty($c['extension']) ? $c['extension'] | |
| : Image::detectImageExtenstion($xy['mime']); | |
| $dirname = Storage::archivesDir(); | |
| $basename = uniqueString().'.'.$extension; | |
| } | |
| //------- | |
| // angle | |
| $angle = 0; | |
| if ( 'rotate' == substr($c['edit'], 0, 6) ) { | |
| $angle = intval(substr($c['edit'], 6)); | |
| } | |
| //-------- | |
| // normal | |
| $normal = $dirname.$basename; | |
| $normalPath = $ARCHIVES_DIR.$normal; | |
| if ( !Storage::exists($normalPath) ) { Image::copyImage($tmp_name, $normalPath, $c['width'], $c['height'], $c['size'], $angle); } | |
| if ( $xy = Storage::getImageSize($normalPath) ) { | |
| $data[$fd.'@path'] = $normal; | |
| $data[$fd.'@x'] = $xy[0]; | |
| $data[$fd.'@y'] = $xy[1]; | |
| $data[$fd.'@alt'] = $c['alt']; | |
| $data[$fd.'@fileSize'] = filesize($normalPath); | |
| $tmpMedia[] = array( | |
| 'path' => $normalPath, | |
| ); | |
| } | |
| //------- | |
| // large | |
| if ( !empty($c['largeWidth']) or !empty($c['largeHeight']) or !empty($c['largeSize']) ) { | |
| $large = $dirname.'large-'.$basename; | |
| $largePath = $ARCHIVES_DIR.$large; | |
| if ( !Storage::exists($largePath) ) { Image::copyImage($tmp_name, $largePath, $c['largeWidth'], $c['largeHeight'], $c['largeSize'], $angle); } | |
| if ( $xy = Storage::getImageSize($largePath) ) { | |
| $data[$fd.'@largePath'] = $large; | |
| $data[$fd.'@largeX'] = $xy[0]; | |
| $data[$fd.'@largeY'] = $xy[1]; | |
| $data[$fd.'@largeAlt'] = $c['alt']; | |
| $data[$fd.'@largeFileSize'] = filesize($largePath); | |
| $tmpMedia[] = array( | |
| 'path' => $normalPath, | |
| ); | |
| } | |
| } | |
| //------ | |
| // tiny | |
| if ( !empty($c['tinyWidth']) or !empty($c['tinyHeight']) or !empty($c['tinySize']) ) { | |
| $tiny = $dirname.'tiny-'.$basename; | |
| $tinyPath = $ARCHIVES_DIR.$tiny; | |
| if ( !Storage::exists($tinyPath) ) { Image::copyImage($tmp_name, $tinyPath, $c['tinyWidth'], $c['tinyHeight'], $c['tinySize'], $angle); } | |
| if ( $xy = Storage::getImageSize($tinyPath) ) { | |
| $data[$fd.'@tinyPath'] = $tiny; | |
| $data[$fd.'@tinyX'] = $xy[0]; | |
| $data[$fd.'@tinyY'] = $xy[1]; | |
| $data[$fd.'@tinyAlt'] = $c['alt']; | |
| $data[$fd.'@tinyFileSize'] = filesize($tinyPath); | |
| $tmpMedia[] = array( | |
| 'path' => $normalPath, | |
| ); | |
| } | |
| } | |
| //--------- | |
| // square | |
| if ( !empty($c['squareWidth']) or !empty($c['squareHeight']) or !empty($c['squareSize']) ) { | |
| $square = $dirname.'square-'.$basename; | |
| $squarePath = $ARCHIVES_DIR.$square; | |
| $squareSize = 0; | |
| if ( !empty($c['squareWidth']) ) { | |
| $squareSize = $c['squareWidth']; | |
| } else if ( !empty($c['squareHeight']) ) { | |
| $squareSize = $c['squareHeight']; | |
| } else if ( !empty($c['squareSize']) ) { | |
| $squareSize = $c['squareSize']; | |
| } | |
| if ( !Storage::exists($squarePath) ) { Image::copyImage($tmp_name, $squarePath, $squareSize, $squareSize, $squareSize, $angle); } | |
| if ( $xy = Storage::getImageSize($squarePath) ) { | |
| $data[$fd.'@squarePath'] = $square; | |
| $data[$fd.'@squareX'] = $xy[0]; | |
| $data[$fd.'@squareY'] = $xy[1]; | |
| $data[$fd.'@squareAlt'] = $c['alt']; | |
| $data[$fd.'@squareFileSize'] = filesize($squarePath); | |
| $tmpMedia[] = array( | |
| 'path' => $normalPath, | |
| ); | |
| } | |
| } | |
| //-------- | |
| // secret | |
| // 正しくファイルがアップロードされた場合のみ新しくキーを発行する | |
| $data[$fd.'@secret'] = md5($fd.'@'.$normal); | |
| continue; | |
| } | |
| //----- | |
| // old | |
| // 非編集アップデートの時 | |
| if ( !empty($c['old']) ) { | |
| //-------- | |
| // normal | |
| $normal = $c['old']; | |
| $normalPath = $ARCHIVES_DIR.$normal; | |
| if ( $xy = Storage::getImageSize($normalPath) ) { | |
| $data[$fd.'@path'] = $normal; | |
| $data[$fd.'@x'] = $xy[0]; | |
| $data[$fd.'@y'] = $xy[1]; | |
| $data[$fd.'@alt'] = $c['alt']; | |
| $data[$fd.'@fileSize'] = filesize($normalPath); | |
| if ( !preg_match('@((?:[^/]*/)*)((?:[^.]*\.)*)(.*)$@', $normal, $match) ) { | |
| trigger_error('unknown', E_USER_ERROR); | |
| } | |
| $extension = $match[3]; | |
| $dirname = $match[1]; | |
| $basename = $match[2].$extension; | |
| //------- | |
| // large | |
| $large = $dirname.'large-'.$basename; | |
| $largePath = $ARCHIVES_DIR.$large; | |
| if ( $xy = Storage::getImageSize($largePath) ) { | |
| $data[$fd.'@largePath'] = $large; | |
| $data[$fd.'@largeX'] = $xy[0]; | |
| $data[$fd.'@largeY'] = $xy[1]; | |
| $data[$fd.'@largeAlt'] = $c['alt']; | |
| $data[$fd.'@largeFileSize'] = filesize($largePath); | |
| } | |
| //------ | |
| // tiny | |
| $tiny = $dirname.'tiny-'.$basename; | |
| $tinyPath = $ARCHIVES_DIR.$tiny; | |
| if ( $xy = Storage::getImageSize($tinyPath) ) { | |
| $data[$fd.'@tinyPath'] = $tiny; | |
| $data[$fd.'@tinyX'] = $xy[0]; | |
| $data[$fd.'@tinyY'] = $xy[1]; | |
| $data[$fd.'@tinyAlt'] = $c['alt']; | |
| $data[$fd.'@tinyFileSize'] = filesize($tinyPath); | |
| } | |
| //------ | |
| // square | |
| $square = $dirname.'square-'.$basename; | |
| $squarePath = $ARCHIVES_DIR.$square; | |
| if ( $xy = Storage::getImageSize($squarePath) ) { | |
| $data[$fd.'@squarePath'] = $square; | |
| $data[$fd.'@squareX'] = $xy[0]; | |
| $data[$fd.'@squareY'] = $xy[1]; | |
| $data[$fd.'@squareAlt'] = $c['alt']; | |
| $data[$fd.'@squareFileSize'] = filesize($squarePath); | |
| } | |
| //-------- | |
| // secret | |
| // これはエラー時にフォームを再表示しなければならない場合に必要 | |
| $data[$fd.'@secret'] = $c['secret']; | |
| } | |
| } | |
| } | |
| //------------ | |
| // save field | |
| $cnt = count($aryData); | |
| foreach ( array( | |
| 'path', 'x', 'y', 'alt', 'fileSize', | |
| 'largePath', 'largeX', 'largeY', 'largeAlt', 'largeFileSize', | |
| 'tinyPath', 'tinyX', 'tinyY', 'tinyAlt', 'tinyFileSize', | |
| 'squarePath', 'squareX', 'squareY', 'squareAlt', 'squareFileSize', | |
| 'secret' | |
| ) as $key ) { | |
| $key = $fd.'@'.$key; | |
| $value = array(); | |
| for ( $i=0; $cnt>$i; $i++ ) { | |
| $value[] = !empty($aryData[$i][$key]) ? $aryData[$i][$key] : ''; | |
| } | |
| $Field->set($key, $value); | |
| //------------ | |
| // validation | |
| foreach ( $this->Post->listFields() as $_fd ) { | |
| if ( preg_match('/^'.$key.':(?:v#|validator#)(.+)$/', $_fd, $match) ) { | |
| $method = $match[1]; | |
| $Field->setMethod($key, $method, $this->Post->get($_fd)); | |
| $this->Post->delete($_fd); | |
| } | |
| } | |
| } | |
| //------ | |
| // file | |
| } else if ( 'file' == $type ) { | |
| if ( empty($_FILES[$fd]) ) { | |
| $this->deleteField->setField($fd.'@path', array()); | |
| $this->deleteField->setField($fd.'@baseName', array()); | |
| $this->deleteField->setField($fd.'@fileSize', array()); | |
| $this->deleteField->setField($fd.'@secret', array()); | |
| $this->deleteField->setField($fd.'@downloadName', array()); | |
| $Field->deleteField($fd.'@path'); | |
| $Field->deleteField($fd.'@baseName'); | |
| $Field->deleteField($fd.'@fileSize'); | |
| $Field->deleteField($fd.'@secret'); | |
| $Field->deleteField($fd.'@downloadName'); | |
| continue; | |
| } | |
| $aryC = array(); | |
| if ( !is_array($_FILES[$fd]['tmp_name']) ) { | |
| $aryC[] = array( | |
| '_tmp_name' => $_FILES[$fd]['tmp_name'], | |
| '_name' => $_FILES[$fd]['name'], | |
| ); | |
| } else { | |
| foreach ( $_FILES[$fd]['tmp_name'] as $i => $tmp_name ) { | |
| $aryC[] = array( | |
| '_tmp_name' => $tmp_name, | |
| '_name' => $_FILES[$fd]['name'][$i], | |
| ); | |
| } | |
| } | |
| //-------------------------- | |
| // field copy to local vars | |
| foreach ( array('old', 'edit', 'extension', 'filename', 'secret', 'fileSize', 'downloadName', 'originalName') as $key ) { | |
| foreach ( $aryC as $i => $c ) { | |
| $_field = $fd.'@'.$key; | |
| if ( $key === 'extension' ) { | |
| $c[$key] = $this->Post->isExists($_field, $i) ? | |
| $this->Post->getArray($_field, '', $i) : ''; | |
| } else { | |
| $c[$key] = $this->Post->isExists($_field, $i) ? | |
| $this->Post->get($_field, '', $i) : ''; | |
| } | |
| $aryC[$i] = $c; | |
| } | |
| $this->Post->delete($fd.'@'.$key); | |
| } | |
| // 参照用の配列を作成して,ファイル数の分だけインデックスを初期化 | |
| $aryPath = array(); | |
| $aryName = array(); | |
| $aryOriginalName = array(); | |
| $aryDownloadName = array(); | |
| $arySize = array(); | |
| $arySecret = array(); | |
| foreach ( $aryC as $c ) { | |
| $aryPath[] = $aryName[] = $aryOriginalName[] = $aryDownloadName[] = $arySize[] = $arySecret[] = ''; | |
| } | |
| $cnt = count($aryPath); | |
| for ( $i=0; $i<$cnt; $i++ ) { | |
| $c = $aryC[$i]; | |
| // 各配列のインデックス位置を,ローカル変数に参照させる | |
| $_path =& $aryPath[$i]; | |
| $_name =& $aryName[$i]; | |
| $_orginal_name =& $aryOriginalName[$i]; | |
| $_download_name =& $aryDownloadName[$i]; | |
| $_size =& $arySize[$i]; | |
| $_secret=& $arySecret[$i]; | |
| $pattern = '@'.REVISON_ARCHIVES_DIR.'@'; | |
| $c['old'] = preg_replace($pattern, '', $c['old'], 1); | |
| //------------- | |
| // rawfilename | |
| if ( preg_match('/^@(.*)$/', $c['filename'], $match) ) { | |
| $c['filename'] = ('rawfilename' == $match[1]) ? date('Ym') . '/' . $c['_name'] : ''; | |
| } | |
| //------------------------------------ | |
| // security check ( nullバイトチェック ) | |
| if ( $c['old'] !== ltrim($c['old']) ) { continue; } | |
| if ( $c['filename'] !== ltrim($c['filename']) ) { continue; } | |
| //------------------------------------------------------------- | |
| // パスの半正規化 ( directory traversal対策・バイナリセーフ関数を使用 ) | |
| // この時点で //+ や ^/ は 混入する可能性はあるが無害とみなす | |
| $c['old'] = preg_replace('/\.+\/+/', '', $c['old']); | |
| $c['filename'] = preg_replace('/\.+\/+/', '', $c['filename']); | |
| //--------------------------------------------- | |
| // 例外的無視ファイル | |
| // pathの終端(ファイル名)が特定の場合にリジェクトする | |
| if ( !!preg_match('/\.htaccess$/', $c['filename']) ) { continue; } | |
| //--------------------- | |
| // シークレットチェック | |
| $secretCheck = ( 1 | |
| and !DEBUG_MODE | |
| and !sessionWithContribution() | |
| and !empty($c['old']) | |
| and ( 0 | |
| or 'delete' == $c['edit'] | |
| or !empty($c['_tmp_name']) | |
| ) | |
| ) ? ($c['secret'] == md5($fd.'@'.$c['old'])) : true; | |
| //---------------------------- | |
| // delete ( 指定削除 continue ) | |
| if ( 'delete' == $c['edit'] and !empty($c['old']) and $secretCheck and empty($tmpMedia) ) { | |
| Storage::remove($ARCHIVES_DIR.$c['old']); | |
| if ( HOOK_ENABLE ) { | |
| $Hook = ACMS_Hook::singleton(); | |
| $Hook->call('mediaDelete', $ARCHIVES_DIR.$c['old']); | |
| } | |
| continue; | |
| } | |
| //-------- | |
| // upload | |
| if ( !empty($c['_tmp_name']) and $secretCheck ) { | |
| $tmp_name = $c['_tmp_name']; | |
| if ( !is_uploaded_file($tmp_name) ) { continue; } | |
| // 拡張子がなければリジェクト | |
| if ( !preg_match('@\.([^.]+)$@', $c['_name'], $match) ) { continue; } | |
| // テキストファイル(=PHPなどのスクリプトファイル)判定 | |
| // ファイルの先頭1000行を取得 | |
| // 文字コードが判別不能な文字列をバイナリとみなす | |
| if ( 'on' == config('file_prohibit_textfile') ) { | |
| $fp = fopen($c['_tmp_name'], 'rb'); | |
| $readedLine = 0; | |
| $sampleLine = 1000; | |
| $sample = ''; | |
| while ( ($line = fgets($fp, 4096)) !== false ) { | |
| if ( $readedLine++ > $sampleLine ) { break; } | |
| $sample .= $line; | |
| } | |
| fclose($fp); | |
| // @todo security: | |
| // mb_detect_encodingを利用しているが、これはUTF-16を判定できないため、バイナリファイルと見なしてしまう | |
| // 冒頭をUTF-16、以後をUTF-8にすることで不正なテキストファイルをarchivesにアップロードできる可能性がある | |
| // ただし、htaccessをいじられたりしない限りは基本的に問題にならない(通常はPHP等として実行できない) | |
| if ( false !== detectEncode($sample) ) { continue; } | |
| } | |
| //------------------------------ | |
| // dirname, basename, extension | |
| // アップロードされた実ファイルの拡張子が実質的に利用される | |
| // extensionオプションや、filenameオプションの制限は、 | |
| // 意図する拡張子のファイルがアップロードされているかのチェックのみに使われる | |
| // 実ファイルの拡張子 | |
| $extension = $match[1]; | |
| if ( !empty($c['filename']) ) { | |
| if ( !preg_match('@((?:[^/]*/)*)((?:[^.]*\.)*)(.*)$@', sprintf('%03d', BID).'/'.$c['filename'], $match) ) { | |
| trigger_error('unknown', E_USER_ERROR); | |
| } | |
| // @filenameオプションの拡張子 | |
| $c['filename_extension'] = $match[3]; | |
| // @filenameオプションの指定内に拡張子がないと,ファイル名とファイル名の拡張子が同一になる | @todo issue: 先行する正規表現を改善する | |
| // ディレクトリのみでファイル名は無指定の場合は、拡張子が空になる | |
| // => ファイル名拡張子でチェックする意図がないものとして、filename_extensionをunsetし、以降の拡張子チェックから除外する | |
| if ( $c['filename'] === $c['filename_extension'] || empty($c['filename_extension']) ) { | |
| unset($c['filename_extension']); | |
| } | |
| $dirname = $match[1]; | |
| $basename = !empty($match[2]) ? $match[2].$extension // basenameは実ファイルの拡張子とする | |
| : uniqueString().'.'.$extension; | |
| } else { | |
| $dirname = Storage::archivesDir(); | |
| $basename = uniqueString().'.'.$extension; | |
| } | |
| if ( 1 | |
| // "実ファイルの拡張子" が "アップロード許可拡張子コンフィグ" に含まれていること | |
| and in_array($extension, $allow_file_extensions) | |
| // 拡張子指定オプションが空でなければ... | |
| and ( empty($c['extension']) or | |
| ( | |
| // "拡張子指定オプション" が "アップロード許可拡張子コンフィグ" に含まれていること | |
| array_in_array($c['extension'], $allow_file_extensions) | |
| // さらに,"拡張子指定オプション" と "実ファイルの拡張子" が一致すること | |
| and in_array($extension, $c['extension'])) | |
| ) | |
| // ファイル名オプションの拡張子が未定義でなければ... | |
| and ( !isset($c['filename_extension']) or | |
| ( | |
| // "ファイル名オプションの拡張子" が "アップロード許可拡張子コンフィグ" に含まれていること | |
| in_array($c['filename_extension'], $allow_file_extensions)) | |
| // さらに,"ファイル名オプションの拡張子" と "実ファイルの拡張子" が一致すること | |
| and $c['filename_extension'] === $extension | |
| ) | |
| // 保存先ディレクトリの再帰的作成 | |
| and Storage::makeDirectory($ARCHIVES_DIR.$dirname) | |
| ) { | |
| //--------------------------- | |
| // delete ( 古いファイルの削除 ) | |
| if ( !empty($c['old']) && empty($tmpMedia) ) { | |
| Storage::remove($ARCHIVES_DIR.$c['old']); | |
| if ( HOOK_ENABLE ) { | |
| $Hook = ACMS_Hook::singleton(); | |
| $Hook->call('mediaDelete', $ARCHIVES_DIR.$c['old']); | |
| } | |
| } | |
| //------ | |
| // copy | |
| $path = $dirname.$basename; | |
| $realpath = $ARCHIVES_DIR.$path; | |
| // 重複対応 | |
| $realpath = Storage::uniqueFilePath($realpath); | |
| $path = mb_substr($realpath, strlen($ARCHIVES_DIR)); | |
| Storage::copy($tmp_name, $realpath); | |
| $tmpMedia[] = array( | |
| 'path' => $realpath, | |
| ); | |
| if ( HOOK_ENABLE ) { | |
| $Hook = ACMS_Hook::singleton(); | |
| $Hook->call('mediaCreate', $realpath); | |
| } | |
| //----- | |
| // set | |
| $_path = $path; | |
| $_name = Storage::mbBasename($realpath); | |
| $_orginal_name = $c['_name']; | |
| $_download_name = $c['downloadName']; | |
| $_size = filesize($realpath); | |
| $_secret= md5($fd.'@'.$path); | |
| continue; | |
| } else { | |
| $Field->setMethod($fd, 'inValidFile', false); | |
| } | |
| } | |
| //----- | |
| // old | |
| if ( !empty($c['old']) ) { | |
| $_path = $c['old']; | |
| $_name = $c['filename']; | |
| $_orginal_name = $c['originalName']; | |
| $_download_name = $c['downloadName']; | |
| $_size = $c['fileSize']; | |
| $_secret= $c['secret']; | |
| continue; | |
| } | |
| } | |
| //----------- | |
| // set field | |
| $Field->setField($fd.'@path', $aryPath); | |
| $Field->setField($fd.'@baseName', $aryName); | |
| $Field->setField($fd.'@fileSize', $arySize); | |
| $Field->setField($fd.'@secret', $arySecret); | |
| $Field->setField($fd.'@originalName', $aryOriginalName); | |
| $Field->setField($fd.'@downloadName', $aryDownloadName); | |
| //------------ | |
| // validation | |
| $key = $fd.'@path'; | |
| foreach ( $this->Post->listFields() as $_fd ) { | |
| if ( preg_match('/^'.$key.':(?:v#|validator#)(.+)$/', $_fd, $match) ) { | |
| $method = $match[1]; | |
| $Field->setMethod($key, $method, $this->Post->get($_fd)); | |
| $this->Post->delete($_fd); | |
| } | |
| } | |
| } | |
| continue; | |
| } | |
| } | |
| //-------- | |
| // search | |
| foreach ( $Field->listFields() as $fd ) { | |
| // topic-fix_field_search: Field::getがnullを返さなくなっていたので,無指定時の戻りを擬似定数に変更して対処 | |
| $s = $this->Post->get($fd.':search', '__NOT_SPECIFIED__'); | |
| if ( $s === '__NOT_SPECIFIED__' ) { | |
| if ( is_int(strpos($fd, '@')) ) { | |
| $s = '0'; | |
| } else { | |
| $s = '1'; | |
| } | |
| } | |
| $Field->setMeta($fd, 'search', !empty($s)); | |
| $this->Post->deleteField($fd.':search'); | |
| } | |
| $Field->validate($V); | |
| return $Field; | |
| } | |
| /** | |
| * @return array | |
| */ | |
| public function getJsModules() | |
| { | |
| $Session =& Field::singleton('session'); | |
| $delStorage = $Session->get('webStorageDeleteKey'); | |
| jsModule('offset', DIR_OFFSET); | |
| jsModule('jsDir', JS_DIR); | |
| jsModule('themesDir', '/'.DIR_OFFSET.THEMES_DIR); | |
| jsModule('bid', BID); | |
| jsModule('aid', AID); | |
| jsModule('uid', UID); | |
| jsModule('cid', CID); | |
| jsModule('eid', EID); | |
| jsModule('bcd', ACMS_RAM::blogCode(BID)); | |
| jsModule('rid', $this->Get->get('rid', null)); | |
| jsModule('mid', $this->Get->get('mid', null)); | |
| jsModule('setid', $this->Get->get('setid', null)); | |
| jsModule('layout', LAYOUT_EDIT); | |
| jsModule('yahooApiKey', config('yahoo_search_api_key')); | |
| jsModule('googleApiKey', config('google_api_key')); | |
| jsModule('jQuery', config('jquery_version')); | |
| jsModule('jQueryMigrate', config('jquery_migrate', 'off')); | |
| jsModule('delStorage', $delStorage); | |
| jsModule('fulltimeSSL', (SSL_ENABLE and FULLTIME_SSL_ENABLE) ? 1 : 0); | |
| jsModule('v', md5(VERSION)); | |
| jsModule('dbCharset', DB_CONNECTION_CHARSET); | |
| jsModule('auth', ACMS_RAM::userAuth(SUID)); | |
| jsModule('umfs', ini_get('upload_max_filesize')); | |
| jsModule('pms', ini_get('post_max_size')); | |
| jsModule('mfu', ini_get('max_file_uploads')); | |
| jsModule('lgImg', config('image_size_large_criterion').':'.preg_replace('/[^0-9]/', '', config('image_size_large'))); | |
| jsModule('jpegQuality', config('image_jpeg_quality', 85)); | |
| jsModule('mediaLibrary', config('media_library')); | |
| jsModule('edition', LICENSE_EDITION); | |
| jsModule('urlPreviewExpire', config('url_preview_expire')); | |
| jsModule('timemachinePreviewDefaultDevice', config('timemachine_preview_default_device')); | |
| if ($Session->get('timemachine_datetime')) { | |
| jsModule('timeMachineMode', 'true'); | |
| } | |
| if (sessionWithAdministration()) { | |
| jsModule('rootTpl', ROOT_TPL); | |
| } | |
| $Session->delete('webStorageDeleteKey'); | |
| //-------------- | |
| // multi domain | |
| jsModule('multiDomain', '0'); | |
| if (defined('LICENSE_OPTION_PLUSDOMAIN') && intval(LICENSE_OPTION_PLUSDOMAIN) > 0) { | |
| $SQL = SQL::newSelect('blog'); | |
| $SQL->setSelect('DISTINCT blog_domain', 'domains', null,'COUNT'); | |
| $domain_num = DB::query($SQL->get(dsn()), 'one'); | |
| if (intval($domain_num) > 1) { | |
| jsModule('multiDomain', '1'); | |
| } | |
| } | |
| //---------- | |
| // category | |
| if ( $cid = CID ) { | |
| $ccds = array(ACMS_RAM::categoryCode($cid)); | |
| while ( $cid = ACMS_RAM::categoryParent($cid) ) { | |
| if ( 'on' == ACMS_RAM::categoryIndexing($cid) ) { | |
| $ccds[] = ACMS_RAM::categoryCode($cid); | |
| } | |
| } | |
| jsModule('ccd', join('/', array_reverse($ccds))); | |
| } | |
| //--------- | |
| // session | |
| jsModule('admin', ADMIN); | |
| jsModule('rid', RID); | |
| jsModule('ecd', ACMS_RAM::entryCode(EID)); | |
| jsModule('keyword', htmlspecialchars(str_replace(' ', ' ', KEYWORD), ENT_QUOTES)); | |
| jsModule('scriptRoot', '/'.DIR_OFFSET.(REWRITE_ENABLE ? '' : SCRIPT_FILENAME.'/')); | |
| //------- | |
| // cache | |
| if ( config('javascript_nocache') === 'on' ) { | |
| jsModule('cache', uniqueString()); | |
| } | |
| $jsModules = array(); | |
| foreach ( jsModule() as $key => $value ) { | |
| if ( empty($value) ) continue; | |
| if ( $key === 'domains' ) { | |
| $value = implode(',', $value); | |
| } | |
| $jsModules[] = $key.(!is_bool($value) ? '='.$value : ''); | |
| } | |
| return $jsModules; | |
| } | |
| /** | |
| * a-blog cms で管理しているドメインのURLかチェックする | |
| * | |
| * @param string $url | |
| * @return bool | |
| */ | |
| public function isSafeUrl($url) | |
| { | |
| if (0 !== strpos($url, 'http')) { | |
| return true; | |
| } | |
| $sql = SQL::newSelect('blog'); | |
| $sql->setSelect('DISTINCT blog_domain'); | |
| $domains = DB::query($sql->get(dsn()), 'list'); | |
| $sql = SQL::newSelect('alias'); | |
| $sql->setSelect('DISTINCT alias_domain'); | |
| $domains = array_merge($domains, DB::query($sql->get(dsn()), 'list')); | |
| $host = parse_url($url, PHP_URL_HOST); | |
| if (in_array($host, $domains)) { | |
| return true; | |
| } | |
| return false; | |
| } | |
| /** | |
| * データが壊れたserializeデータをunserialize | |
| * | |
| * @link https://stackoverflow.com/questions/3148712/regex-code-to-fix-corrupt-serialized-php-data | |
| * @param $txt | |
| * @return string | |
| */ | |
| public function safeUnSerialize($txt) | |
| { | |
| $unSerialized = @unserialize($txt); | |
| //In case of failure let's try to repair it | |
| if(!$unSerialized){ | |
| $repairedSerialization = $this->fixSerialized($txt); | |
| $unSerialized = @unserialize($repairedSerialization); | |
| } | |
| return $unSerialized; | |
| } | |
| /** | |
| * @param $data | |
| */ | |
| public function responseJson($data) | |
| { | |
| header('Content-Type: application/json; charset=utf-8'); | |
| echo(json_encode($data)); | |
| die(); | |
| } | |
| /** | |
| * @param string $lockKey | |
| */ | |
| public function logLockPost($lockKey) | |
| { | |
| if (empty($lockKey)) { | |
| return; | |
| } | |
| $sql = SQL::newInsert('lock_source'); | |
| $sql->addInsert('lock_source_key', $lockKey); | |
| $sql->addInsert('lock_source_address', REMOTE_ADDR); | |
| $sql->addInsert('lock_source_datetime', date('Y-m-d H:i:s', REQUEST_TIME)); | |
| DB::query($sql->get(dsn()), 'exec'); | |
| } | |
| /** | |
| * @param string $lockKey | |
| * @param int $trialTime 試行時間 | |
| * @param int $trialNumber 試行回数 | |
| * @param int $lockTime ロックタイム | |
| * @param bool $remoteAddr 接続元IPアドレスをチェックするかどうか | |
| * @return bool | |
| */ | |
| public function validateLockPost($lockKey, $trialTime = 5, $trialNumber = 5, $lockTime = 15, $remoteAddr = true) | |
| { | |
| // 秒に変換 | |
| $trialTime = $trialTime * 60; | |
| $lockTime = $lockTime * 60; | |
| // ロックされているか判定 | |
| $sql = SQL::newSelect('lock'); | |
| $sql->addWhereOpr('lock_key', $lockKey); | |
| if ($remoteAddr) { | |
| $sql->addWhereOpr('lock_address', REMOTE_ADDR); | |
| } | |
| $sql->addWhereOpr('lock_datetime', date('Y-m-d H:i:s', REQUEST_TIME - $lockTime), '>'); | |
| if (DB::query($sql->get(dsn()), 'one')) { | |
| return false; | |
| } | |
| $sql = SQL::newSelect('lock_source'); | |
| $sql->addSelect('*', 'trialCount', null, 'COUNT'); | |
| $sql->addWhereOpr('lock_source_key', $lockKey); | |
| if ($remoteAddr) { | |
| $sql->addWhereOpr('lock_source_address', REMOTE_ADDR); | |
| } | |
| $sql->addWhereOpr('lock_source_datetime', date('Y-m-d H:i:s', REQUEST_TIME - $trialTime), '>'); | |
| $trialCount = DB::query($sql->get(dsn()), 'one'); | |
| if ($trialCount >= $trialNumber) { | |
| // 試行回数を超えたのでロック | |
| $sql = SQL::newInsert('lock'); | |
| $sql->addInsert('lock_key', $lockKey); | |
| $sql->addInsert('lock_datetime', date('Y-m-d H:i:s', REQUEST_TIME)); | |
| $sql->addInsert('lock_address', REMOTE_ADDR); | |
| DB::query($sql->get(dsn()), 'exec'); | |
| $sql = SQL::newDelete('lock_source'); | |
| $sql->addWhereOpr('lock_source_key', $lockKey); | |
| if ($remoteAddr) { | |
| $sql->addWhereOpr('lock_source_address', REMOTE_ADDR); | |
| } | |
| DB::query($sql->get(dsn()), 'exec'); | |
| userErrorLog('ACMS Warning: Account Lock: ' . REMOTE_ADDR . ':' . $_SERVER['HTTP_USER_AGENT'] . ':' . $_SERVER['HTTP_REFERER']); | |
| return false; | |
| } | |
| $sql = SQL::newDelete('lock'); | |
| $sql->addWhereOpr('lock_key', $lockKey); | |
| if ($remoteAddr) { | |
| $sql->addWhereOpr('lock_address', REMOTE_ADDR); | |
| } | |
| DB::query($sql->get(dsn()), 'exec'); | |
| // 1ヶ月前のログは削除 | |
| $sql = SQL::newDelete('lock_source'); | |
| $sql->addWhereOpr('lock_source_datetime', date('Y-m-d H:i:s', REQUEST_TIME - 2764800), '<'); | |
| DB::query($sql->get(dsn()), 'exec'); | |
| return true; | |
| } | |
| /** | |
| * @param $str | |
| * @return string | |
| */ | |
| public function camelize($str) | |
| { | |
| return lcfirst(strtr(ucwords(strtr($str, array('_' => ' '))), array(' ' => ''))); | |
| } | |
| protected function fixSerialized($string) | |
| { | |
| // securities | |
| if ( !preg_match('/^[aOs]:/', $string) ) return $string; | |
| if ( @unserialize($string) !== false ) return $string; | |
| $string = preg_replace("%\n%", "", $string); | |
| // doublequote exploding | |
| $data = preg_replace('%";%', "µµµ", $string); | |
| $tab = explode("µµµ", $data); | |
| $new_data = ''; | |
| foreach ($tab as $line) { | |
| $new_data .= preg_replace_callback('%\bs:(\d+):"(.*)%', function($matches) { | |
| $string = $matches[2]; | |
| $right_length = strlen($string); // yes, strlen even for UTF-8 characters, PHP wants the mem size, not the char count | |
| return 's:' . $right_length . ':"' . $string . '";'; | |
| }, $line); | |
| } | |
| return $new_data; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment