414 lines
16 KiB
PHP
414 lines
16 KiB
PHP
<?php
|
|
|
|
// 게시물 태그추출 함수
|
|
function getPostTag($tag,$bid){
|
|
global $g,$r;
|
|
$_tags=explode(',',$tag);
|
|
$_tagn=count($_tags);
|
|
$html='';
|
|
$bbs_list = $g['url_root'].'/?r='.$r.'&m=bbs&bid='.$bid;
|
|
$i=0;
|
|
for($i = 0; $i < $_tagn; $i++):;
|
|
$_tagk=trim($_tags[$i]);
|
|
|
|
if (!$g['mobile']||$_SESSION['pcmode']=='Y') {
|
|
$html.='<a href="'.$bbs_list.'&where=subject|tag&keyword='.$_tagk.'" class="badge badge-primary badge-outline">';
|
|
$html.=$_tagk;
|
|
$html.='</a>';
|
|
} else {
|
|
$html.='<span class="badge badge-primary badge-outline" data-act="tag" data-tag="'.$_tagk.'">';
|
|
$html.=$_tagk;
|
|
$html.='</span>';
|
|
}
|
|
|
|
endfor;
|
|
return $html;
|
|
}
|
|
|
|
// 첨부파일 리스트 갯수 추출 함수
|
|
function _getAttachNum($upload,$mod){
|
|
global $table;
|
|
|
|
$attach = getArrayString($upload);
|
|
$attach_file_num=0;// 첨부파일 수량
|
|
$hidden_file_num=0; // 숨김파일(다운로드 방지) 수량
|
|
foreach($attach['data'] as $val)
|
|
{
|
|
$U = getUidData($table['s_upload'],$val);
|
|
if($U['fileonly']==1) $attach_file_num++; // 전체 첨부파일 수량 증가
|
|
if($U['hidden']==1) $hidden_file_num++; // 숨김파일 수량 증가
|
|
}
|
|
$down_file_num=$attach_file_num-$hidden_file_num; // 다운로드 가능한 첨부파일
|
|
$result=array();
|
|
$result['modify']=$attach_file_num;
|
|
$result['view']=$down_file_num;
|
|
|
|
return $result[$mod];
|
|
}
|
|
|
|
// 첨부파일 리스트 추출 함수 (전체)
|
|
/*
|
|
$parent_data : 해당 포스트의 row 배열
|
|
$mod : upload or modal ==> 실제 업로드 모드 와 모달을 띄워서 본문에 삽입용도로 쓰거나
|
|
*/
|
|
function _getAttachFileList($parent_data,$mod,$type,$device){
|
|
global $table;
|
|
|
|
$upload=$parent_data['upload'];
|
|
$featured_img_uid=$parent_data['featured_img'];// 대표이미지 uid
|
|
$featured_video_uid=$parent_data['featured_video'];// 대표비디오 uid
|
|
$featured_audio_uid=$parent_data['featured_audio'];// 대표오디오 uid
|
|
|
|
if($type=='file') $sql='type=1 and hidden=0';
|
|
else if($type=='photo') $sql='type=2 and hidden=0';
|
|
else if($type=='audio') $sql='type=4 and hidden=0';
|
|
else if($type=='video') $sql='type=5 and hidden=0';
|
|
else if($type=='doc') $sql='type=6 and hidden=0';
|
|
else if($type=='zip') $sql='type=7 and hidden=0';
|
|
else $sql='type=1';
|
|
|
|
$attach = getArrayString($upload);
|
|
$uid_q='(';
|
|
foreach($attach['data'] as $uid)
|
|
{
|
|
$uid_q.='uid='.$uid.' or ';
|
|
}
|
|
$uid_q=substr($uid_q,0,-4).')';
|
|
$sql=$sql.' and '.$uid_q;
|
|
$RCD=getDbArray($table['s_upload'],$sql,'*','gid','asc','',1);
|
|
$html='';
|
|
while($R=db_fetch_array($RCD)){
|
|
$U=getUidData($table['s_upload'],$R['uid']);
|
|
|
|
if ($device =='mobile') {
|
|
if($type=='file') $html.=_getAttachFile_m($U,$mod,$featured_img_uid);
|
|
else if($type=='photo') $html.=_getAttachPhoto_m($U,$mod,$featured_img_uid);
|
|
else if($type=='audio') $html.=_getAttachAudio_m($U,$mod,$featured_audio_uid);
|
|
else if($type=='video') $html.=_getAttachVideo_m($U,$mod,$featured_video_uid);
|
|
else $html.=_getAttachFile_m($U,$mod,$featured_img_uid);;
|
|
} else {
|
|
if($type=='file') $html.=_getAttachFile($U,$mod,$featured_img_uid);
|
|
else if($type=='photo') $html.=_getAttachPhoto($U,$mod,$featured_img_uid);
|
|
else if($type=='audio') $html.=_getAttachAudio($U,$mod,$featured_audio_uid);
|
|
else if($type=='video') $html.=_getAttachVideo($U,$mod,$featured_video_uid);
|
|
else $html.=_getAttachFile($U,$mod,$featured_img_uid);;
|
|
}
|
|
}
|
|
return $html;
|
|
}
|
|
|
|
function _getAttachObjectArray($parent_data,$type){
|
|
global $table;
|
|
|
|
$upload=$parent_data['upload'];
|
|
$featured_img_uid=$parent_data['featured_img'];// 대표이미지 uid
|
|
$featured_video_uid=$parent_data['featured_video'];// 대표비디오 uid
|
|
$featured_audio_uid=$parent_data['featured_audio'];// 대표오디오 uid
|
|
|
|
if($type=='file') $sql='type=1 and hidden=0';
|
|
else if($type=='photo') $sql='type=2 and hidden=0';
|
|
else if($type=='audio') $sql='type=4 and hidden=0';
|
|
else if($type=='video') $sql='type=5 and hidden=0';
|
|
else if($type=='doc') $sql='type=6 and hidden=0';
|
|
else if($type=='zip') $sql='type=7 and hidden=0';
|
|
else $sql='type=1';
|
|
|
|
$attachArray = [];
|
|
$attach = getArrayString($upload);
|
|
$uid_q='(';
|
|
foreach($attach['data'] as $uid)
|
|
{
|
|
$uid_q.='uid='.$uid.' or ';
|
|
}
|
|
$uid_q=substr($uid_q,0,-4).')';
|
|
$sql=$sql.' and '.$uid_q;
|
|
$RCD=getDbArray($table['s_upload'],$sql,'*','gid','asc','',1);
|
|
|
|
// Loop through query and push results into $someArray;
|
|
// while ($R = mysqli_fetch_assoc($query)) {
|
|
while($R=db_fetch_array($RCD)){
|
|
$U=getUidData($table['s_upload'],$R['uid']);
|
|
$src = $U['src'];
|
|
array_push($attachArray, [
|
|
'src' => $src,
|
|
'w' => $U['width'],
|
|
'h' => $U['height'],
|
|
'title' => $U['caption']
|
|
]);
|
|
}
|
|
return $attachArray;
|
|
}
|
|
|
|
// 첨부파일 리스트 추출 함수 (데스크탑,사진)
|
|
function _getAttachPhoto($R,$mod,$featured_img_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
$img_origin=$R['src'];
|
|
$img_origin_size=$R['width'].'x'.$R['height'];
|
|
$thumb_list=getPreviewResize($R['src'],'c'); // 미리보기 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
$thumb_modal=getPreviewResize($R['src'],'q'); // 정보수정 모달용 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
$insert_text='';
|
|
|
|
$html='';
|
|
$html.='
|
|
<figure class="card figure" data-id="'.$R['uid'].'">';
|
|
|
|
$html.='
|
|
<a href="'.$img_origin.'" data-size="'.$img_origin_size.'">
|
|
<img class="card-img-top img-fluid" src="'.$img_origin.'" alt="'.$caption.'">
|
|
<button type="button" class="btn"><i class="fa fa-search-plus fa-lg" aria-hidden="true"></i></button>
|
|
</a>
|
|
<figcaption class="figure-caption hidden">'.$caption.'</figcaption>';
|
|
|
|
$html.='
|
|
</div>
|
|
|
|
</figure>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
// 첨부파일 리스트 추출 함수 (데스크탑,파일)
|
|
function _getAttachFile($R,$mod,$featured_img_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
|
|
if ($R['type']==2) {
|
|
$type='photo';
|
|
} elseif($R['type']==4) {
|
|
$type='audio';
|
|
} elseif($R['type']==5) {
|
|
$type='video';
|
|
} else {
|
|
$type='file';
|
|
}
|
|
|
|
if($type=='photo'){
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
$img_origin=$R['src'];
|
|
$thumb_list=getPreviewResize($img_origin,'c'); // 미리보기 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
$thumb_modal=getPreviewResize($img_origin,'q'); // 정보수정 모달용 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
}else if($type=='file'){
|
|
$src=$R['host'].'/'.$R['folder'].'/'.$R['name'];
|
|
$download_link=$g['url_root'].'/?r='.$r.'&m=mediaset&a=download&uid='.$R['uid'];
|
|
}
|
|
|
|
$ext_to_fa=array('xls'=>'excel','xlsx'=>'-excel','ppt'=>'powerpoint','pptx'=>'powerpoint','txt'=>'text','pdf'=>'pdf','zip'=>'archive','doc'=>'word');
|
|
$ext_icon=in_array($R['ext'],array_keys($ext_to_fa))?'-'.$ext_to_fa[$R['ext']]:'';
|
|
|
|
$html='';
|
|
|
|
if($R['type']==2){
|
|
$html.='<div class="list-group-item" data-id="'.$R['uid'].'">';
|
|
$html.='<div class="media">
|
|
<img class="mr-2" src="'.$thumb_list.'" alt="'.$caption.'">
|
|
<div class="media-body">';
|
|
$html.='<span class="badge badge-default'.($R['uid']==$featured_img_uid?'':' hidden-xs-up').'" data-role="attachList-label-featured" data-id="'.$R['uid'].'">대표</span> ';
|
|
$html.='<span class="badge badge-default'.(!$R['hidden']?' hidden-xs-up':'').'" data-role="attachList-label-hidden-'.$R['uid'].'">숨김</span>';
|
|
$html.='<a href="'.$download_link.'">'.$R['name'].'</a>
|
|
<span class="badge badge-light">'.getSizeFormat($R['size'],2).'</span>
|
|
</div></div>';
|
|
|
|
} else {
|
|
$html.='<a class="list-group-item list-group-item-action d-flex justify-content-between align-items-center" href="'.$download_link.'">';
|
|
$html.='<span><i class="fa fa-file'.$ext_icon.'-o fa-fw fa-lg"></i> '.$R['name'].'</span>';
|
|
$html.='<span><span class="badge badge-light">'.getSizeFormat($R['size'],2).'</span> <span class="badge badge-light"><i class="fa fa-download" aria-hidden="true"></i> '.$R['down'].'</span></span></a>';
|
|
}
|
|
|
|
return $html;
|
|
}
|
|
|
|
// 오디오파일 리스트 추출 함수 (데스크탑,오디오)
|
|
function _getAttachAudio($R,$mod,$featured_audio_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
|
|
$html='';
|
|
$html.='
|
|
<li class="table-view-cell p-0" data-id="'.$R['uid'].'">';
|
|
$html.='<span class="badge badge-default'.($R['uid']==$featured_audio_uid?'':' hidden-xs-up').'" data-role="attachList-label-featured" data-id="'.$R['uid'].'">대표</span> ';
|
|
$html.='<span class="badge badge-default'.(!$R['hidden']?' hidden-xs-up':'').'" data-role="attachList-label-hidden-'.$R['uid'].'">숨김</span>';
|
|
$html.='
|
|
<audio controls data-plugin="mediaelement" class="w-100"><source src="'.$R['host'].'/'.$R['folder'].'/'.$R['tmpname'].'" type="audio/mpeg"></audio>';
|
|
$html.='</li>';
|
|
return $html;
|
|
}
|
|
|
|
// 비디오파일 리스트 추출 함수 (데스크탑,비디오)
|
|
function _getAttachVideo($R,$mod,$featured_video_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
|
|
$html='';
|
|
$html.='
|
|
<div class="card bg-white" data-id="'.$R['uid'].'">';
|
|
$html.='
|
|
<video controls data-plugin="mediaelement" class="card-img-top img-fluid" width="640" height="360" style="max-width:100%;"><source src="'.$R['host'].'/'.$R['folder'].'/'.$R['tmpname'].'" type="video/'.$R['ext'].'"></video>';
|
|
$html.='<div class="card-block"><h5 class="card-title">'.$R['name'].'</h5>';
|
|
$html.='
|
|
<p class="card-text text-muted"><small>'.getSizeFormat($R['size'],2).'</small></p></div></div>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
// 첨부파일 리스트 추출 함수 (모바일,사진)
|
|
function _getAttachPhoto_m($R,$mod,$featured_img_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
$img_origin=$R['src'];
|
|
$img_origin_size=$R['width'].'x'.$R['height'];
|
|
$thumb_list=getPreviewResize($R['src'],'c'); // 미리보기 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
$thumb_modal=getPreviewResize($R['src'],'q'); // 정보수정 모달용 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
$insert_text='';
|
|
|
|
$html='';
|
|
$html.='
|
|
<figure class="card figure" data-id="'.$R['uid'].'">';
|
|
|
|
$html.='
|
|
<a href="'.$img_origin.'" data-size="'.$img_origin_size.'">
|
|
<img class="card-img-top img-fluid" src="'.$img_origin.'" alt="'.$caption.'">
|
|
<button type="button" class="btn"><i class="fa fa-search-plus fa-lg" aria-hidden="true"></i></button>
|
|
</a>
|
|
<figcaption class="figure-caption hidden">'.$caption.'</figcaption>';
|
|
|
|
$html.='
|
|
</div>
|
|
|
|
</figure>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
// 첨부파일 리스트 추출 함수 (모바일,파일)
|
|
function _getAttachFile_m($R,$mod,$featured_img_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
|
|
if ($R['type']==2) {
|
|
$type='photo';
|
|
} elseif($R['type']==4) {
|
|
$type='audio';
|
|
} elseif($R['type']==5) {
|
|
$type='video';
|
|
} else {
|
|
$type='file';
|
|
}
|
|
|
|
if($type=='photo'){
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
$img_origin=$R['host'].'/'.$R['folder'].'/'.$R['tmpname'];
|
|
$thumb_list=getPreviewResize($img_origin,'c'); // 미리보기 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
$thumb_modal=getPreviewResize($img_origin,'q'); // 정보수정 모달용 사이즈 조정 (이미지 업로드시 썸네일을 만들 필요 없다.)
|
|
}else if($type=='file'){
|
|
$src=$R['host'].'/'.$R['folder'].'/'.$R['name'];
|
|
$download_link=$g['url_root'].'/?r='.$r.'&m=mediaset&a=download&uid='.$R['uid'];
|
|
}
|
|
|
|
$ext_to_fa=array('xls'=>'excel','xlsx'=>'-excel','ppt'=>'powerpoint','pptx'=>'powerpoint','txt'=>'text','pdf'=>'pdf','zip'=>'archive','doc'=>'word');
|
|
$ext_icon=in_array($R['ext'],array_keys($ext_to_fa))?'-'.$ext_to_fa[$R['ext']]:'';
|
|
|
|
$html='';
|
|
$html.='<li class="table-view-cell" data-id="'.$R['uid'].'"><a href="'.$download_link.'">';
|
|
$html.='<span class="badge badge-default badge-outline"><i class="fa fa-download" aria-hidden="true"></i> '.$R['down'].'</span>';
|
|
if($R['type']==2){
|
|
$html.='
|
|
<img class="media-object pull-left" src="'.$thumb_list.'" alt="'.$caption.'">
|
|
<div class="media-body">';
|
|
$html.='<span>'.$R['name'].'</span>
|
|
<span class="small">'.getSizeFormat($R['size'],2).'</span>
|
|
</div>';
|
|
} else {
|
|
$html.='
|
|
<span class="media-object pull-left pt-1"><i class="fa fa-file'.$ext_icon.'-o fa-fw fa-2x"></i></span>';
|
|
$html.='<div class="media-body">';
|
|
$html.=$R['name'].'
|
|
<span class="badge badge-default badge-inverted ml-2">'.getSizeFormat($R['size'],2).'</span>
|
|
</div>';
|
|
}
|
|
$html.='</a></li>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
// 오디오파일 리스트 추출 함수 (모바일,오디오)
|
|
function _getAttachAudio_m($R,$mod,$featured_audio_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
|
|
$html='';
|
|
$html.='
|
|
<li class="table-view-cell p-0" data-id="'.$R['uid'].'">';
|
|
$html.='<span class="badge badge-default'.($R['uid']==$featured_audio_uid?'':' hidden-xs-up').'" data-role="attachList-label-featured" data-id="'.$R['uid'].'">대표</span> ';
|
|
$html.='<span class="badge badge-default'.(!$R['hidden']?' hidden-xs-up':'').'" data-role="attachList-label-hidden-'.$R['uid'].'">숨김</span>';
|
|
$html.='
|
|
<audio controls data-plugin="mediaelement" class="w-100"><source src="'.$R['host'].'/'.$R['folder'].'/'.$R['tmpname'].'" type="audio/mpeg"></audio>';
|
|
$html.='</li>';
|
|
return $html;
|
|
}
|
|
|
|
// 비디오파일 리스트 추출 함수 (모바일,비디오)
|
|
function _getAttachVideo_m($R,$mod,$featured_video_uid) {
|
|
global $g,$r;
|
|
|
|
$fileName=explode('.',$R['name']);
|
|
$file_name=$fileName[0]; // 파일명만 분리
|
|
$caption=$R['caption']?$R['caption']:$file_name;
|
|
|
|
$html='';
|
|
$html.='
|
|
<div class="card bg-white" data-id="'.$R['uid'].'">';
|
|
$html.='
|
|
<video controls data-plugin="mediaelement" class="card-img-top img-fluid" width="640" height="360" style="max-width:100%;"><source src="'.$R['host'].'/'.$R['folder'].'/'.$R['tmpname'].'" type="video/'.$R['ext'].'"></video>';
|
|
$html.='<div class="card-block"><h5 class="card-title">'.$R['name'].'</h5>';
|
|
$html.='
|
|
<p class="card-text text-muted"><small>'.getSizeFormat($R['size'],2).'</small></p></div></div>';
|
|
|
|
return $html;
|
|
}
|
|
|
|
// 본문삽입 이미지 uid 얻기 함수
|
|
function _getInsertImgUid($upload)
|
|
{
|
|
global $table;
|
|
|
|
$u_arr = getArrayString($upload);
|
|
$Insert_arr=array();
|
|
$i=0;
|
|
foreach ($u_arr['data'] as $val) {
|
|
$U=getUidData($table['s_upload'],$val);
|
|
if(!$U['fileonly']) $Insert_arr[$i]=$val;
|
|
$i++;
|
|
}
|
|
$upfiles='';
|
|
// 중괄로로 재조립
|
|
foreach ($Insert_arr as $uid) {
|
|
$upfiles.='['.$uid.']';
|
|
}
|
|
|
|
return $upfiles;
|
|
}
|
|
|
|
?>
|