示例#1
0
文件: ttml.php 项目: ragi79/Textcube
function FM_TTML_bindAttachments($entryId, $folderPath, $folderURL, $content, $useAbsolutePath = false, $bRssMode = false)
{
    $context = Model_Context::getInstance();
    requireModel('blog.attachment');
    $blogid = getBlogId();
    getAttachments($blogid, $entryId);
    // For attachment caching.
    $view = str_replace('[##_ATTACH_PATH_##]', $useAbsolutePath ? $context->getProperty('uri.service') . "/attach/{$blogid}" : $folderURL, $content);
    $view = str_replace('http://tt_attach_path/', $useAbsolutePath ? $context->getProperty('uri.service') . "/attach/{$blogid}/" : $folderURL . '/', $view);
    $count = 0;
    $bWritedGalleryJS = false;
    while (($start = strpos($view, '[##_')) !== false && ($end = strpos($view, '_##]', $start + 4)) !== false) {
        $count++;
        $attributes = explode('|', substr($view, $start + 4, $end - $start - 4));
        $prefix = '';
        $buf = '';
        if ($attributes[0] == 'Gallery') {
            if (count($attributes) % 2 == 1) {
                array_pop($attributes);
            }
            if (defined('__TEXTCUBE_MOBILE__') || defined('__TEXTCUBE_IPHONE__')) {
                $images = array_slice($attributes, 1, count($attributes) - 2);
                for ($i = 0; $i < count($images); $i++) {
                    if (!empty($images[$i])) {
                        if ($i % 2 == 0) {
                            $buf .= '<div align="center">' . FM_TTML_getAttachmentBinder($images[$i], '', $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode) . '</div>';
                        } else {
                            if (strlen($images[$i]) > 0) {
                                $buf .= "<div align=\"center\">{$images[$i]}</div>";
                            }
                        }
                    }
                }
            } else {
                if ($bRssMode == true) {
                    $items = array();
                    for ($i = 1; $i < sizeof($attributes) - 2; $i += 2) {
                        array_push($items, array($attributes[$i], $attributes[$i + 1]));
                    }
                    $galleryAttributes = Misc::getAttributesFromString($attributes[sizeof($attributes) - 1]);
                    $images = array_slice($attributes, 1, count($attributes) - 2);
                    for ($i = 0; $i < count($images); $i++) {
                        if (!empty($images[$i])) {
                            if ($i % 2 == 0) {
                                $setWidth = $setHeight = 0;
                                if (list($width, $height) = @getimagesize("{$folderPath}/{$images[$i]}")) {
                                    $setWidth = $width;
                                    $setHeight = $height;
                                    if (isset($galleryAttributes['width']) && $galleryAttributes['width'] < $setWidth) {
                                        $setHeight = $setHeight * $galleryAttributes['width'] / $setWidth;
                                        $setWidth = $galleryAttributes['width'];
                                    }
                                    if (isset($galleryAttributes['height']) && $galleryAttributes['height'] < $setHeight) {
                                        $setWidth = $setWidth * $galleryAttributes['height'] / $setHeight;
                                        $setHeight = $galleryAttributes['height'];
                                    }
                                    if (intval($setWidth > 0) && intval($setHeight) > 0) {
                                        $tempProperty = 'width="' . intval($setWidth) . '" height="' . intval($setHeight) . '"';
                                    } else {
                                        $tempProperty = '';
                                    }
                                    $buf .= '<div align="center">' . FM_TTML_getAttachmentBinder($images[$i], $tempProperty, $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode) . '</div>';
                                }
                            } else {
                                if (strlen($images[$i]) > 0) {
                                    $buf .= "<div align=\"center\">{$images[$i]}</div>";
                                }
                            }
                        }
                    }
                } else {
                    $id = "gallery{$entryId}{$count}";
                    $cssId = "tt-gallery-{$entryId}-{$count}";
                    $contentWidth = Misc::getContentWidth();
                    $items = array();
                    for ($i = 1; $i < sizeof($attributes) - 2; $i += 2) {
                        array_push($items, array($attributes[$i], $attributes[$i + 1]));
                    }
                    $galleryAttributes = Misc::getAttributesFromString($attributes[sizeof($attributes) - 1]);
                    if (!isset($galleryAttributes['width'])) {
                        $galleryAttributes['width'] = $contentWidth;
                    }
                    if (!isset($galleryAttributes['height'])) {
                        $galleryAttributes['height'] = 3 / 4 * $galleryAttributes['width'];
                    }
                    if ($galleryAttributes['width'] > $contentWidth) {
                        $galleryAttributes['height'] = $galleryAttributes['height'] * $contentWidth / $galleryAttributes['width'];
                        $galleryAttributes['width'] = $contentWidth;
                    }
                    if ($useAbsolutePath == true && $bWritedGalleryJS == false) {
                        $bWritedGalleryJS = true;
                        $buf .= printScript('gallery.js');
                    }
                    $buf .= CRLF . '<div id="' . $cssId . '" class="tt-gallery-box">' . CRLF;
                    $buf .= '	<script type="text/javascript">' . CRLF;
                    $buf .= '		//<![CDATA[' . CRLF;
                    $buf .= "\t\t\tvar {$id} = new TTGallery(\"{$cssId}\");" . CRLF;
                    $buf .= "\t\t\t{$id}.prevText = \"" . _text('이전 이미지 보기') . "\"; " . CRLF;
                    $buf .= "\t\t\t{$id}.nextText = \"" . _text('다음 이미지 보기') . "\"; " . CRLF;
                    $buf .= "\t\t\t{$id}.enlargeText = \"" . _text('원본 크기로 보기') . "\"; " . CRLF;
                    $buf .= "\t\t\t{$id}.altText = \"" . _text('갤러리 이미지') . "\"; " . CRLF;
                    foreach ($items as $item) {
                        $setWidth = $setHeight = 0;
                        if (list($width, $height) = @getimagesize("{$folderPath}/{$item['0']}")) {
                            $setWidth = $width;
                            $setHeight = $height;
                            if (isset($galleryAttributes['width']) && $galleryAttributes['width'] < $setWidth) {
                                $setHeight = $setHeight * $galleryAttributes['width'] / $setWidth;
                                $setWidth = $galleryAttributes['width'];
                            }
                            if (isset($galleryAttributes['height']) && $galleryAttributes['height'] < $setHeight) {
                                $setWidth = $setWidth * $galleryAttributes['height'] / $setHeight;
                                $setHeight = $galleryAttributes['height'];
                            }
                            $item[1] = str_replace("'", '&#39;', $item[1]);
                            $buf .= $id . '.appendImage("' . ($useAbsolutePath ? $context->getProperty('uri.service') . "/attach/{$blogid}/{$item['0']}" : "{$folderURL}/{$item['0']}") . '", "' . htmlspecialchars($item[1]) . '", ' . intval($setWidth) . ', ' . intval($setHeight) . ");";
                        }
                    }
                    $buf .= "\t\t\t{$id}.show();" . CRLF;
                    $buf .= "\t\t//]]>" . CRLF;
                    $buf .= '	</script>' . CRLF;
                    $buf .= '	<noscript>' . CRLF;
                    foreach ($items as $item) {
                        $setWidth = $setHeight = 0;
                        if (list($width, $height) = @getimagesize("{$folderPath}/{$item['0']}")) {
                            $setWidth = $width;
                            $setHeight = $height;
                            if (isset($galleryAttributes['width']) && $galleryAttributes['width'] < $setWidth) {
                                $setHeight = $setHeight * $galleryAttributes['width'] / $setWidth;
                                $setWidth = $galleryAttributes['width'];
                            }
                            if (isset($galleryAttributes['height']) && $galleryAttributes['height'] < $setHeight) {
                                $setWidth = $setWidth * $galleryAttributes['height'] / $setHeight;
                                $setHeight = $galleryAttributes['height'];
                            }
                            $buf .= '<div class="imageblock center" style="text-align: center; clear: both;">';
                            if ($useAbsolutePath) {
                                $buf .= '		<img src="' . $context->getProperty('uri.service') . "/attach/" . $blogid . "/" . $item[0] . '" width="' . intval($setWidth) . '" height="' . intval($setHeight) . '" alt="' . _text('사용자 삽입 이미지') . '" />' . CRLF;
                            } else {
                                $buf .= '		<img src="' . $folderURL . "/" . $item[0] . '" width="' . intval($setWidth) . '" height="' . intval($setHeight) . '" alt="' . _text('사용자 삽입 이미지') . '" />' . CRLF;
                            }
                            if (!empty($item[1])) {
                                $buf .= '		<p class="cap1">' . $item[1] . '</p>' . CRLF;
                            }
                            $buf .= '</div>';
                        }
                    }
                    $buf .= '	</noscript>' . CRLF;
                    $buf .= '</div>' . CRLF;
                }
            }
        } else {
            if ($attributes[0] == 'iMazing') {
                if (defined('__TEXTCUBE_MOBILE__') || defined('__TEXTCUBE_IPHONE__') || $bRssMode == true) {
                    $images = array_slice($attributes, 1, count($attributes) - 3);
                    for ($i = 0; $i < count($images); $i += 2) {
                        if (!empty($images[$i])) {
                            $buf .= '<div>' . FM_TTML_getAttachmentBinder($images[$i], '', $folderPath, $folderURL, 1, $useAbsolutePath) . '</div>';
                        }
                    }
                    $buf .= $attributes[count($attributes) - 1];
                } else {
                    $params = Misc::getAttributesFromString($attributes[sizeof($attributes) - 2]);
                    $id = $entryId . $count;
                    $imgs = array_slice($attributes, 1, count($attributes) - 3);
                    $imgStr = '';
                    for ($i = 0; $i < count($imgs); $i += 2) {
                        if ($imgs[$i] != '') {
                            $imgStr .= $context->getProperty('service.path') . '/attach/' . $blogid . '/' . $imgs[$i];
                            if ($i < count($imgs) - 2) {
                                $imgStr .= '*!';
                            }
                        }
                    }
                    if (!empty($attributes[count($attributes) - 1])) {
                        $caption = '<p class="cap1">' . $attributes[count($attributes) - 1] . '</p>';
                    } else {
                        $caption = '';
                    }
                    $buf .= '<div style="clear: both; text-align: center"><img src="' . ($useAbsolutePath ? $context->getProperty('uri.service') : $context->getProperty('service.path')) . '/resources/image/gallery/gallery_enlarge.gif" alt="' . _text('확대') . '" style="cursor:pointer" onclick="openFullScreen(\'' . $context->getProperty('service.path') . '/iMazing?d=' . urlencode($id) . '&f=' . urlencode($params['frame']) . '&t=' . urlencode($params['transition']) . '&n=' . urlencode($params['navigation']) . '&si=' . urlencode($params['slideshowinterval']) . '&p=' . urlencode($params['page']) . '&a=' . urlencode($params['align']) . '&o=' . $blogid . '&i=' . $imgStr . '\',\'' . htmlspecialchars(str_replace("'", "&#39;", $attributes[count($attributes) - 1])) . '\',\'' . $context->getProperty('service.path') . '\')" />';
                    $buf .= '<div id="iMazingContainer' . $id . '" class="iMazingContainer" style="width:' . $params['width'] . 'px; height:' . $params['height'] . 'px;"></div><script type="text/javascript">//<![CDATA[' . CRLF;
                    $buf .= 'iMazing' . $id . 'Str = getEmbedCode(\'' . $context->getProperty('service.path') . '/resources/script/gallery/iMazing/main.swf\',\'100%\',\'100%\',\'iMazing' . $id . '\',\'#FFFFFF\',"image=' . $imgStr . '&amp;frame=' . $params['frame'] . '&amp;transition=' . $params['transition'] . '&amp;navigation=' . $params['navigation'] . '&amp;slideshowInterval=' . $params['slideshowinterval'] . '&amp;page=' . $params['page'] . '&amp;align=' . $params['align'] . '&amp;skinPath=' . $context->getProperty('service.path') . '/resources/script/gallery/iMazing/&amp;","false"); writeCode(iMazing' . $id . 'Str, "iMazingContainer' . $id . '");';
                    $buf .= '//]]></script><noscript>';
                    for ($i = 0; $i < count($imgs); $i += 2) {
                        $buf .= '<img src="' . ($useAbsolutePath ? $context->getProperty('uri.service') : $context->getProperty('service.path')) . '/attach/' . $blogid . '/' . $imgs[$i] . '" alt="" />';
                    }
                    $buf .= '</noscript>';
                    $buf .= $caption . '</div>';
                }
            } else {
                if ($attributes[0] == 'Jukebox') {
                    if (defined('__TEXTCUBE_MOBILE__') || defined('__TEXTCUBE_IPHONE__')) {
                        $sounds = array_slice($attributes, 1, count($attributes) - 3);
                        for ($i = 0; $i < count($sounds); $i += 2) {
                            if (!empty($sounds[$i])) {
                                echo "<a href=\"{$folderURL}/{$sounds[$i]}\">{$sounds[$i]}</a><br />";
                            }
                        }
                    } else {
                        $params = Misc::getAttributesFromString($attributes[sizeof($attributes) - 2]);
                        foreach ($params as $key => $value) {
                            if ($key == 'autoPlay') {
                                unset($params['autoplay']);
                                $params['autoplay'] = $value;
                            }
                        }
                        if ($params['visible'] == 1) {
                            $width = '250px';
                            $height = '27px';
                        } else {
                            $width = '0px';
                            $height = '0px';
                        }
                        $id = $entryId . $count;
                        $imgs = array_slice($attributes, 1, count($attributes) - 3);
                        $imgStr = '';
                        for ($i = 0; $i < count($imgs); $i++) {
                            if ($imgs[$i] == '') {
                                continue;
                            }
                            if ($i % 2 == 1) {
                                $imgStr .= urlencode($imgs[$i]) . '_*';
                                continue;
                            } else {
                                if ($i < count($imgs) - 1) {
                                    $imgStr .= $context->getProperty('service.path') . "/attach/{$blogid}/" . urlencode($imgs[$i]) . '*!';
                                }
                            }
                        }
                        if (!empty($attributes[count($attributes) - 1])) {
                            $caption = '<div class="cap1" style="text-align: center">' . $attributes[count($attributes) - 1] . '</div>';
                        } else {
                            $caption = '';
                        }
                        $buf .= '<div id="jukeBox' . $id . 'Div" style="margin-left: auto; margin-right: auto; width:' . $width . '; height:' . $height . ';"><div id="jukeBoxContainer' . $id . '" style="width:' . $width . '; height:' . $height . ';"></div>';
                        $buf .= '<script type="text/javascript">//<![CDATA[' . CRLF;
                        $buf .= 'writeCode(getEmbedCode(\'' . $context->getProperty('service.path') . '/resources/script/jukebox/flash/main.swf\',\'100%\',\'100%\',\'jukeBox' . $id . 'Flash\',\'#FFFFFF\',"sounds=' . $imgStr . '&amp;autoplay=' . $params['autoplay'] . '&amp;visible=' . $params['visible'] . '&amp;id=' . $id . '","false"), "jukeBoxContainer' . $id . '")';
                        $buf .= '//]]></script><noscript>';
                        for ($i = 0; $i < count($imgs); $i++) {
                            if ($i % 2 == 0) {
                                $buf .= '<a href="' . ($useAbsolutePath ? $context->getProperty('uri.service') : $context->getProperty('service.path')) . '/attach/' . $blogid . '/' . $imgs[$i] . '">';
                            } else {
                                $buf .= htmlspecialchars($imgs[$i]) . '</a><br/>';
                            }
                        }
                        $buf .= '</noscript>';
                        $buf .= '</div>';
                    }
                } else {
                    $contentWidth = Misc::getContentWidth();
                    switch (count($attributes)) {
                        case 4:
                            list($newProperty, $onclickFlag) = FM_TTML_createNewProperty($attributes[1], $contentWidth, $attributes[2]);
                            if (defined('__TEXTCUBE_MOBILE__') || defined('__TEXTCUBE_IPHONE__')) {
                                $buf = '<div>' . FM_TTML_getAttachmentBinder($attributes[1], $newProperty, $folderPath, $folderURL, 1, $useAbsolutePath) . "</div><div>{$attributes['3']}</div>";
                            } else {
                                if (trim($attributes[3]) == '') {
                                    $caption = '';
                                } else {
                                    $caption = '<p class="cap1">' . $attributes[3] . '</p>';
                                }
                                switch ($attributes[0]) {
                                    case '1L':
                                        $prefix = '<div class="imageblock left" style="float: left; margin-right: 10px;">';
                                        break;
                                    case '1R':
                                        $prefix = '<div class="imageblock right" style="float: right; margin-left: 10px;">';
                                        break;
                                    case '1C':
                                    default:
                                        $prefix = '<div class="imageblock center" style="text-align: center; clear: both;">';
                                        break;
                                }
                                $buf = $prefix . FM_TTML_getAttachmentBinder($attributes[1], $newProperty, $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode, $onclickFlag) . $caption . '</div>';
                            }
                            break;
                        case 7:
                            $eachImageWidth = floor(($contentWidth - 5 * 3) / 2);
                            list($newProperty1, $onclickFlag1) = FM_TTML_createNewProperty($attributes[1], $eachImageWidth, $attributes[2]);
                            list($newProperty2, $onclickFlag2) = FM_TTML_createNewProperty($attributes[4], $eachImageWidth, $attributes[5]);
                            if (defined('__TEXTCUBE_MOBILE__') || defined('__TEXTCUBE_IPHONE__')) {
                                $buf = '<div>' . FM_TTML_getAttachmentBinder($attributes[1], $newProperty1, $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode) . "</div><div>{$attributes['3']}</div>";
                                $buf .= '<div>' . FM_TTML_getAttachmentBinder($attributes[4], $newProperty2, $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode) . "</div><div>{$attributes['6']}</div>";
                            } else {
                                $cap1 = strlen(trim($attributes[3])) > 0 ? '<p class="cap1">' . $attributes[3] . '</p>' : '';
                                $cap2 = strlen(trim($attributes[6])) > 0 ? '<p class="cap1">' . $attributes[6] . '</p>' : '';
                                $buf = '<div class="imageblock dual" style="text-align: center;"><table cellspacing="5" cellpadding="0" border="0" style="margin: 0 auto;"><tr><td>' . FM_TTML_getAttachmentBinder($attributes[1], $newProperty1, $folderPath, $folderURL, 2, $useAbsolutePath, $bRssMode, $onclickFlag1) . $cap1 . '</td><td>' . FM_TTML_getAttachmentBinder($attributes[4], $newProperty2, $folderPath, $folderURL, 2, $useAbsolutePath, $bRssMode, $onclickFlag2) . $cap2 . '</td></tr></table></div>';
                            }
                            break;
                        case 10:
                            $eachImageWidth = floor(($contentWidth - 5 * 4) / 3);
                            list($newProperty1, $onclickFlag1) = FM_TTML_createNewProperty($attributes[1], $eachImageWidth, $attributes[2]);
                            list($newProperty2, $onclickFlag2) = FM_TTML_createNewProperty($attributes[4], $eachImageWidth, $attributes[5]);
                            list($newProperty3, $onclickFlag3) = FM_TTML_createNewProperty($attributes[7], $eachImageWidth, $attributes[8]);
                            if (defined('__TEXTCUBE_MOBILE__') || defined('__TEXTCUBE_IPHONE__')) {
                                $buf = '<div>' . FM_TTML_getAttachmentBinder($attributes[1], $newProperty1, $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode) . "</div><div>{$attributes['3']}</div>";
                                $buf .= '<div>' . FM_TTML_getAttachmentBinder($attributes[4], $newProperty2, $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode) . "</div><div>{$attributes['6']}</div>";
                                $buf .= '<div>' . FM_TTML_getAttachmentBinder($attributes[7], $newProperty3, $folderPath, $folderURL, 1, $useAbsolutePath, $bRssMode) . "</div><div>{$attributes['9']}</div>";
                            } else {
                                $cap1 = strlen(trim($attributes[3])) > 0 ? '<p class="cap1">' . $attributes[3] . '</p>' : '';
                                $cap2 = strlen(trim($attributes[6])) > 0 ? '<p class="cap1">' . $attributes[6] . '</p>' : '';
                                $cap3 = strlen(trim($attributes[9])) > 0 ? '<p class="cap1">' . $attributes[9] . '</p>' : '';
                                $buf = '<div class="imageblock triple" style="text-align: center"><table cellspacing="5" cellpadding="0" border="0" style="margin: 0 auto;"><tr><td>' . FM_TTML_getAttachmentBinder($attributes[1], $newProperty1, $folderPath, $folderURL, 3, $useAbsolutePath, $bRssMode, $onclickFlag1) . $cap1 . '</td><td>' . FM_TTML_getAttachmentBinder($attributes[4], $newProperty2, $folderPath, $folderURL, 3, $useAbsolutePath, $bRssMode, $onclickFlag2) . $cap2 . '</td><td>' . FM_TTML_getAttachmentBinder($attributes[7], $newProperty3, $folderPath, $folderURL, 3, $useAbsolutePath, $bRssMode, $onclickFlag3) . $cap3 . '</td></tr></table></div>';
                            }
                            break;
                            // 어디에도 해당되지 않을 경우 임시 태그를 되살림.
                        // 어디에도 해당되지 않을 경우 임시 태그를 되살림.
                        default:
                            $buf = '[###_###_###_' . implode('|', $attributes) . '_###_###_###]';
                            break;
                    }
                }
            }
        }
        $view = substr($view, 0, $start) . $buf . substr($view, $end + 4);
    }
    $view = preg_replace(array("@\\[###_###_###_@", "@_###_###_###\\]@"), array('[##_', '_##]'), $view);
    return $view;
}
$fileType = $uploadFile['type'];
$fileSize = $uploadFile['size'];
$callback = $_POST['callback'];
$opt = $_POST['opt'] || '';
function printScript($callback, $opt, $status, $message, $img = '')
{
    $json = array('status' => $status, 'message' => $message, 'data' => array('opt' => $opt, 'img' => $img));
    echo '<script type="text/javascript">parent.window.' . $callback . '(\'' . json_encode($json) . '\');</script>';
}
if (!empty($allow_mime[$fileType])) {
    if ($fileSize > $maxSize) {
        printScript($callback, $opt, -2, '上传的文件超过限制');
        return;
    }
    if ($uploadFile['error'] > 0) {
        printScript($callback, $opt, -3, 'Return Code:' . $uploadFile['error']);
        return;
    }
    $new_name = time() . '.' . pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
    $fullPath = $uploadPath . '/' . $new_name;
    if (file_exists($fullPath)) {
        printScript($callback, $opt, -4, '文件已经存在');
        return;
    }
    move_uploaded_file($uploadFile['tmp_name'], $fullPath);
    $img_info = array('filename' => $_FILES["file"]["name"], 'size' => $_FILES['file']['size'], 'type' => $_FILES['file']['type'], 'fullPath' => $fullPath);
    printScript($callback, $opt, 0, '上传成功', $img_info);
    return;
} else {
    printScript($callback, $opt, -1, '该文件类型不允许上传');
}