You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1191 lines
49 KiB

7 years ago
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. class Board extends WB_Controller {
  4. function __construct()
  5. {
  6. parent::__construct();
  7. $this->load->model('board_model');
  8. }
  9. /**
  10. * INDEX 페이지는 접근금지
  11. */
  12. function index()
  13. {
  14. alert(langs( 'board/msg/invalid_access' ));
  15. }
  16. /**
  17. * 게시판 보기 페이지
  18. * @param $brd_key
  19. * @param $post_idx
  20. */
  21. public function view($brd_key, $post_idx)
  22. {
  23. $this->board_common($brd_key, 'read');
  24. $this->data['view'] = $this->board_model->get_post($brd_key, $post_idx, FALSE);
  25. if(! in_array( $this->data['view']['post_status'], array("Y","B")))
  26. {
  27. alert(langs('게시판/msg/invalid_post'));
  28. exit;
  29. }
  30. // 비밀글일 경우 처리
  31. if( $this->data['view']['post_secret'] == 'Y' )
  32. {
  33. $is_auth = FALSE;
  34. if( !empty($this->data['view']['mem_userid']) && $this->data['view']['mem_userid'] == $this->member->info('userid') )
  35. {
  36. $is_auth = TRUE;
  37. }
  38. if( $this->data['board']['auth']['admin'] ) {
  39. $is_auth = TRUE;
  40. }
  41. // 해당 글이 답글일 경우
  42. if( strlen($this->data['view']['post_reply']) > 0 && $this->member->is_login())
  43. {
  44. // 원글중에 작성자가 있는경우 글을 볼 권한이 있다!
  45. $tmp = $this->db->where('post_num', $this->data['view']['post_num'])->where('brd_key', $brd_key)->get('board_post')->result_array();
  46. foreach($tmp as $t)
  47. {
  48. if( $t['mem_userid'] && $t['mem_userid'] == $this->member->info('userid') )
  49. {
  50. $is_auth = TRUE;
  51. break;
  52. }
  53. }
  54. }
  55. if(! $is_auth)
  56. {
  57. if( ! $this->session->userdata('post_password_'.$post_idx) )
  58. {
  59. redirect(base_url("board/{$brd_key}/password/{$post_idx}?w=s&reurl=".current_full_url()));
  60. }
  61. }
  62. }
  63. // 게시판 조회수 상승
  64. if( ! $this->session->userdata('post_hit_'.$post_idx) OR (int)$this->session->userdata('post_hit_'.$post_idx) + 60*60*24 < time() )
  65. {
  66. $this->db->where('post_idx', $post_idx)->set('post_hit', 'post_hit+1', FALSE)->update('board_post');
  67. $this->data['view']['post_hit'] += 1;
  68. $this->session->set_userdata('post_hit_'.$post_idx, time());
  69. }
  70. // 포인트 관련 프로세스
  71. $this->point_process('brd_point_read', 'POST_READ', '게시글 읽기', $post_idx, ($this->data['view']['mem_userid'] == $this->member->info('userid')) );
  72. // 링크 추가
  73. $this->data['board']['link']['reply'] = base_url("board/{$brd_key}/write/?post_parent={$post_idx}");
  74. $this->data['board']['link']['modify'] = base_url("board/{$brd_key}/write/{$post_idx}");
  75. $this->data['board']['link']['delete'] = base_url("board/{$brd_key}/delete/{$post_idx}");
  76. // 메타태그 설정
  77. $this->site->meta_title = $this->data['view']['post_title'] . ' - ' . $this->data['board']['brd_title']; // 이 페이지의 타이틀
  78. $this->site->meta_description = cut_str(get_summary($this->data['view']['post_content'],FALSE),80); // 이 페이지의 요약 설명
  79. $this->site->meta_keywords = $this->data['view']['post_keywords']; // 이 페이지에서 추가할 키워드 메타 태그
  80. $this->site->meta_image = $this->data['view']['post_thumbnail']; // 이 페이지에서 표시할 대표이미지
  81. // 댓글 입력폼
  82. $write_skin_path = DIR_SKIN . "/board/" . $this->data['board']['brd_skin'] . "/comment_write";
  83. $comment_hidden = array("reurl"=>current_full_url(),"cmt_idx"=>"","cmt_parent"=>"");
  84. $comment_action_url = base_url( "board/{$brd_key}/comment/{$post_idx}", SSL_VERFIY ? 'https':'http' );
  85. $tmp['comment_view'] = array();
  86. $tmp['comment_form_open'] = form_open($comment_action_url,array("id"=>"form-board-comment","data-form"=>"board-comment"), $comment_hidden);
  87. $tmp['comment_form_close'] = form_close();
  88. $this->data['comment_write'] = $this->data['board']['brd_use_comment'] == 'Y' && $this->data['board']['auth']['comment'] ? $this->load->view($write_skin_path, $tmp, TRUE) : NULL;
  89. // 댓글 목록
  90. $list_skin_path = DIR_SKIN . "/board/" . $this->data['board']['brd_skin'] . "/comment_list";
  91. if( $this->data['board']['brd_use_comment'] == 'Y' )
  92. {
  93. $mem_userid = ($this->member->is_login()) ? $this->member->info('userid') : '';
  94. $tmp2['comment_list'] = $this->board_model->comment_list($brd_key, $post_idx, $this->data['board']['auth']['admin'], $mem_userid);
  95. // 각 댓글마다 대댓글 폼을 만든다.
  96. foreach($tmp2['comment_list']['list'] as &$row)
  97. {
  98. unset($tmp);
  99. $row['comment_form'] = "";
  100. if(strlen($row['cmt_reply']) < 5)
  101. {
  102. $comment_hidden = array("reurl"=>current_full_url(),"cmt_idx"=>"","cmt_parent"=>$row['cmt_idx']);
  103. $comment_action_url = base_url( "board/{$brd_key}/comment/{$post_idx}", SSL_VERFIY ? 'https':'http' );
  104. $tmp['comment_view'] = array();
  105. $tmp['comment_form_open'] = form_open($comment_action_url,array("data-form"=>"board-comment"), $comment_hidden);
  106. $tmp['comment_form_close'] = form_close();
  107. $row['comment_form'] = $this->data['board']['brd_use_comment'] == 'Y' && $this->data['board']['auth']['comment'] ? $this->load->view($write_skin_path, $tmp, TRUE) : NULL;
  108. }
  109. }
  110. }
  111. $tmp2['board'] = $this->data['board'];
  112. $this->data['comment_list'] = $this->data['board']['brd_use_comment'] == 'Y' ? $this->load->view($list_skin_path, $tmp2, TRUE) : NULL;
  113. $this->view = "view";
  114. }
  115. /**
  116. * 게시판 목록
  117. * @param $brd_key
  118. */
  119. public function lists($brd_key)
  120. {
  121. $this->board_common($brd_key, 'list');
  122. // 메타태그 설정
  123. $this->site->meta_title = $this->data['board']['brd_title'] . ' - ' . $this->data['page'] . '페이지'; // 이 페이지의 타이틀
  124. $this->site->meta_description = $this->data['board']['brd_description']; // 이 페이지의 요약 설명
  125. $this->site->meta_keywords = $this->data['board']['brd_keywords']; // 이 페이지에서 추가할 키워드 메타 태그
  126. $this->site->meta_image = ""; // 이 페이지에서 표시할 대표이미지
  127. // 레이아웃 & 뷰파일 설정
  128. $this->view = "list";
  129. }
  130. /**
  131. * 코멘트 등록/수정 처리
  132. * @param $brd_key
  133. * @param $post_idx
  134. * @param string $cmt_idx
  135. */
  136. public function comment($brd_key, $post_idx)
  137. {
  138. $this->load->library('form_validation');
  139. $this->form_validation->set_rules('cmt_content', langs('게시판/comment/form_content'), 'trim|required');
  140. if( empty($brd_key) OR empty($post_idx) )
  141. {
  142. alert(langs('게시판/msg/invalid_access'));
  143. exit;
  144. }
  145. $this->board_common($brd_key,'comment');
  146. $data['brd_key'] = $brd_key;
  147. $data['post_idx'] = $post_idx;
  148. $data['cmt_idx'] = $this->input->post('cmt_idx', TRUE);
  149. $data['cmt_parent'] = $this->input->post('cmt_parent', TRUE, 0);
  150. $data['cmt_content'] = $this->input->post('cmt_content', FALSE);
  151. $data['mem_userid'] = ( $this->member->is_login() ) ? $this->member->info('userid') : '';
  152. $data['mem_password'] = ( $this->member->is_login() ) ? $this->member->info('password') : get_password_hash( $this->input->post('mem_password', FALSE) );
  153. $data['mem_nickname'] = ( $this->member->is_login() ) ? $this->member->info('nickname') : $this->input->post('mem_nickname');
  154. $data['cmt_modtime'] = date('Y-m-d H:i:s');
  155. $data['cmt_ip'] = ip2long( $this->input->ip_address() );
  156. $data['cmt_status'] = 'Y';
  157. $data['cmt_mobile'] = $this->site->viewmode == DEVICE_MOBILE ? 'Y' : 'N';
  158. $reurl = $this->input->post('reurl', TRUE, base_url("board/{$brd_key}/{$post_idx}") );
  159. // 값 유효성 체크
  160. if( empty($data['cmt_content']) )
  161. {
  162. alert(langs('게시판/comment/content_required'));
  163. exit;
  164. }
  165. if( empty($data['mem_nickname']) )
  166. {
  167. alert(langs('게시판/comment/nickname_required'));
  168. exit;
  169. }
  170. if( empty($data['mem_password']) )
  171. {
  172. alert(langs('게시판/comment/password_required'));
  173. exit;
  174. }
  175. // 신규 등록일경우
  176. if( empty($data['cmt_idx']) )
  177. {
  178. $data['cmt_regtime'] = date('Y-m-d H:i:s');
  179. if(! empty($data['cmt_parent']))
  180. {
  181. $parent = $this->db->where('cmt_idx', $data['cmt_parent'])->where_in('cmt_status', array('Y','B'))->where('post_idx', $data['post_idx'])->get('board_comment')->row_array();
  182. if(! $parent OR !isset($parent['cmt_idx']) OR ! $parent['cmt_idx']) {
  183. alert('답변할 댓글이 없습니다.\\n답변하는 동안 댓글이 삭제되었을 수 있습니다.');
  184. exit;
  185. }
  186. if($parent['post_idx'] != $data['post_idx']) {
  187. alert('댓글을 등록할 수 없습니다.\\n잘못된 방법으로 등록을 요청하였습니다.');
  188. exit;
  189. }
  190. if(strlen($parent['cmt_reply']) >= 5) {
  191. alert('더이상 답변을 달수 없습니다.\\n\\n답변은 5단계 까지만 가능합니다.');
  192. exit;
  193. }
  194. $reply_len = strlen($parent['cmt_reply']) + 1;
  195. $begin_reply_char = 'A';
  196. $end_reply_char = 'Z';
  197. $reply_number = +1;
  198. $this->db->select("MAX(SUBSTRING(cmt_reply, {$reply_len}, 1)) AS reply")->from('board_comment')->where('cmt_num', $parent['cmt_num'])->where('post_idx', $data['post_idx'])->where("SUBSTRING(cmt_reply, {$reply_len}, 1) <>", '');
  199. if($parent['cmt_reply']) $this->db->like('cmt_reply', $parent['cmt_reply'],'after');
  200. $row = $this->db->get()->row_array();
  201. $reply_char ="";
  202. if(!$row['reply']) $reply_char = $begin_reply_char;
  203. else if ($row['reply'] == $end_reply_char) {
  204. alert('더이상 답변을 달수 없습니다.\\n\\n답변은 26개까지만 가능합니다.');
  205. exit;
  206. }
  207. else $reply_char = chr(ord($row['reply']) + $reply_number);
  208. $data['cmt_reply'] = $parent['cmt_reply'] . $reply_char;
  209. $data['cmt_num'] = $parent['cmt_num'];
  210. }
  211. else
  212. {
  213. $tmp = (int)$this->db->select_max('cmt_num','max')->from('board_comment')->where('post_idx',$data['post_idx'])->get()->row(0)->max;
  214. $data['cmt_reply'] = "";
  215. $data['cmt_num'] = $tmp+1;
  216. }
  217. if( $this->db->insert('board_comment', $data) )
  218. {
  219. // 대댓글을 위한 정보입력
  220. $cmt_idx = $this->db->insert_id();
  221. // 포인트 입력처리
  222. $this->point_process('brd_point_comment', "CMT_WRITE", "댓글 등록", $cmt_idx, FALSE);
  223. $this->board_model->update_post_comment_count($brd_key, $post_idx);
  224. alert('댓글 작성이 완료되었습니다.', $reurl);
  225. }
  226. }
  227. // 수정권한이라면
  228. else
  229. {
  230. // 기존 댓글 정보를 가져온다
  231. $comment = $this->db->where("cmt_idx", $data['cmt_idx'])->where('brd_key', $brd_key)->where('post_idx', $post_idx)->get('board_comment')->row_array();
  232. if( ! $comment || ! isset($comment['cmt_idx']) || $comment['cmt_idx'] != $data['cmt_idx'] )
  233. {
  234. alert(langs('게시판/msg/invalid_comment'));
  235. exit;
  236. }
  237. if(! $this->data['board']['auth']['admin'] )
  238. {
  239. // 기존 댓글과 수정권한이 있는지 확인한다.
  240. if( $comment['mem_userid'] )
  241. {
  242. if( $this->member->is_login() )
  243. {
  244. if( $this->member->info('userid') != $comment['mem_userid'] )
  245. {
  246. alert(langs('게시판/msg/comment_modify_unauthorize'));
  247. exit;
  248. }
  249. }
  250. else
  251. {
  252. alert_login();
  253. exit;
  254. }
  255. }
  256. else
  257. {
  258. if( $data['mem_password'] != $comment['mem_password'] )
  259. {
  260. alert(langs('게시판/msg/invalid_password'));
  261. exit;
  262. }
  263. }
  264. }
  265. // 수정일 경우는 바뀌어선 안되는 정보들은 unset
  266. unset($data['brd_key'], $data['post_idx']);
  267. $this->db->where('brd_key', $brd_key);
  268. $this->db->where('post_idx', $post_idx);
  269. $this->db->where('cmt_idx', $data['cmt_idx']);
  270. if( $this->db->update('board_comment', $data) )
  271. {
  272. $this->board_model->update_post_comment_count($brd_key, $post_idx);
  273. alert_close(langs('게시판/msg/comment_modify_success'), TRUE);
  274. exit;
  275. }
  276. }
  277. alert(langs('게시판/msg/comment_failed'));
  278. exit;
  279. }
  280. /**
  281. * 코멘트 수정/삭제 권한 확인
  282. * @param $comment
  283. * @return bool
  284. */
  285. public function _check_comment_modify($comment)
  286. {
  287. if( $this->data['board']['auth']['admin'] ) return TRUE;
  288. // 댓글 수정/삭제 권한 확인
  289. if( $comment['mem_userid'] && ! $this->member->is_login() )
  290. {
  291. return langs('게시판/msg/comment_modify_unauthorize');
  292. }
  293. else if ( $comment['mem_userid'] && $this->member->is_login() && $this->member->info('userid') != $comment['mem_userid'])
  294. {
  295. return langs('게시판/msg/comment_modify_unauthorize');
  296. }
  297. return TRUE;
  298. }
  299. /**
  300. * 코멘트 수정
  301. * @param string $cmt_idx
  302. */
  303. public function comment_modify($cmt_idx="")
  304. {
  305. if( ! $comment = $this->db->where('cmt_idx', $cmt_idx)->where('cmt_status', 'Y')->get('board_comment')->row_array() )
  306. {
  307. alert_close(langs('게시판/msg/invalid_comment'));
  308. exit;
  309. }
  310. $this->board_common($comment['brd_key']);
  311. if( ($result = $this->_check_comment_modify($comment)) !== TRUE )
  312. {
  313. alert_close($result);
  314. exit;
  315. }
  316. $this->site->meta_title = "댓글 수정";
  317. $hidden=array("mem_nickname"=>$comment['mem_nickname'],"cmt_idx"=>$comment['cmt_idx'],"cmt_parent"=>$comment['cmt_parent']);
  318. $action_url = base_url('board/'.$comment['brd_key'].'/comment/'.$comment['post_idx'].'/'.$cmt_idx, SSL_VERFIY ? 'https':'http');
  319. $this->data['comment_form_open'] = form_open($action_url, array("id"=>"form-board-comment","data-form"=>"board-comment"), $hidden);
  320. $this->data['comment_form_close'] = form_close();
  321. $this->data['comment_view'] = $comment;
  322. $this->data['is_reply'] = FALSE;
  323. $this->theme_file = "popup";
  324. $this->view = "comment_write";
  325. }
  326. /**
  327. * 댓글 삭제
  328. * @param $brd_key
  329. * @param $post_idx
  330. * @param $cmt_idx
  331. */
  332. public function comment_delete($brd_key, $post_idx, $cmt_idx)
  333. {
  334. $this->board_common($brd_key);
  335. if( ! $comment = $this->db->where('cmt_idx', $cmt_idx)->where('cmt_status', 'Y')->get('board_comment')->row_array() )
  336. {
  337. alert(langs('게시판/msg/invalid_comment'));
  338. exit;
  339. }
  340. if( ! $this->data['board']['auth']['admin'] )
  341. {
  342. if( ($result = $this->_check_comment_modify($comment)) !== TRUE )
  343. {
  344. alert($result);
  345. exit;
  346. }
  347. if( empty($comment['mem_userid']) )
  348. {
  349. alert(langs('게시판/msg/cannot_delete_guest_comment'));
  350. exit;
  351. }
  352. }
  353. // 원본 가져오기
  354. $original = $this->db->where('cmt_idx', $cmt_idx)->get('board_comment')->row_array();
  355. if(!$original OR !isset($original['cmt_idx']))
  356. alert('삭제할 원본 댓글이 없습니다.\\ 이미 삭제되엇거나 존재하지 않는 댓글입니다.');
  357. // 이 댓글의 하위 댓글이 있는지 확인
  358. $len = strlen($original['cmt_reply']);
  359. if ($len < 0) $len = 0;
  360. $comment_reply = substr($original['cmt_reply'], 0, $len);
  361. $cnt =
  362. $this->db
  363. ->select('COUNT(*) AS cnt')
  364. ->from('board_comment')
  365. ->like('cmt_reply', $comment_reply,'after')
  366. ->where('cmt_idx <>', $cmt_idx)
  367. ->where('cmt_num', $original['cmt_num'])
  368. ->where('post_idx', $original['post_idx'])
  369. ->where('cmt_status', 'Y')
  370. ->where('cmt_parent', $cmt_idx)
  371. ->get()->row(0)->cnt;
  372. if($cnt > 0)
  373. alert('삭제하려는 댓글에 답변이 달려있어 삭제할 수 없습니다.');
  374. if( $this->db->where('brd_key', $brd_key)->where('post_idx', $post_idx)->where('cmt_idx', $cmt_idx)->set('cmt_status', 'N')->update('board_comment') )
  375. {
  376. $this->board_model->update_post_comment_count($brd_key, $post_idx);
  377. // 댓글등록으로 증가한 포인트가 있다면 다시 감소
  378. $this->point_cancel("CMT_WRITE",$cmt_idx, "댓글삭제");
  379. alert(langs('게시판/msg/comment_delete_success'));
  380. exit;
  381. }
  382. }
  383. /**********************************************************
  384. *
  385. * 게시판 암호 확인 페이지
  386. * @param string $brd_key
  387. * @param string $post_idx
  388. *
  389. *********************************************************/
  390. function password($brd_key="",$post_idx="")
  391. {
  392. $this->board_common($brd_key);
  393. // 폼검증 라이브러리 로드
  394. $this->load->library("form_validation");
  395. // 폼검증 규칙 설정
  396. $this->form_validation->set_rules("password", langs('게시판/form/password'), "trim|required|min_length[4]|max_length[16]");
  397. if( $this->form_validation->run() == FALSE )
  398. {
  399. $hidden = array("reurl"=>$this->input->get('reurl', TRUE));
  400. $action_url = base_url("board/{$brd_key}/password/{$post_idx}", SSL_VERFIY ? 'https':'http');
  401. $this->data['form_open'] = form_open($action_url,array("id"=>"form-post-password","data-form"=>"post-password-form"), $hidden);
  402. $this->data['form_close']= form_close();
  403. $this->view = "password";
  404. }
  405. else
  406. {
  407. $reurl = $this->input->post("reurl", TRUE, base_url("board/{$brd_key}/{$post_idx}") );
  408. $password = $this->input->post("password", TRUE);
  409. $post = $this->board_model->get_post($brd_key, $post_idx);
  410. if( get_password_hash($password) == $post['mem_password'] )
  411. {
  412. $this->session->set_userdata('post_password_'.$post_idx, TRUE);
  413. redirect($reurl);
  414. exit;
  415. }
  416. else
  417. {
  418. alert( langs('게시판/msg/invalid_password') );
  419. exit;
  420. }
  421. }
  422. }
  423. /**
  424. * 수정이나 삭제 권한이 있나 확인한다.
  425. * @param $brd_key
  426. * @param $post_idx
  427. */
  428. public function _modify_auth($brd_key, $post_idx="")
  429. {
  430. if(empty($post_idx)) return;
  431. $post = $this->board_model->get_post($brd_key, $post_idx, FALSE);
  432. // 관리자가 아니라면
  433. if( ! $this->data['board']['auth']['admin'] )
  434. {
  435. // 회원이 작성한 글이라면
  436. if( ! empty($post['mem_userid']) )
  437. {
  438. if( ! $this->member->is_login() )
  439. {
  440. alert_login( langs('게시판/msg/modify_require_login') );
  441. exit;
  442. }
  443. else if ( $post['mem_userid'] != $this->member->info('userid') )
  444. {
  445. alert(langs('게시판/msg/modify_unauthorize'));
  446. exit;
  447. }
  448. }
  449. else
  450. {
  451. if( ! $this->session->userdata('post_password_'.$post_idx) )
  452. {
  453. redirect(base_url("board/{$brd_key}/password/{$post_idx}?reurl=".current_full_url()));
  454. }
  455. }
  456. }
  457. }
  458. /**
  459. * 글쓰기 페이지
  460. * @param $brd_key
  461. * @param string $post_idx
  462. */
  463. public function write($brd_key, $post_idx="")
  464. {
  465. $this->load->library('form_validation');
  466. $this->board_common($brd_key, 'write');
  467. // 수정이라면 권한을 확인한다.
  468. $this->_modify_auth($brd_key, $post_idx);
  469. $this->form_validation->set_rules('post_title', langs('게시판/form/post_title') ,'required|trim');
  470. $this->form_validation->set_rules('post_content', langs('게시판/form/post_content'),'required|trim');
  471. if( ! $this->member->is_login() )
  472. {
  473. $this->form_validation->set_rules('mem_nickname', langs('게시판/form/mem_nickname') ,'required|trim');
  474. $this->form_validation->set_rules('mem_password', langs('게시판/form/password') ,'required|trim|min_length[4]|max_length[16]');
  475. }
  476. if( $this->form_validation->run() != FALSE)
  477. {
  478. $this->load->library('upload');
  479. if( ! $this->member->is_login() )
  480. {
  481. // 비회원이고 리캡쳐 설정이 되있을 경우 경우 구글 리캡챠확인
  482. if( $this->site->config('google_recaptcha_site_key') && $this->site->config('google_recaptcha_secret_key') )
  483. {
  484. $this->load->library('google_recaptcha');
  485. $response = $this->input->post('g-recaptcha-response', TRUE);
  486. if( empty($response) OR ! $this->google_recaptcha->check_response( $response ) )
  487. {
  488. alert('자동등록 방지 인증에 실패하였습니다.');
  489. exit;
  490. }
  491. }
  492. // 비회원일이고 수정일 경우 입력한 패스워드와 기존 패스워드 확인
  493. if( $post_idx )
  494. {
  495. $post = $this->board_model->get_post($brd_key, $post_idx, FALSE);
  496. if( get_password_hash( $this->input->post('mem_password', TRUE) ) != $post['mem_password'] )
  497. {
  498. alert('잘못된 비밀번호 입니다.');
  499. exit;
  500. }
  501. }
  502. }
  503. // 받아온 값을 정리한다.
  504. $data['post_title'] = $this->input->post('post_title', TRUE);
  505. $data['bca_idx'] = (int) $this->input->post('bca_idx', TRUE);
  506. $data['post_parent'] = $this->input->post('post_parent', TRUE, 0);
  507. $data['post_secret'] = $this->input->post('post_secret', TRUE, 'N') == 'Y' ? "Y":'N';
  508. $data['post_content'] = $this->input->post('post_content', FALSE);
  509. $data['brd_key'] = $brd_key;
  510. $data['post_modtime'] = date('Y-m-d H:i:s');
  511. $data['post_html'] = $this->data['use_wysiwyg'] ? 'Y' : 'N';
  512. $data['post_notice'] = $this->input->post('post_notice', TRUE) == 'Y' ? 'Y' : 'N';
  513. $data['post_ip'] = ip2long( $this->input->ip_address() );
  514. $data['post_mobile'] = $this->site->viewmode == DEVICE_MOBILE ? 'Y' : 'N';
  515. $data['post_keywords'] = $this->input->post('post_keywords', TRUE);
  516. for($i=1; $i<=9; $i++)
  517. {
  518. $data['post_ext'.$i] = $this->input->post('post_ext'.$i, TRUE,'');
  519. }
  520. $parent = array();
  521. if(! empty( $data['post_parent'] ) )
  522. {
  523. $parent = $this->board_model->get_post($brd_key, $data['post_parent'], FALSE);
  524. }
  525. // 관리자가 아니라면 사용할수 없는 옵션 끄기
  526. if(! $this->data['board']['auth']['admin'] )
  527. {
  528. $data['post_notice'] = 'N';
  529. }
  530. if($this->input->post('post_annonymous', TRUE) == 'Y' OR $this->data['board']['brd_use_anonymous'] == 'A')
  531. {
  532. $data['mem_nickname'] = "익명";
  533. }
  534. // 로그인 상태에 따라 값을 수정
  535. if( $this->member->is_login() )
  536. {
  537. $data['mem_userid'] = $this->member->info('userid');
  538. $data['mem_nickname'] = $this->member->info('nickname');
  539. $data['mem_password'] = $this->member->info('password');
  540. }
  541. else
  542. {
  543. $data['mem_userid'] = '';
  544. $data['mem_nickname'] = $this->input->post('mem_nickname', TRUE);
  545. $data['mem_password'] = get_password_hash( $this->input->post('mem_password', TRUE) );
  546. }
  547. // 게시판 설정을 이용해서 값 정리
  548. if( $this->data['board']['brd_use_secret'] == 'N' ) $data['post_secret'] = 'N';
  549. else if ( $this->data['board']['brd_use_secret'] == 'A' ) $data['post_secret'] = 'Y';
  550. // 답글인경우 원글이 비밀글이면 답글도 비밀글
  551. else if ( ! empty($data['post_parent']) && $parent['post_secret'] == 'Y' ) $data['post_secret'] = 'Y';
  552. // 파일 업로드가 있다면
  553. if( $this->data['use_attach'] )
  554. {
  555. if( isset($_FILES) && isset($_FILES['userfile']) && count($_FILES['userfile']) > 0 )
  556. {
  557. $dir_path = DIR_UPLOAD . "/board/{$brd_key}/".date('Y')."/".date('m');
  558. make_dir($dir_path,FALSE);
  559. $upload_config['upload_path'] = "./".$dir_path;
  560. $upload_config['file_ext_tolower'] = TRUE;
  561. $upload_config['allowed_types'] = FILE_UPLOAD_ALLOW;
  562. $upload_config['encrypt_name'] = TRUE;
  563. $this->load->library("upload", $upload_config);
  564. $this->data['upload_array'] = array();
  565. // FOR문으로 업로드하기 위해 돌리기
  566. $files = NULL;
  567. foreach ($_FILES['userfile'] as $key => $value) {
  568. foreach ($value as $noKey => $noValue) {
  569. $files[$noKey][$key] = $noValue;
  570. }
  571. }
  572. unset($_FILES);
  573. // FOR 문 돌면서 정리
  574. foreach ($files as $file) {
  575. $_FILES['userfile'] = $file;
  576. $this->upload->initialize($upload_config);
  577. if( ! isset($_FILES['userfile']['tmp_name']) OR ! $_FILES['userfile']['tmp_name']) continue;
  578. if (! $this->upload->do_upload('userfile') )
  579. {
  580. alert('파일 업로드에 실패하였습니다.\\n'.$this->upload->display_errors(' ',' '));
  581. exit;
  582. }
  583. else
  584. {
  585. $filedata = $this->upload->data();
  586. $this->data['upload_array'][] = array(
  587. "brd_key" => $brd_key,
  588. "att_origin" => $filedata['orig_name'],
  589. "att_filename" => $dir_path . "/" . $filedata['file_name'],
  590. "att_caption" => $filedata['orig_name'],
  591. "att_downloads" => 0,
  592. "att_filesize" => $filedata['file_size'] * 1024,
  593. "att_image_width" => $filedata['image_width'] ? $filedata['image_width'] : 0,
  594. "att_image_height" => $filedata['image_height'] ? $filedata['image_height'] : 0,
  595. "att_ext" => $filedata['file_ext'],
  596. "att_is_image" => ($filedata['is_image'] == 1) ? 'Y' : 'N',
  597. "att_regtime" => date('Y-m-d H:i:s')
  598. );
  599. }
  600. }
  601. }
  602. }
  603. // 첨부파일 삭제가 있다면 삭제한다.
  604. $del_file = $this->input->post("del_file", TRUE);
  605. if( $del_file && count($del_file) > 0 )
  606. {
  607. foreach($del_file as $att_idx) {
  608. $this->board_model->attach_remove($att_idx);
  609. }
  610. }
  611. // 외부이미지를복사 꺼놓음..
  612. //$data['post_content'] = $this->board_model->copy_external_image($data['post_content'], $this->agent->agent_string());
  613. // 게시판설정에 관리자승인이 되어있다면 글입력시 자동 미승인상태로
  614. if( $this->data['board']['brd_use_assign'] == 'Y' && ! PAGE_ADMIN )
  615. {
  616. $data['post_assign'] = 'N';
  617. }
  618. // 수정이냐 신규냐에 따라 값 설정
  619. if( empty($post_idx) )
  620. {
  621. $data['post_regtime'] = date('Y-m-d H:i:s');
  622. $data['post_status'] = 'Y';
  623. $data['post_count_comment'] = 0;
  624. $data['post_hit'] = 0;
  625. // 답글인경우
  626. if(! empty($data['post_parent']))
  627. {
  628. if( strlen($parent['post_reply']) >= 10 )
  629. {
  630. alert('더 이상 답변하실 수 없습니다.\\n답변은 10단계 까지만 가능합니다.');
  631. exit;
  632. }
  633. $reply_len = strlen($parent['post_reply']) + 1;
  634. $begin_reply_char = 'A';
  635. $end_reply_char = 'Z';
  636. $reply_number = +1;
  637. $reply_char = "";
  638. $this->db->select("MAX(SUBSTRING(post_reply, {$reply_len}, 1)) AS reply")->from('board_post')->where('post_num', $parent['post_num'])->where('brd_key', $brd_key)->where("SUBSTRING(post_reply, {$reply_len}, 1) <>", '');
  639. if($parent['post_reply']) $this->db->like('post_reply', $parent['post_reply'],'after');
  640. $row = $this->db->get()->row_array();
  641. if(! $row['reply']) {
  642. $reply_char = $begin_reply_char;
  643. }
  644. else if ($row['reply'] == $end_reply_char) {
  645. alert("더 이상 답변하실 수 없습니다.\\n답변은 26개 까지만 가능합니다.");
  646. exit;
  647. }
  648. else {
  649. $reply_char = chr(ord($row['reply']) + $reply_number);
  650. }
  651. $data['post_reply'] = $parent['post_reply'] . $reply_char;
  652. // 답변의 원글이 비밀글이라면, 비밀번호는 원글과 동일하게 넣는다.
  653. if( $parent['post_secret'] == 'Y' ) {
  654. $data['mem_password'] = $parent['mem_password'];
  655. }
  656. $data['post_num'] = $parent['post_num'];
  657. }
  658. else {
  659. $tmp = (int)$this->db->select_max('post_num','max')->from('board_post')->where('brd_key',$brd_key)->get()->row(0)->max;
  660. $data['post_reply'] = "";
  661. $data['post_num'] = $tmp+1;
  662. }
  663. if(! $this->db->insert('board_post', $data) )
  664. {
  665. alert(langs('게시판/msg/write_failed'));
  666. exit;
  667. }
  668. $post_idx = $this->db->insert_id();
  669. }
  670. else {
  671. $this->db->where('brd_key', $brd_key);
  672. $this->db->where('post_idx', $post_idx);
  673. if(! $this->db->update('board_post', $data))
  674. {
  675. alert(langs('게시판/msg/write_failed'));
  676. exit;
  677. }
  678. }
  679. // 업로드된 데이타가 있을경우에 DB에 기록
  680. if(isset($this->data['upload_array']) && count($this->data['upload_array']) >0 )
  681. {
  682. foreach($this->data['upload_array'] as &$arr) {
  683. $arr['post_idx'] = $post_idx;
  684. }
  685. $this->db->insert_batch("board_attach", $this->data['upload_array']);
  686. }
  687. // 자신의 글은 바로 볼수 있도록
  688. if( ! $this->member->is_login() )
  689. {
  690. $this->session->set_userdata('post_password_'.$post_idx, TRUE);
  691. }
  692. if($this->member->is_login())
  693. {
  694. $this->point_process('brd_point_write', "POST_WRITE", "게시글 등록", $post_idx, FALSE);
  695. }
  696. $insert_data['post_idx'] = $post_idx;
  697. $insert_data['post_status'] = 'Y';
  698. if( $insert_data['post_secret'] != 'Y' )
  699. {
  700. $this->_naver_syndi($insert_data);
  701. }
  702. alert(langs('게시판/msg/write_success'), base_url("board/{$brd_key}/{$post_idx}"));
  703. exit;
  704. }
  705. else {
  706. // 수정일경우를 대비해서 글 고유 pk 넘김
  707. $this->data['post_idx'] = (int)$post_idx;
  708. $this->data['post_parent'] = $this->input->get('post_parent', TRUE);
  709. $this->data['view'] = empty($post_idx) ? array() : $this->board_model->get_post($brd_key, $post_idx, FALSE);
  710. $this->data['parent'] = empty($this->data['post_parent']) ? array() : $this->board_model->get_post($brd_key, $this->data['post_parent'], FALSE);
  711. if( $this->data['post_idx'] && (! $this->data['view'] OR ! isset($this->data['view']['post_idx']) OR !$this->data['view']['post_idx'] ) )
  712. {
  713. alert(langs('게시판/msg/invalid_access'));
  714. exit;
  715. }
  716. $hidden = array();
  717. // 답글작성일경우 부모 번호 넘겨주기
  718. if($this->data['post_parent']) {
  719. $hidden['post_parent'] = $this->data['post_parent'];
  720. $this->data['view']['post_title'] = "RE : ". $this->data['parent']['post_title'];
  721. }
  722. $write_url = base_url("board/{$brd_key}/write" . ($post_idx ? '/'.$post_idx : ''), SSL_VERFIY ? "https":'http');
  723. $this->data['form_open'] = form_open_multipart($write_url, array("data-form"=>"post", "id"=>"form-post","autocomplete"=>"off"), $hidden);
  724. $this->data['form_close'] = form_close();
  725. // 메타태그 설정
  726. $this->site->meta_title = $this->data['board']['brd_title'] . ' - '. ((empty($post_idx)) ? '새 글 작성' : '글 수정'); // 이 페이지의 타이틀
  727. $this->site->meta_description = $this->data['board']['brd_description']; // 이 페이지의 요약 설명
  728. $this->site->meta_keywords = $this->data['board']['brd_keywords']; // 이 페이지에서 추가할 키워드 메타 태그
  729. $this->site->meta_image = ""; // 이 페이지에서 표시할 대표이미지
  730. // 레이아웃 & 뷰파일 설정
  731. $this->view = "write";
  732. }
  733. }
  734. /**
  735. * 첨부파일 다운로드 하기
  736. * @param $brd_key
  737. * @param $post_idx
  738. * @param $bmt_idx
  739. */
  740. public function download($brd_key, $post_idx, $att_idx)
  741. {
  742. if(empty($brd_key) OR empty($post_idx) OR empty($att_idx))
  743. {
  744. alert(langs( 'board/msg/invalid_access' ));
  745. }
  746. $this->board_common($brd_key, 'download');
  747. if(! $att = $this->db->where('att_idx', $att_idx)->where('brd_key', $brd_key)->where('post_idx', $post_idx)->get('board_attach')->row_array())
  748. {
  749. alert(langs( 'board/msg/invalid_attach_file' ));
  750. exit;
  751. }
  752. $post = $this->board_model->get_post($brd_key, $post_idx, TRUE);
  753. $this->point_process('brd_point_download', "POST_ATTACH_DOWNLOAD", "첨부파일 다운로드", $post_idx, ($post['mem_userid'] == $this->member->info('userid')) );
  754. $this->load->helper('download');
  755. $data = file_get_contents(FCPATH.$att['att_filename']);
  756. $name = urlencode($att['att_origin']);
  757. force_download($name, $data);
  758. }
  759. /**
  760. * 게시판에 관련된 포인트를 처리합니다.
  761. * @param $type
  762. * @param $mpo_type
  763. * @param $msg
  764. * @param $target_idx
  765. */
  766. public function point_process($type, $mpo_type, $msg, $target_idx, $check_writer=FALSE)
  767. {
  768. // 첨부파일 다운시 필요한 포인트가 있다면 확인
  769. if( $this->data['board'][$type] != 0 )
  770. {
  771. // 회원일 경우만 실행한다.
  772. if( $this->member->is_login() )
  773. {
  774. // 본인의 것은 실행하지 않는다.
  775. if( ! $check_writer )
  776. {
  777. // 이미 처리된 포인트 내역이 있는지 확인한다. (포인트는 한번만 차감/등록한다.)
  778. $res = (int) $this->db->select('COUNT(*) as cnt')->where('target_type', $mpo_type)->where('target_idx', $target_idx)->where('mem_idx', $this->member->is_login())->get('member_point')->row(0)->cnt;
  779. if( $res <= 0)
  780. {
  781. // 포인트 차감일 경우, 해당 포인트가 있는지 확인한다
  782. if( (int)$this->data['board'][$type] < 0)
  783. {
  784. if( (int)$this->member->info('point') < abs((int)$this->data['board'][$type]) )
  785. {
  786. alert(langs('회원/point/not_enough') . "({$this->data['board'][$type]})");
  787. exit;
  788. }
  789. }
  790. // 포인트 실제 처리
  791. $this->member->add_point($this->member->is_login(), $this->data['board'][$type], FALSE, $mpo_type, $msg, $target_idx);
  792. }
  793. }
  794. }
  795. // 비회원일 경우 아예 실행이 불가능하다.
  796. else
  797. {
  798. alert(langs('공통/msg/login_required'));
  799. exit;
  800. }
  801. }
  802. }
  803. /**
  804. * 게시판에 관련된 포인트를 삭제등의 행동시 취소합니다.
  805. * @param $target_type
  806. * @param $target_idx
  807. * @param $msg
  808. */
  809. public function point_cancel($target_type, $target_idx, $msg)
  810. {
  811. // 댓글등록으로 증가한 포인트가 있다면 다시 감소
  812. // 포인트 입력처리
  813. if( $this->member->is_login() )
  814. {
  815. $ret = $this->db->where('target_type', $target_type)->where('mem_idx', $this->member->is_login() )->where('target_idx', $target_idx)->where('mpo_value !=','0')->get('member_point')->row_array();
  816. if( $ret && isset($ret['mpo_value']) && $ret['mpo_value'] != 0 )
  817. {
  818. $this->member->add_point($this->member->is_login(), - $ret['mpo_value'], FALSE, $target_type, $msg, $target_idx);
  819. }
  820. }
  821. }
  822. /**
  823. * 게시글 삭제
  824. * @param $brd_key
  825. * @param $post_idx
  826. */
  827. public function delete($brd_key, $post_idx)
  828. {
  829. $this->board_common($brd_key);
  830. $this->_modify_auth($brd_key, $post_idx);
  831. $post = $this->board_model->get_post($brd_key, $post_idx, FALSE);
  832. $len = strlen($post['post_reply']);
  833. if( $len < 0 ) $len = 0;
  834. $reply = substr($post['post_reply'], 0, $len);
  835. // 게시글에 답글이 달려있는경우 삭제할 수 없다
  836. $count = (int) $this->db->select('COUNT(*) AS cnt')
  837. ->where('post_idx <>', $post['post_idx'])
  838. ->where('post_num', $post['post_num'])
  839. ->where('brd_key', $post['brd_key'])
  840. ->like('post_reply', $reply, 'after')
  841. ->where_in('post_status',array('Y','B'))
  842. ->get('board_post')
  843. ->row(0)
  844. ->cnt;
  845. if( $count > 1 )
  846. {
  847. alert(langs('게시판/msg/cant_delete_because_child'));
  848. exit;
  849. }
  850. if( $this->db->where('post_idx', $post_idx)->set('post_status', 'N')->update('board_post') )
  851. {
  852. $this->point_cancel("POST_WRITE", $post_idx, "게시글 삭제");
  853. alert( langs('게시판/msg/delete_success'), base_url("board/{$brd_key}") );
  854. exit;
  855. }
  856. else
  857. {
  858. alert( langs('게시판/msg/delete_failed') );
  859. exit;
  860. }
  861. }
  862. /**
  863. * 권한 확인
  864. * @return array
  865. */
  866. private function check_auth()
  867. {
  868. $return = array();
  869. $return['admin'] = ( ( $this->member->is_super() ) OR ( $this->board_model->is_admin($this->data['board']['brd_key'], $this->member->is_login())) );
  870. $return['read'] = ( $return['admin'] OR ($this->member->level() >= $this->data['board']['brd_lv_read']) );
  871. $return['list'] = ( $return['admin'] OR ($this->member->level() >= $this->data['board']['brd_lv_list']) );
  872. $return['write'] = ( $return['admin'] OR ($this->member->level() >= $this->data['board']['brd_lv_write']) );
  873. $return['upload'] = ( $return['admin'] OR ($this->member->level() >= $this->data['board']['brd_lv_upload']) );
  874. $return['download'] = ( $return['admin'] OR ($this->member->level() >= $this->data['board']['brd_lv_download']) );
  875. $return['comment'] = ( $return['admin'] OR ($this->member->level() >= $this->data['board']['brd_lv_comment']) );
  876. $return['reply'] = ( $return['admin'] OR ($this->member->level() >= $this->data['board']['brd_lv_reply']) );
  877. return $return;
  878. }
  879. /**
  880. * 게시판마다 공통으로 불러오기
  881. * @param $brd_key
  882. * @param string $check_type
  883. */
  884. private function board_common($brd_key, $check_type="")
  885. {
  886. $this->param = array();
  887. // 넘어온 값을 정리
  888. $this->data['board'] = $this->board_model->get_board($brd_key, FALSE);
  889. if(empty($this->data['board']) OR ! isset($this->data['board']['brd_key']) )
  890. {
  891. alert('존재하지 않는 게시판 또는 삭제된 게시판입니다.');
  892. exit;
  893. }
  894. $this->data['board']['auth'] = $this->check_auth();
  895. $this->data['board']['link'] = $this->board_model->get_link($brd_key);
  896. // front-end 에서 알아보기쉽게 값을 정리
  897. $this->data['use_wysiwyg'] = ($this->data['board']['brd_use_wysiwyg'] == 'Y');
  898. $this->data['use_secret'] = ($this->member->is_login() && $this->data['board']['brd_use_secret'] == 'Y');
  899. $this->data['use_notice'] = ($this->data['board']['auth']['admin']);
  900. $this->data['use_category'] = (($this->data['board']['brd_use_category'] == 'Y') && (count($this->data['board']['category']) > 0));
  901. $this->data['use_attach'] = ($this->data['board']['brd_use_attach'] == 'Y' && $this->data['board']['auth']['upload']);
  902. // 접속한 기기에 따라 설정을 바꾼다.
  903. $this->data['board']['brd_skin'] = ($this->site->viewmode == DEVICE_MOBILE) ? $this->data['board']['brd_skin_m'] : $this->data['board']['brd_skin'];
  904. $this->data['board']['brd_title'] = ($this->site->viewmode == DEVICE_MOBILE) ? ($this->data['board']['brd_title_m']?$this->data['board']['brd_title_m']:$this->data['board']['brd_title']) : $this->data['board']['brd_title'];
  905. $this->data['board']['brd_page_rows'] = ($this->site->viewmode == DEVICE_MOBILE) ? $this->data['board']['brd_page_rows_m'] : $this->data['board']['brd_page_rows'];
  906. $this->data['board']['brd_fixed_num'] = ($this->site->viewmode == DEVICE_MOBILE) ? $this->data['board']['brd_fixed_num_m'] : $this->data['board']['brd_fixed_num'];
  907. unset($this->data['board']['brd_skin_m'], $this->data['board']['brd_title_m'], $this->data['board']['brd_page_rows_m'], $this->data['board']['brd_fixed_num_m']);
  908. $this->data['category_list'] = ( $this->data['use_category'] && count($this->data['board']['category']) > 0 ) ? $this->data['board']['category'] : NULL;
  909. // 리스트 불러오기
  910. $this->param['page'] = $this->data['page'] = (int)$this->input->get('page', TRUE) >= 1 ? $this->input->get('page', TRUE) : 1;
  911. $this->param['scol'] = $this->data['scol'] = $this->input->get('scol', TRUE);
  912. $this->param['stxt'] = $this->data['stxt'] = $this->input->get('stxt', TRUE);
  913. $this->param['category'] = $this->data['category'] = $this->input->get('category', TRUE);
  914. if( $check_type && ! $this->data['board']['auth'][$check_type] )
  915. {
  916. $msg = langs('게시판/msg/list_unauthorize');;
  917. if( $check_type == 'write' ) $msg = langs('게시판/msg/write_unauthorize');
  918. else if ($check_type == 'view' || $check_type == 'read') $msg = langs('게시판/msg/read_unauthorize');
  919. else if ($check_type == 'download') $msg = langs('게시판/msg/download_unauthorize');
  920. else if ($check_type == 'reply') $msg = langs('게시판/msg/reply_unauthorize');
  921. else if ($check_type == 'comment') $msg = langs('게시판/msg/comment_unauthorize');
  922. alert($msg);
  923. exit;
  924. }
  925. $use_list = TRUE;
  926. if( $check_type == 'download' OR $check_type == 'comment' OR $check_type == 'write' OR $check_type == 'reply' )
  927. {
  928. $use_list = FALSE;
  929. }
  930. else if( ($check_type == "view" OR $check_type == "read" ) && $this->data['board']['brd_use_view_list'] == 'N' )
  931. {
  932. $use_list = FALSE;
  933. }
  934. $this->data['list'] = array(
  935. "list"=>array(),
  936. "total_count" => 0
  937. );
  938. $this->data['pagination'] = "";
  939. if( $use_list )
  940. {
  941. // 게시글 목록 가져오기
  942. $this->data['list'] = $this->board_model->post_list($this->data['board'], $this->param);
  943. // 페이지네이션 세팅
  944. $paging['page'] = $this->param['page'];
  945. $paging['page_rows'] = $this->data['board']['brd_page_rows'];
  946. $paging['total_rows'] = $this->data['list']['total_count'];
  947. $paging['fixed_page_num'] = $this->data['board']['brd_fixed_num'];
  948. $this->load->library('paging', $paging);
  949. $this->data['pagination'] = $this->paging->create();
  950. }
  951. // 레이아웃 정의
  952. $this->theme = $this->site->get_layout();
  953. $this->skin_type = "board";
  954. $this->skin = $this->data['board']['brd_skin'];
  955. $this->active = "/board/".$this->data['board']['brd_key'];
  956. }
  957. /**
  958. * 네이버 신디케이션 전송
  959. * @param $post_id
  960. * @param $board
  961. * @param string $status
  962. * @return mixed|void
  963. */
  964. public function _naver_syndi($post)
  965. {
  966. // curl library 가 지원되어야 합니다.
  967. if ( ! function_exists('curl_init')) {
  968. return;
  969. }
  970. // 네이버 신디케이션 key가 없으면 리턴
  971. if ( empty($this->site->config('naver_syndication_key')) ) {
  972. return;
  973. }
  974. // 게시판이 네이버 신디케이션 미사용이면 리턴
  975. if ( $this->data['board']['brd_use_naver_syndi'] != 'Y')
  976. {
  977. return;
  978. }
  979. // 비회원 글읽기가 불가능한경우 리턴
  980. if( $this->data['board']['brd_lv_read'] != 0 )
  981. {
  982. return;
  983. }
  984. // 비밀글이거나 정상상태의 글이 아닌경우 리턴
  985. if( $post['post_status'] != 'Y' OR $post['post_secret'] == 'Y' ) {
  986. return;
  987. }
  988. $httpheader = 'Authorization: Bearer ' . $this->site->config('naver_syndication_key');
  989. $ping_url = urlencode(base_url('helptool/naversyndi/' . $this->data['board']['brd_key'] . '/' . $post['post_idx']));
  990. $client_opt = array(
  991. CURLOPT_URL => 'https://apis.naver.com/crawl/nsyndi/v2',
  992. CURLOPT_POST => true,
  993. CURLOPT_POSTFIELDS => 'ping_url=' . $ping_url,
  994. CURLOPT_RETURNTRANSFER => true,
  995. CURLOPT_CONNECTTIMEOUT => 10,
  996. CURLOPT_TIMEOUT => 10,
  997. CURLOPT_HTTPHEADER => array('Host: apis.naver.com', 'Pragma: no-cache', 'Accept: */*', $httpheader)
  998. );
  999. $ch = curl_init();
  1000. curl_setopt_array($ch, $client_opt);
  1001. $exec = curl_exec($ch);
  1002. curl_close($ch);
  1003. if( $exec )
  1004. {
  1005. $xmlData = simplexml_load_string($exec);
  1006. $log_data = array(
  1007. "post_idx" => $post['post_idx'],
  1008. "brd_key" => $this->data['board']['brd_key'],
  1009. "bsl_return_code" => $xmlData->error_code ? $xmlData->error_code: '000',
  1010. 'bsl_return_message' => $xmlData->message,
  1011. "bsl_receipt_number" => $xmlData->receipt_number,
  1012. "bsl_regtime" => date('Y-m-d H:i:s')
  1013. );
  1014. $this->db->insert('board_syndi_log', $log_data);
  1015. }
  1016. return $exec;
  1017. }
  1018. }