2022-09-17 20:50:50 +09:00
< ? php
define ( 'G5_CAPTCHA' , true );
2024-09-23 11:07:19 +09:00
include_once " ./_common.php " ;
2024-10-05 07:34:26 +09:00
include_once G5_CAPTCHA_PATH . " /captcha.lib.php " ;
2022-09-17 20:50:50 +09:00
// 토큰체크
$comment_token = trim ( get_session ( 'ss_comment_token' ));
set_session ( 'ss_comment_token' , '' );
/* if ( ! trim ( $_POST [ 'token' ]) || ! $comment_token || $comment_token != $_POST [ 'token' ])
alert ( '올바른 방법으로 이용해 주십시오.' );
*/
// 090710
if ( substr_count ( $wr_content , " &# " ) > 50 ) {
2024-09-19 20:57:39 +09:00
alert ( '내용에 올바르지 않은 코드가 다수 포함되어 있습니다.' );
exit ;
2022-09-17 20:50:50 +09:00
}
2024-10-05 07:34:26 +09:00
@ include_once $board_skin_path . " /write_comment_update.head.skin.php " ;
2022-09-17 20:50:50 +09:00
$w = $_POST [ " w " ];
2024-09-19 20:57:39 +09:00
$wr_name = trim ( $_POST [ 'wr_name' ]);
2022-09-17 20:50:50 +09:00
$wr_email = '' ;
if ( ! empty ( $_POST [ 'wr_email' ]))
2024-09-19 20:57:39 +09:00
$wr_email = get_email_address ( trim ( $_POST [ 'wr_email' ]));
2022-09-17 20:50:50 +09:00
// 비회원의 경우 이름이 누락되는 경우가 있음
if ( $is_guest ) {
2024-09-19 20:57:39 +09:00
if ( $wr_name == '' )
alert ( '이름은 필히 입력하셔야 합니다.' );
if ( ! chk_captcha ())
alert ( '자동등록방지 숫자가 틀렸습니다.' );
2022-09-17 20:50:50 +09:00
}
if ( $w == " c " || $w == " cu " ) {
2024-09-19 20:57:39 +09:00
if ( $member [ 'mb_level' ] < $board [ 'bo_comment_level' ])
alert ( '댓글을 쓸 권한이 없습니다.' );
} else
alert ( 'w 값이 제대로 넘어오지 않았습니다.' );
2022-09-17 20:50:50 +09:00
// 세션의 시간 검사
// 4.00.15 - 댓글 수정시 연속 게시물 등록 메시지로 인한 오류 수정
if ( $w == 'c' && $_SESSION [ 'ss_datetime' ] >= ( G5_SERVER_TIME - $config [ 'cf_delay_sec' ]) && ! $is_admin )
2024-09-19 20:57:39 +09:00
alert ( '너무 빠른 시간내에 게시물을 연속해서 올릴 수 없습니다.' );
2022-09-17 20:50:50 +09:00
set_session ( 'ss_datetime' , G5_SERVER_TIME );
$wr = get_write ( $write_table , $wr_id );
if ( empty ( $wr [ 'wr_id' ]))
2024-09-19 20:57:39 +09:00
alert ( " 글이 존재하지 않습니다. \\ n글이 삭제되었거나 이동하였을 수 있습니다. " );
2022-09-17 20:50:50 +09:00
// "인터넷옵션 > 보안 > 사용자정의수준 > 스크립팅 > Action 스크립팅 > 사용 안 함" 일 경우의 오류 처리
// 이 옵션을 사용 안 함으로 설정할 경우 어떤 스크립트도 실행 되지 않습니다.
//if (!trim($_POST["wr_content"])) die ("내용을 입력하여 주십시오.");
2024-09-19 20:57:39 +09:00
if ( $is_member ) {
$mb_id = $member [ 'mb_id' ];
// 4.00.13 - 실명 사용일때 댓글에 닉네임으로 입력되던 오류를 수정
$wr_name = addslashes ( clean_xss_tags ( $board [ 'bo_use_name' ] ? $member [ 'mb_name' ] : $member [ 'mb_nick' ]));
$wr_password = $member [ 'mb_password' ];
$wr_email = addslashes ( $member [ 'mb_email' ]);
$wr_homepage = addslashes ( clean_xss_tags ( $member [ 'mb_homepage' ]));
} else {
$mb_id = '' ;
$wr_password = get_encrypt_string ( $wr_password );
2022-09-17 20:50:50 +09:00
}
if ( $w == 'c' ) // 댓글 입력
{
2024-09-19 20:57:39 +09:00
/*
if ( $member [ 'mb_point' ] + $board [ 'bo_comment_point' ] < 0 && ! $is_admin )
alert ( '보유하신 포인트(' . number_format ( $member [ 'mb_point' ]) . ')가 없거나 모자라서 댓글쓰기(' . number_format ( $board [ 'bo_comment_point' ]) . ')가 불가합니다.\\n\\n포인트를 적립하신 후 다시 댓글을 써 주십시오.' );
*/
// 댓글쓰기 포인트설정시 회원의 포인트가 음수인 경우 댓글을 쓰지 못하던 버그를 수정 (곱슬최씨님)
$tmp_point = ( $member [ 'mb_point' ] > 0 ) ? $member [ 'mb_point' ] : 0 ;
if ( $tmp_point + $board [ 'bo_comment_point' ] < 0 && ! $is_admin )
alert ( '보유하신 포인트(' . number_format ( $member [ 'mb_point' ]) . ')가 없거나 모자라서 댓글쓰기(' . number_format ( $board [ 'bo_comment_point' ]) . ')가 불가합니다.\\n\\n포인트를 적립하신 후 다시 댓글을 써 주십시오.' );
// 댓글 답변
if ( $comment_id ) {
2024-09-30 01:58:32 +09:00
$sql = " SELECT wr_id, wr_parent, wr_comment, wr_comment_reply FROM $write_table
2022-09-17 20:50:50 +09:00
where wr_id = '$comment_id' " ;
2024-09-19 20:57:39 +09:00
$reply_array = sql_fetch ( $sql );
if ( ! $reply_array [ 'wr_id' ])
alert ( '답변할 댓글이 없습니다.\\n\\n답변하는 동안 댓글이 삭제되었을 수 있습니다.' );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if ( $wr [ 'wr_parent' ] != $reply_array [ 'wr_parent' ])
alert ( '댓글을 등록할 수 없습니다.' );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$tmp_comment = $reply_array [ 'wr_comment' ];
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if ( strlen ( $reply_array [ 'wr_comment_reply' ]) == 5 )
alert ( '더 이상 답변하실 수 없습니다.\\n\\n답변은 5단계 까지만 가능합니다.' );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$reply_len = strlen ( $reply_array [ 'wr_comment_reply' ]) + 1 ;
if ( $board [ 'bo_reply_order' ]) {
$begin_reply_char = 'A' ;
$end_reply_char = 'Z' ;
$reply_number = + 1 ;
$sql = " select MAX(SUBSTRING(wr_comment_reply, $reply_len , 1)) as reply
2022-09-17 20:50:50 +09:00
from $write_table
where wr_parent = '$wr_id'
and wr_comment = '$tmp_comment'
and SUBSTRING ( wr_comment_reply , $reply_len , 1 ) <> '' " ;
2024-09-19 20:57:39 +09:00
} else {
$begin_reply_char = 'Z' ;
$end_reply_char = 'A' ;
$reply_number = - 1 ;
$sql = " select MIN(SUBSTRING(wr_comment_reply, $reply_len , 1)) as reply
2022-09-17 20:50:50 +09:00
from $write_table
where wr_parent = '$wr_id'
and wr_comment = '$tmp_comment'
and SUBSTRING ( wr_comment_reply , $reply_len , 1 ) <> '' " ;
}
2024-09-19 20:57:39 +09:00
if ( $reply_array [ 'wr_comment_reply' ])
$sql .= " and wr_comment_reply like ' { $reply_array [ 'wr_comment_reply' ] } %' " ;
$row = sql_fetch ( $sql );
if ( ! $row [ 'reply' ])
$reply_char = $begin_reply_char ;
else if ( $row [ 'reply' ] == $end_reply_char ) // A~Z은 26 입니다.
alert ( '더 이상 답변하실 수 없습니다.\\n\\n답변은 26개 까지만 가능합니다.' );
2022-09-17 20:50:50 +09:00
else
2024-09-19 20:57:39 +09:00
$reply_char = chr ( ord ( $row [ 'reply' ]) + $reply_number );
$tmp_comment_reply = $reply_array [ 'wr_comment_reply' ] . $reply_char ;
} else {
2024-09-30 01:58:32 +09:00
$sql = " SELECT max(wr_comment) as max_comment FROM $write_table
2022-09-17 20:50:50 +09:00
where wr_parent = '$wr_id' and wr_is_comment = 1 " ;
2024-09-19 20:57:39 +09:00
$row = sql_fetch ( $sql );
//$row['max_comment'] -= 1;
$row [ 'max_comment' ] += 1 ;
$tmp_comment = $row [ 'max_comment' ];
$tmp_comment_reply = '' ;
}
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
//$wr_subject = get_text(stripslashes($wr['wr_subject']));
2022-09-17 20:50:50 +09:00
2024-10-05 07:34:26 +09:00
$wr_option = " " ;
if ( $wr_secret || $secret || $html ) {
$_options = [];
if ( $html ) $_options [] = $html ;
if ( $wr_secret || $secret ) $_options [] = $wr_secret ? $wr_secret : $secret ;
$wr_option = implode ( " , " , $_options );
}
2024-09-22 23:17:57 +09:00
$sql = " INSERT INTO $write_table
SET ca_name = '{$wr[' ca_name ']}' ,
2024-10-05 07:34:26 +09:00
wr_option = '$wr_option' ,
2024-09-22 23:17:57 +09:00
wr_num = '{$wr[' wr_num ']}' ,
wr_reply = '' ,
wr_parent = '$wr_id' ,
wr_is_comment = 1 ,
wr_comment = '$tmp_comment' ,
wr_comment_reply = '$tmp_comment_reply' ,
wr_subject = '$wr_subject' ,
wr_content = '$wr_content' ,
mb_id = '$mb_id' ,
wr_password = '$wr_password' ,
wr_name = '$wr_name' ,
wr_email = '$wr_email' ,
wr_homepage = '$wr_homepage' ,
wr_datetime = '" . G5_TIME_YMDHIS . "' ,
wr_last = '' ,
wr_ip = '{$_SERVER[' REMOTE_ADDR ']}' ,
ch_id = '{$character[' ch_id ']}' ,
ch_side = '{$character[' ch_side ']}' ,
ch_class = '{$character[' ch_class ']}' ,
wr_noname = '$wr_noname' ,
ti_id = '{$character[' ch_title ']}' ,
wr_1 = '$wr_1' ,
wr_2 = '$wr_2' ,
wr_3 = '$wr_3' ,
wr_4 = '$wr_4' ,
wr_5 = '$wr_5' ,
wr_6 = '$wr_6' ,
wr_7 = '$wr_7' ,
wr_8 = '$wr_8' ,
wr_9 = '$wr_9' ,
wr_10 = '$wr_10' " ;
2024-09-19 20:57:39 +09:00
sql_query ( $sql );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$comment_id = sql_insert_id ();
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// 원글에 댓글수 증가 & 마지막 시간 반영
2024-09-30 01:58:32 +09:00
sql_query ( " UPDATE $write_table SET wr_comment = wr_comment + 1, wr_last = ' " . G5_TIME_YMDHIS . " ' where wr_id = ' $wr_id ' " );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// 새글 INSERT
2024-09-30 01:58:32 +09:00
sql_query ( " INSERT INTO { $g5 [ 'board_new_table' ] } ( bo_table, wr_id, wr_parent, bn_datetime, mb_id ) values ( ' $bo_table ', ' $comment_id ', ' $wr_id ', ' " . G5_TIME_YMDHIS . " ', ' { $member [ 'mb_id' ] } ' ) " );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// 댓글 1 증가
2024-09-30 01:58:32 +09:00
sql_query ( " UPDATE { $g5 [ 'board_table' ] } SET bo_count_comment = bo_count_comment + 1 where bo_table = ' $bo_table ' " );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// 포인트 부여
insert_point ( $member [ 'mb_id' ], $board [ 'bo_comment_point' ], " { $board [ 'bo_subject' ] } { $wr_id } - { $comment_id } 댓글쓰기 " , $bo_table , $comment_id , '댓글' );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// 메일발송 사용
if ( $config [ 'cf_email_use' ] && $board [ 'bo_use_email' ]) {
// 관리자의 정보를 얻고
$super_admin = get_admin ( 'super' );
$group_admin = get_admin ( 'group' );
$board_admin = get_admin ( 'board' );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$wr_content = nl2br ( get_text ( stripslashes ( " 원글 \n { $wr [ 'wr_subject' ] } \n \n \n 댓글 \n $wr_content " )));
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$warr = array ( '' => '입력' , 'u' => '수정' , 'r' => '답변' , 'c' => '댓글 ' , 'cu' => '댓글 수정' );
$str = $warr [ $w ];
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$subject = '[' . $config [ 'cf_title' ] . '] ' . $board [ 'bo_subject' ] . ' 게시판에 ' . $str . '글이 올라왔습니다.' ;
// 4.00.15 - 메일로 보내는 댓글의 바로가기 링크 수정
$link_url = G5_BBS_URL . " /board.php?bo_table= " . $bo_table . " &wr_id= " . $wr_id . " & " . $qstr . " #c_ " . $comment_id ;
2022-09-17 20:50:50 +09:00
2024-10-05 07:34:26 +09:00
include_once G5_LIB_PATH . " /mailer.lib.php " ;
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
ob_start ();
2024-09-23 11:07:19 +09:00
include_once " ./write_update_mail.php " ;
2024-09-19 20:57:39 +09:00
$content = ob_get_contents ();
ob_end_clean ();
2022-09-17 20:50:50 +09:00
2024-09-23 09:37:13 +09:00
$array_email = [];
2024-09-19 20:57:39 +09:00
// 게시판관리자에게 보내는 메일
if ( $config [ 'cf_email_wr_board_admin' ])
$array_email [] = $board_admin [ 'mb_email' ];
// 게시판그룹관리자에게 보내는 메일
if ( $config [ 'cf_email_wr_group_admin' ])
$array_email [] = $group_admin [ 'mb_email' ];
// 최고관리자에게 보내는 메일
if ( $config [ 'cf_email_wr_super_admin' ])
$array_email [] = $super_admin [ 'mb_email' ];
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// 원글게시자에게 보내는 메일
if ( $config [ 'cf_email_wr_write' ])
$array_email [] = $wr [ 'wr_email' ];
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// 댓글 쓴 모든이에게 메일 발송이 되어 있다면 (자신에게는 발송하지 않는다)
if ( $config [ 'cf_email_wr_comment_all' ]) {
2024-09-30 01:58:32 +09:00
$sql = " SELECT distinct wr_email FROM { $write_table }
2022-09-17 20:50:50 +09:00
where wr_email not in ( '{$wr[' wr_email ']}' , '{$member[' mb_email ']}' , '' )
and wr_parent = '$wr_id' " ;
2024-09-19 20:57:39 +09:00
$result = sql_query ( $sql );
while ( $row = sql_fetch_array ( $result ))
$array_email [] = $row [ 'wr_email' ];
}
// 중복된 메일 주소는 제거
$unique_email = array_unique ( $array_email );
$unique_email = array_values ( $unique_email );
for ( $i = 0 ; $i < count ( $unique_email ); $i ++ ) {
mailer ( $wr_name , $wr_email , $unique_email [ $i ], $subject , $content , 1 );
2022-09-17 20:50:50 +09:00
}
2024-09-19 20:57:39 +09:00
}
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
// SNS 등록
2024-09-23 11:07:19 +09:00
include_once " ./write_comment_update.sns.php " ;
2024-09-19 20:57:39 +09:00
if ( $wr_facebook_user || $wr_twitter_user ) {
$sql = " update $write_table
2022-09-17 20:50:50 +09:00
set wr_facebook_user = '$wr_facebook_user' ,
wr_twitter_user = '$wr_twitter_user'
where wr_id = '$comment_id' " ;
2024-09-19 20:57:39 +09:00
sql_query ( $sql );
}
} else if ( $w == 'cu' ) // 댓글 수정
2022-09-17 20:50:50 +09:00
{
2024-09-30 01:58:32 +09:00
$sql = " SELECT mb_id, wr_password, wr_comment, wr_comment_reply FROM $write_table
2022-09-17 20:50:50 +09:00
where wr_id = '$comment_id' " ;
2024-09-19 20:57:39 +09:00
$comment = $reply_array = sql_fetch ( $sql );
$tmp_comment = $reply_array [ 'wr_comment' ];
$len = strlen ( $reply_array [ 'wr_comment_reply' ]);
if ( $len < 0 )
$len = 0 ;
$comment_reply = substr ( $reply_array [ 'wr_comment_reply' ], 0 , $len );
//print_r2($GLOBALS); exit;
if ( $is_admin == 'super' ) // 최고관리자 통과
;
else if ( $is_admin == 'group' ) { // 그룹관리자
$mb = get_member ( $comment [ 'mb_id' ]);
if ( $member [ 'mb_id' ] == $group [ 'gr_admin' ]) { // 자신이 관리하는 그룹인가?
if ( $member [ 'mb_level' ] >= $mb [ 'mb_level' ]) // 자신의 레벨이 크거나 같다면 통과
2022-09-17 20:50:50 +09:00
;
2024-09-19 20:57:39 +09:00
else
alert ( '그룹관리자의 권한보다 높은 회원의 댓글이므로 수정할 수 없습니다.' );
} else
alert ( '자신이 관리하는 그룹의 게시판이 아니므로 댓글을 수정할 수 없습니다.' );
} else if ( $is_admin == 'board' ) { // 게시판관리자이면
$mb = get_member ( $comment [ 'mb_id' ]);
if ( $member [ 'mb_id' ] == $board [ 'bo_admin' ]) { // 자신이 관리하는 게시판인가?
if ( $member [ 'mb_level' ] >= $mb [ 'mb_level' ]) // 자신의 레벨이 크거나 같다면 통과
;
else
alert ( '게시판관리자의 권한보다 높은 회원의 댓글이므로 수정할 수 없습니다.' );
} else
alert ( '자신이 관리하는 게시판이 아니므로 댓글을 수정할 수 없습니다.' );
} else if ( $member [ 'mb_id' ]) {
if ( $member [ 'mb_id' ] != $comment [ 'mb_id' ])
alert ( '자신의 글이 아니므로 수정할 수 없습니다.' );
} else {
if ( $comment [ 'wr_password' ] != $wr_password )
alert ( '댓글을 수정할 권한이 없습니다.' );
}
2024-09-30 01:58:32 +09:00
$sql = " SELECT count(*) as cnt FROM $write_table
2022-09-17 20:50:50 +09:00
where wr_comment_reply like '$comment_reply%'
and wr_id <> '$comment_id'
and wr_parent = '$wr_id'
and wr_comment = '$tmp_comment'
and wr_is_comment = 1 " ;
2024-09-19 20:57:39 +09:00
$row = sql_fetch ( $sql );
if ( $row [ 'cnt' ] && ! $is_admin )
alert ( '이 댓글와 관련된 답변댓글이 존재하므로 수정 할 수 없습니다.' );
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$sql_ip = " " ;
if ( ! $is_admin )
$sql_ip = " , wr_ip = ' { $_SERVER [ 'REMOTE_ADDR' ] } ' " ;
2022-09-17 20:50:50 +09:00
2024-10-05 07:34:26 +09:00
$wr_option = " " ;
if ( $wr_secret || $secret || $html ) {
$_options = [];
if ( $html ) $_options [] = $html ;
if ( $wr_secret || $secret ) $_options [] = $wr_secret ? $wr_secret : $secret ;
2022-09-17 20:50:50 +09:00
2024-10-05 07:34:26 +09:00
$wr_option = implode ( " , " , $_options );
}
2024-09-22 23:17:57 +09:00
$sql = " UPDATE $write_table
SET wr_subject = '$wr_subject' ,
wr_content = '$wr_content' ,
wr_1 = '$wr_1' ,
wr_2 = '$wr_2' ,
wr_3 = '$wr_3' ,
wr_4 = '$wr_4' ,
wr_5 = '$wr_5' ,
wr_6 = '$wr_6' ,
wr_7 = '$wr_7' ,
wr_8 = '$wr_8' ,
wr_9 = '$wr_9' ,
wr_10 = '$wr_10' ,
wr_option = '$wr_option'
$sql_ip
WHERE wr_id = '$comment_id' " ;
2024-09-19 20:57:39 +09:00
sql_query ( $sql );
2022-09-17 20:50:50 +09:00
}
// 사용자 코드 실행
2024-10-05 07:34:26 +09:00
@ include_once $board_skin_path . " /write_comment_update.skin.php " ;
@ include_once $board_skin_path . " /write_comment_update.tail.skin.php " ;
2022-09-17 20:50:50 +09:00
delete_cache_latest ( $bo_table );
2024-10-05 07:34:26 +09:00
$redirect_url = short_url_clean ( G5_HTTP_BBS_URL . '/board.php?bo_table=' . $bo_table . '&wr_id=' . $wr [ 'wr_parent' ] . '&' . $qstr . '&#c_' . $comment_id );
2024-09-28 13:03:15 +09:00
EventHandler :: triggerEvent ( " gnuboard.bbs.comment_update_after " , $board , $wr_id , $w , $qstr , $redirect_url , $comment_id , $reply_array );
goto_url ( $redirect_url );