123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: function_attachment.php 28348 2012-02-28 06:16:29Z monkey $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- function attachtype($type, $returnval = 'html') {
- static $attachicons = array(
- 1 => 'unknown.gif',
- 2 => 'binary.gif',
- 3 => 'zip.gif',
- 4 => 'rar.gif',
- 5 => 'msoffice.gif',
- 6 => 'text.gif',
- 7 => 'html.gif',
- 8 => 'real.gif',
- 9 => 'av.gif',
- 10 => 'flash.gif',
- 11 => 'image.gif',
- 12 => 'pdf.gif',
- 13 => 'torrent.gif'
- );
- if(is_numeric($type)) {
- $typeid = $type;
- } else {
- if(preg_match("/bittorrent|^torrent\t/", $type)) {
- $typeid = 13;
- } elseif(preg_match("/pdf|^pdf\t/", $type)) {
- $typeid = 12;
- } elseif(preg_match("/image|^(jpg|gif|png|bmp)\t/", $type)) {
- $typeid = 11;
- } elseif(preg_match("/flash|^(swf|fla|flv|swi)\t/", $type)) {
- $typeid = 10;
- } elseif(preg_match("/audio|video|^(wav|mid|mp3|m3u|wma|asf|asx|vqf|mpg|mpeg|avi|wmv)\t/", $type)) {
- $typeid = 9;
- } elseif(preg_match("/real|^(ra|rm|rv)\t/", $type)) {
- $typeid = 8;
- } elseif(preg_match("/htm|^(php|js|pl|cgi|asp)\t/", $type)) {
- $typeid = 7;
- } elseif(preg_match("/text|^(txt|rtf|wri|chm)\t/", $type)) {
- $typeid = 6;
- } elseif(preg_match("/word|powerpoint|^(doc|ppt)\t/", $type)) {
- $typeid = 5;
- } elseif(preg_match("/^rar\t/", $type)) {
- $typeid = 4;
- } elseif(preg_match("/compressed|^(zip|arj|arc|cab|lzh|lha|tar|gz)\t/", $type)) {
- $typeid = 3;
- } elseif(preg_match("/octet-stream|^(exe|com|bat|dll)\t/", $type)) {
- $typeid = 2;
- } elseif($type) {
- $typeid = 1;
- } else {
- $typeid = 0;
- }
- }
- if($returnval == 'html') {
- return '<img src="'.STATICURL.'image/filetype/'.$attachicons[$typeid].'" border="0" class="vm" alt="" />';
- } elseif($returnval == 'id') {
- return $typeid;
- }
- }
- function parseattach($attachpids, $attachtags, &$postlist, $skipaids = array()) {
- global $_G;
- if(!$attachpids) {
- return;
- }
- $attachpids = is_array($attachpids) ? $attachpids : array($attachpids);
- $attachexists = FALSE;
- $skipattachcode = $aids = $payaids = $findattach = array();
- foreach(C::t('forum_attachment_n')->fetch_all_by_id('tid:'.$_G['tid'], 'pid', $attachpids) as $attach) {
- $attachexists = TRUE;
- if($skipaids && in_array($attach['aid'], $skipaids)) {
- $skipattachcode[$attach[pid]][] = "/\[attach\]$attach[aid]\[\/attach\]/i";
- continue;
- }
- $attached = 0;
- $extension = strtolower(fileext($attach['filename']));
- $attach['ext'] = $extension;
- $attach['imgalt'] = $attach['isimage'] ? strip_tags(str_replace('"', '\"', $attach['description'] ? $attach['description'] : $attach['filename'])) : '';
- $attach['attachicon'] = attachtype($extension."\t".$attach['filetype']);
- $attach['attachsize'] = sizecount($attach['filesize']);
- if($attach['isimage'] && !$_G['setting']['attachimgpost']) {
- $attach['isimage'] = 0;
- }
- $attach['attachimg'] = $attach['isimage'] && (!$attach['readperm'] || $_G['group']['readaccess'] >= $attach['readperm']) ? 1 : 0;
- if($attach['attachimg']) {
- $GLOBALS['aimgs'][$attach['pid']][] = $attach['aid'];
- }
- if($attach['price']) {
- if($_G['setting']['maxchargespan'] && TIMESTAMP - $attach['dateline'] >= $_G['setting']['maxchargespan'] * 3600) {
- C::t('forum_attachment_n')->update('tid:'.$_G['tid'], $attach['aid'], array('price' => 0));
- $attach['price'] = 0;
- } elseif(!$_G['forum_attachmentdown'] && $_G['uid'] != $attach['uid']) {
- $payaids[$attach['aid']] = $attach['pid'];
- }
- }
- $attach['payed'] = $_G['forum_attachmentdown'] || $_G['uid'] == $attach['uid'] ? 1 : 0;
- $attach['url'] = ($attach['remote'] ? $_G['setting']['ftp']['attachurl'] : $_G['setting']['attachurl']).'forum/';
- $attach['dbdateline'] = $attach['dateline'];
- $attach['dateline'] = dgmdate($attach['dateline'], 'u');
- $hideattachs = $_G['adminid'] != 1 && $_G['setting']['bannedmessages'] & 1 && (($postlist[$attach['pid']]['authorid'] && !$postlist[$attach['pid']]['username'])
- || ($postlist[$attach['pid']]['groupid'] == 4 || $postlist[$attach['pid']]['groupid'] == 5) || $postlist[$attach['pid']]['status'] == -1 || $postlist[$attach['pid']]['memberstatus'])
- || $_G['adminid'] != 1 && $postlist[$attach['pid']]['status'] & 1 || $postlist[$attach['pid']]['first'] && $_G['forum_threadpay'];
- if(!$hideattachs) {
- $postlist[$attach['pid']]['attachments'][$attach['aid']] = $attach;
- }
- if(!defined('IN_MOBILE_API') && !empty($attachtags[$attach['pid']]) && is_array($attachtags[$attach['pid']]) && in_array($attach['aid'], $attachtags[$attach['pid']])) {
- $findattach[$attach['pid']][$attach['aid']] = "/\[attach\]$attach[aid]\[\/attach\]/i";
- $attached = 1;
- }
- if(!$attached) {
- if($attach['isimage']) {
- if(!$hideattachs) {
- $postlist[$attach['pid']]['imagelist'][] = $attach['aid'];
- $postlist[$attach['pid']]['imagelistcount']++;
- }
- if($postlist[$attach['pid']]['first']) {
- $GLOBALS['firstimgs'][] = $attach['aid'];
- }
- } else {
- if(!$hideattachs && (!$_G['forum_skipaidlist'] || !in_array($attach['aid'], $_G['forum_skipaidlist']))) {
- $postlist[$attach['pid']]['attachlist'][] = $attach['aid'];
- }
- }
- }
- $aids[] = $attach['aid'];
- }
- if($aids) {
- $attachs = C::t('forum_attachment')->fetch_all($aids);
- foreach($attachs as $aid => $attach) {
- if($postlist[$attach['pid']]) {
- $postlist[$attach['pid']]['attachments'][$attach['aid']]['downloads'] = $attach['downloads'];
- }
- }
- }
- if($payaids) {
- foreach(C::t('common_credit_log')->fetch_all_by_uid_operation_relatedid($_G['uid'], 'BAC', array_keys($payaids)) as $creditlog) {
- $postlist[$payaids[$creditlog['relatedid']]]['attachments'][$creditlog['relatedid']]['payed'] = 1;
- }
- }
- if(!empty($skipattachcode)) {
- foreach($skipattachcode as $pid => $findskipattach) {
- foreach($findskipattach as $findskip) {
- $postlist[$pid]['message'] = preg_replace($findskip, '', $postlist[$pid]['message']);
- }
- }
- }
- if($attachexists) {
- foreach($attachtags as $pid => $aids) {
- if($findattach[$pid]) {
- foreach($findattach[$pid] as $aid => $find) {
- $postlist[$pid]['message'] = preg_replace($find, attachinpost($postlist[$pid]['attachments'][$aid], $postlist[$pid]), $postlist[$pid]['message'], 1);
- $postlist[$pid]['message'] = preg_replace($find, '', $postlist[$pid]['message']);
- }
- }
- }
- } else {
- loadcache('posttableids');
- $posttableids = $_G['cache']['posttableids'] ? $_G['cache']['posttableids'] : array('0');
- foreach($posttableids as $id) {
- C::t('forum_post')->update($id, $attachpids, array('attachment' => '0'), true);
- }
- }
- }
- function attachwidth($width) {
- global $_G;
- if($_G['setting']['imagemaxwidth'] && $width) {
- return 'class="zoom" onclick="zoom(this, this.src, 0, 0, '.($_G['setting']['showexif'] ? 1 : 0).')" width="'.($width > $_G['setting']['imagemaxwidth'] ? $_G['setting']['imagemaxwidth'] : $width).'"';
- } else {
- return 'thumbImg="1"';
- }
- }
- function packaids($attach) {
- global $_G;
- return aidencode($attach['aid'], 0, $_G['tid']);
- }
- function showattach($post, $type = 0) {
- $type = !$type ? 'attachlist' : 'imagelist';
- $return = '';
- if(!empty($post[$type]) && is_array($post[$type])) {
- foreach($post[$type] as $aid) {
- if(!empty($post['attachments'][$aid])) {
- $return .= $type($post['attachments'][$aid], $post['first']);
- }
- }
- }
- return $return;
- }
- function getattachexif($aid, $path = '') {
- global $_G;
- $return = $filename = '';
- if(!$path) {
- if($attach = C::t('forum_attachment_n')->fetch('aid:'.$aid, $aid, array(1, -1))) {
- if($attach['remote']) {
- $filename = $_G['setting']['ftp']['attachurl'].'forum/'.$attach['attachment'];
- } else {
- $filename = $_G['setting']['attachdir'].'forum/'.$attach['attachment'];
- }
- }
- } else {
- $filename = $path;
- }
- if($filename) {
- require_once libfile('function/exif');
- $exif = getexif($filename);
- $keys = array(
- exif_lang('Model'),
- exif_lang('ShutterSpeedValue'),
- exif_lang('ApertureValue'),
- exif_lang('FocalLength'),
- exif_lang('ExposureTime'),
- exif_lang('DateTimeOriginal'),
- exif_lang('ISOSpeedRatings'),
- );
- foreach($exif as $key => $value) {
- if(in_array($key, $keys)) {
- $return .= "$key : $value<br />";
- }
- }
- }
- return $return;
- }
- ?>
|