Просмотр файла attach_mod/posting_attachments.php

Размер файла: 48.45Kb
  1. <?php
  2. /***************************************************************************
  3. * mides.ru
  4. * -------------------
  5. ***************************************************************************/
  6. if ( !defined('IN_PHPBB') )
  7. {
  8. die('Hacking attempt');
  9. exit;
  10. }
  11.  
  12. $importurl = trim($HTTP_POST_VARS['httpurl']);
  13. if ($importurl == "http://") { $importurl = NULL; }
  14. if ($importurl<>NULL)
  15. {
  16. $path = preg_replace("~.*://[^/]*(/.*)~","\\1",$importurl,1);
  17. $HTTP_POST_FILES['fileupload']['name'] = basename($path);
  18. $HTTP_POST_FILES['fileupload']['tmp_name'] = $importurl;
  19. $HTTP_POST_FILES['fileupload']['type'] = '';
  20. }
  21.  
  22. class attach_parent
  23. {
  24. var $post_attach = false;
  25. var $attach_filename = '';
  26. var $filename = '';
  27. var $type = '';
  28. var $extension = '';
  29. var $file_comment = '';
  30. var $num_attachments = 0;
  31. var $filesize = 0;
  32. var $filetime = 0;
  33. var $thumbnail = 0;
  34. var $page = 0;
  35.  
  36. var $add_attachment_body = 0;
  37. var $posted_attachments_body = 0;
  38.  
  39. function attach_parent()
  40. {
  41. global $HTTP_POST_VARS, $HTTP_POST_FILES;
  42. $this->add_attachment_body = get_var('add_attachment_body', 0);
  43. $this->posted_attachments_body = get_var('posted_attachments_body', 0);
  44.  
  45. $this->file_comment = get_var('filecomment', '');
  46. $this->attachment_id_list = get_var('attach_id_list', array(0));
  47. $this->attachment_comment_list = get_var('comment_list', array(''), true);
  48. $this->attachment_filesize_list = get_var('filesize_list', array(0));
  49. $this->attachment_filetime_list = get_var('filetime_list', array(0));
  50. $this->attachment_filename_list = get_var('filename_list', array(''));
  51. $this->attachment_extension_list = get_var('extension_list', array(''));
  52. $this->attachment_mimetype_list = get_var('mimetype_list', array(''));
  53.  
  54. $this->filename = (isset($HTTP_POST_FILES['fileupload']) && isset($HTTP_POST_FILES['fileupload']['name']) && $HTTP_POST_FILES['fileupload']['name'] != 'none') ? trim(stripslashes($HTTP_POST_FILES['fileupload']['name'])) : '';
  55.  
  56. $this->attachment_list = get_var('attachment_list', array(''));
  57. $this->attachment_thumbnail_list = get_var('attach_thumbnail_list', array(0));
  58. }
  59.  
  60. function get_quota_limits($userdata_quota, $user_id = 0)
  61. {
  62. global $attach_config, $db;
  63.  
  64. $priority = 'user;group';
  65.  
  66. if ($userdata_quota['user_level'] == ADMIN)
  67. {
  68. $attach_config['pm_filesize_limit'] = 0;
  69. $attach_config['upload_filesize_limit'] = 0;
  70. return;
  71. }
  72.  
  73. if ($this->page == PAGE_PRIVMSGS)
  74. {
  75. $quota_type = QUOTA_PM_LIMIT;
  76. $limit_type = 'pm_filesize_limit';
  77. $default = 'max_filesize_pm';
  78. }
  79. else
  80. {
  81. $quota_type = QUOTA_UPLOAD_LIMIT;
  82. $limit_type = 'upload_filesize_limit';
  83. $default = 'attachment_quota';
  84. }
  85.  
  86. if (!$user_id)
  87. {
  88. $user_id = intval($userdata_quota['user_id']);
  89. }
  90. $priority = explode(';', $priority);
  91. $found = false;
  92.  
  93. for ($i = 0; $i < sizeof($priority); $i++)
  94. {
  95. if (($priority[$i] == 'group') && (!$found))
  96. {
  97. $sql = 'SELECT u.group_id
  98. FROM ' . USER_GROUP_TABLE . ' u, ' . GROUPS_TABLE . ' g
  99. WHERE g.group_single_user = 0
  100. AND u.user_pending = 0
  101. AND u.group_id = g.group_id
  102. AND u.user_id = ' . $user_id;
  103. if (!($result = $db->sql_query($sql)))
  104. {
  105. message_die(GENERAL_ERROR, 'Could not get User Group', '', __LINE__, __FILE__, $sql);
  106. }
  107.  
  108. $rows = $db->sql_fetchrowset($result);
  109. $num_rows = $db->sql_numrows($result);
  110. $db->sql_freeresult($result);
  111.  
  112. if ($num_rows > 0)
  113. {
  114. $group_id = array();
  115.  
  116. for ($j = 0; $j < $num_rows; $j++)
  117. {
  118. $group_id[] = (int) $rows[$j]['group_id'];
  119. }
  120.  
  121. $sql = 'SELECT l.quota_limit
  122. FROM ' . QUOTA_TABLE . ' q, ' . QUOTA_LIMITS_TABLE . ' l
  123. WHERE q.group_id IN (' . implode(', ', $group_id) . ')
  124. AND q.group_id <> 0
  125. AND q.quota_type = ' . $quota_type . '
  126. AND q.quota_limit_id = l.quota_limit_id
  127. ORDER BY l.quota_limit DESC
  128. LIMIT 1';
  129.  
  130. if (!($result = $db->sql_query($sql)))
  131. {
  132. message_die(GENERAL_ERROR, 'Could not get Group Quota', '', __LINE__, __FILE__, $sql);
  133. }
  134.  
  135. if ($db->sql_numrows($result) > 0)
  136. {
  137. $row = $db->sql_fetchrow($result);
  138. $attach_config[$limit_type] = $row['quota_limit'];
  139. $found = TRUE;
  140. }
  141. $db->sql_freeresult($result);
  142. }
  143. }
  144.  
  145. if ($priority[$i] == 'user' && !$found)
  146. {
  147. $sql = 'SELECT l.quota_limit
  148. FROM ' . QUOTA_TABLE . ' q, ' . QUOTA_LIMITS_TABLE . ' l
  149. WHERE q.user_id = ' . $user_id . '
  150. AND q.user_id <> 0
  151. AND q.quota_type = ' . $quota_type . '
  152. AND q.quota_limit_id = l.quota_limit_id
  153. LIMIT 1';
  154.  
  155. if (!($result = $db->sql_query($sql)))
  156. {
  157. message_die(GENERAL_ERROR, 'Could not get User Quota', '', __LINE__, __FILE__, $sql);
  158. }
  159.  
  160. if ($db->sql_numrows($result) > 0)
  161. {
  162. $row = $db->sql_fetchrow($result);
  163. $attach_config[$limit_type] = $row['quota_limit'];
  164. $found = TRUE;
  165. }
  166. $db->sql_freeresult($result);
  167. }
  168. }
  169.  
  170. if (!$found)
  171. {
  172. $quota_id = ($quota_type == QUOTA_UPLOAD_LIMIT) ? $attach_config['default_upload_quota'] : $attach_config['default_pm_quota'];
  173.  
  174. if ($quota_id == 0)
  175. {
  176. $attach_config[$limit_type] = $attach_config[$default];
  177. }
  178. else
  179. {
  180. $sql = 'SELECT quota_limit
  181. FROM ' . QUOTA_LIMITS_TABLE . '
  182. WHERE quota_limit_id = ' . (int) $quota_id . '
  183. LIMIT 1';
  184.  
  185. if (!($result = $db->sql_query($sql)))
  186. {
  187. message_die(GENERAL_ERROR, 'Could not get Default Quota Limit', '', __LINE__, __FILE__, $sql);
  188. }
  189. if ($db->sql_numrows($result) > 0)
  190. {
  191. $row = $db->sql_fetchrow($result);
  192. $attach_config[$limit_type] = $row['quota_limit'];
  193. }
  194. else
  195. {
  196. $attach_config[$limit_type] = $attach_config[$default];
  197. }
  198. $db->sql_freeresult($result);
  199. }
  200. }
  201.  
  202. if ($quota_type == QUOTA_UPLOAD_LIMIT)
  203. {
  204. if ($attach_config[$limit_type] > $attach_config[$default])
  205. {
  206. $attach_config[$limit_type] = $attach_config[$default];
  207. }
  208. }
  209. }
  210.  
  211. function handle_attachments($mode)
  212. {
  213. global $is_auth, $attach_config, $refresh, $HTTP_POST_VARS, $post_id, $submit, $preview, $error, $error_msg, $lang, $template, $userdata, $db;
  214.  
  215. if ($this->page == PAGE_PRIVMSGS)
  216. {
  217. global $privmsg_id;
  218.  
  219. $post_id = $privmsg_id;
  220.  
  221. if ($mode == 'post')
  222. {
  223. $mode = 'newtopic';
  224. }
  225. else if ($mode == 'edit')
  226. {
  227. $mode = 'editpost';
  228. }
  229.  
  230. if ($userdata['user_level'] == ADMIN)
  231. {
  232. $is_auth['auth_attachments'] = 1;
  233. $max_attachments = ADMIN_MAX_ATTACHMENTS;
  234. }
  235. else
  236. {
  237. $is_auth['auth_attachments'] = intval($attach_config['allow_pm_attach']);
  238. $max_attachments = intval($attach_config['max_attachments_pm']);
  239. }
  240.  
  241. $sql_id = 'privmsgs_id';
  242. }
  243. else
  244. {
  245. if ($userdata['user_level'] == ADMIN)
  246. {
  247. $max_attachments = ADMIN_MAX_ATTACHMENTS;
  248. }
  249. else
  250. {
  251. $max_attachments = intval($attach_config['max_attachments']);
  252. }
  253.  
  254. $sql_id = 'post_id';
  255. }
  256.  
  257. if (intval($attach_config['disable_mod']) || !$is_auth['auth_attachments'])
  258. {
  259. return false;
  260. }
  261.  
  262. $allowed_attach_ids = array();
  263. if ($post_id)
  264. {
  265. $sql = 'SELECT attach_id
  266. FROM ' . ATTACHMENTS_TABLE . '
  267. WHERE ' . $sql_id . ' = ' . $post_id;
  268. $result = $db->sql_query($sql);
  269.  
  270. if (!$result)
  271. {
  272. message_die(GENERAL_ERROR, 'Unable to get attachment information.', '', __LINE__, __FILE__, $sql);
  273. }
  274.  
  275. while ($_row = $db->sql_fetchrow($result))
  276. {
  277. $allowed_attach_ids[] = $_row['attach_id'];
  278. }
  279. $db->sql_freeresult($result);
  280. }
  281.  
  282. $actual_id_list = get_var('attach_id_list', array(0));
  283. $actual_list = get_var('attachment_list', array(''));
  284.  
  285. for ($i = 0; $i < sizeof($actual_list); $i++)
  286. {
  287. if ($actual_id_list[$i] != 0)
  288. {
  289. if (!in_array($actual_id_list[$i], $allowed_attach_ids))
  290. {
  291. message_die(CRITICAL_ERROR, 'You tried to change an attachment you do not have access to', '');
  292. }
  293. }
  294. else
  295. {
  296. if (physical_filename_already_stored($actual_list[$i]))
  297. {
  298. message_die(CRITICAL_ERROR, 'You tried to change an attachment you do not have access to', '');
  299. }
  300. }
  301. }
  302.  
  303. $attachments = array();
  304.  
  305. if (!$refresh)
  306. {
  307. $add = (isset($HTTP_POST_VARS['add_attachment'])) ? TRUE : FALSE;
  308. $delete = (isset($HTTP_POST_VARS['del_attachment'])) ? TRUE : FALSE;
  309. $edit = (isset($HTTP_POST_VARS['edit_comment'])) ? TRUE : FALSE;
  310. $update_attachment = (isset($HTTP_POST_VARS['update_attachment'])) ? TRUE : FALSE;
  311. $del_thumbnail = (isset($HTTP_POST_VARS['del_thumbnail'])) ? TRUE : FALSE;
  312.  
  313. $add_attachment_box = (!empty($HTTP_POST_VARS['add_attachment_box'])) ? TRUE : FALSE;
  314. $posted_attachments_box = (!empty($HTTP_POST_VARS['posted_attachments_box'])) ? TRUE : FALSE;
  315.  
  316. $refresh = $add || $delete || $edit || $del_thumbnail || $update_attachment || $add_attachment_box || $posted_attachments_box;
  317. }
  318.  
  319. if ($this->page == PAGE_PRIVMSGS)
  320. {
  321. $attachments = get_attachments_from_pm($post_id);
  322. }
  323. else
  324. {
  325. $attachments = get_attachments_from_post($post_id);
  326. }
  327.  
  328. if ($this->page == PAGE_PRIVMSGS)
  329. {
  330. if ($userdata['user_level'] == ADMIN)
  331. {
  332. $auth = TRUE;
  333. }
  334. else
  335. {
  336. $auth = (intval($attach_config['allow_pm_attach'])) ? TRUE : FALSE;
  337. }
  338.  
  339. if (sizeof($attachments) == 1)
  340. {
  341. $template->assign_block_vars('switch_attachments',array());
  342.  
  343. $template->assign_vars(array(
  344. 'L_DELETE_ATTACHMENTS' => $lang['Delete_attachment'])
  345. );
  346. }
  347. else if (sizeof($attachments) > 0)
  348. {
  349. $template->assign_block_vars('switch_attachments',array());
  350.  
  351. $template->assign_vars(array(
  352. 'L_DELETE_ATTACHMENTS' => $lang['Delete_attachments'])
  353. );
  354. }
  355. }
  356. else
  357. {
  358. $auth = ($is_auth['auth_edit'] || $is_auth['auth_mod']) ? TRUE : FALSE;
  359. }
  360.  
  361. if (!$submit && $mode == 'editpost' && $auth)
  362. {
  363. if (!$refresh && !$preview && !$error && !isset($HTTP_POST_VARS['del_poll_option']))
  364. {
  365. for ($i = 0; $i < sizeof($attachments); $i++)
  366. {
  367. $this->attachment_list[] = $attachments[$i]['physical_filename'];
  368. $this->attachment_comment_list[] = $attachments[$i]['comment'];
  369. $this->attachment_filename_list[] = $attachments[$i]['real_filename'];
  370. $this->attachment_extension_list[] = $attachments[$i]['extension'];
  371. $this->attachment_mimetype_list[] = $attachments[$i]['mimetype'];
  372. $this->attachment_filesize_list[] = $attachments[$i]['filesize'];
  373. $this->attachment_filetime_list[] = $attachments[$i]['filetime'];
  374. $this->attachment_id_list[] = $attachments[$i]['attach_id'];
  375. $this->attachment_thumbnail_list[] = $attachments[$i]['thumbnail'];
  376. }
  377. }
  378. }
  379.  
  380. $this->num_attachments = sizeof($this->attachment_list);
  381. if ($submit && $mode != 'vote')
  382. {
  383. if ($mode == 'newtopic' || $mode == 'reply' || $mode == 'editpost')
  384. {
  385. if ($this->filename != '')
  386. {
  387. if ($this->num_attachments < intval($max_attachments))
  388. {
  389. $this->upload_attachment($this->page);
  390.  
  391. if (!$error && $this->post_attach)
  392. {
  393. array_unshift($this->attachment_list, $this->attach_filename);
  394. array_unshift($this->attachment_comment_list, $this->file_comment);
  395. array_unshift($this->attachment_filename_list, $this->filename);
  396. array_unshift($this->attachment_extension_list, $this->extension);
  397. array_unshift($this->attachment_mimetype_list, $this->type);
  398. array_unshift($this->attachment_filesize_list, $this->filesize);
  399. array_unshift($this->attachment_filetime_list, $this->filetime);
  400. array_unshift($this->attachment_id_list, '0');
  401. array_unshift($this->attachment_thumbnail_list, $this->thumbnail);
  402.  
  403. $this->file_comment = '';
  404.  
  405. $this->post_attach = FALSE;
  406. }
  407. }
  408. else
  409. {
  410. $error = TRUE;
  411. if (!empty($error_msg))
  412. {
  413. $error_msg .= '<br />';
  414. }
  415. $error_msg .= sprintf($lang['Too_many_attachments'], intval($max_attachments));
  416. }
  417. }
  418. }
  419. }
  420.  
  421. if ($preview || $refresh || $error)
  422. {
  423. $delete_attachment = (isset($HTTP_POST_VARS['del_attachment'])) ? TRUE : FALSE;
  424. $delete_thumbnail = (isset($HTTP_POST_VARS['del_thumbnail'])) ? TRUE : FALSE;
  425.  
  426. $add_attachment = (isset($HTTP_POST_VARS['add_attachment'])) ? TRUE : FALSE;
  427. $edit_attachment = (isset($HTTP_POST_VARS['edit_comment'])) ? TRUE : FALSE;
  428. $update_attachment = (isset($HTTP_POST_VARS['update_attachment']) ) ? TRUE : FALSE;
  429.  
  430. if ($delete_attachment || $delete_thumbnail)
  431. {
  432. $actual_id_list = get_var('attach_id_list', array(0));
  433. $actual_comment_list = get_var('comment_list', array(''), true);
  434. $actual_filename_list = get_var('filename_list', array(''));
  435. $actual_extension_list = get_var('extension_list', array(''));
  436. $actual_mimetype_list = get_var('mimetype_list', array(''));
  437. $actual_filesize_list = get_var('filesize_list', array(0));
  438. $actual_filetime_list = get_var('filetime_list', array(0));
  439. $actual_list = get_var('attachment_list', array(''));
  440. $actual_thumbnail_list = get_var('attach_thumbnail_list', array(0));
  441.  
  442. $this->attachment_list = array();
  443. $this->attachment_comment_list = array();
  444. $this->attachment_filename_list = array();
  445. $this->attachment_extension_list = array();
  446. $this->attachment_mimetype_list = array();
  447. $this->attachment_filesize_list = array();
  448. $this->attachment_filetime_list = array();
  449. $this->attachment_id_list = array();
  450. $this->attachment_thumbnail_list = array();
  451.  
  452. if (isset($HTTP_POST_VARS['attachment_list']))
  453. {
  454. for ($i = 0; $i < sizeof($actual_list); $i++)
  455. {
  456. $restore = FALSE;
  457. $del_thumb = FALSE;
  458.  
  459. if ($delete_thumbnail)
  460. {
  461. if (!isset($HTTP_POST_VARS['del_thumbnail'][$actual_list[$i]]))
  462. {
  463. $restore = TRUE;
  464. }
  465. else
  466. {
  467. $del_thumb = TRUE;
  468. }
  469. }
  470.  
  471. if ($delete_attachment)
  472. {
  473. if (!isset($HTTP_POST_VARS['del_attachment'][$actual_list[$i]]))
  474. {
  475. $restore = TRUE;
  476. }
  477. }
  478.  
  479. if ($restore)
  480. {
  481. $this->attachment_list[] = $actual_list[$i];
  482. $this->attachment_comment_list[] = $actual_comment_list[$i];
  483. $this->attachment_filename_list[] = $actual_filename_list[$i];
  484. $this->attachment_extension_list[] = $actual_extension_list[$i];
  485. $this->attachment_mimetype_list[] = $actual_mimetype_list[$i];
  486. $this->attachment_filesize_list[] = $actual_filesize_list[$i];
  487. $this->attachment_filetime_list[] = $actual_filetime_list[$i];
  488. $this->attachment_id_list[] = $actual_id_list[$i];
  489. $this->attachment_thumbnail_list[] = $actual_thumbnail_list[$i];
  490. }
  491. else if (!$del_thumb)
  492. {
  493. if ($actual_id_list[$i] == '0' )
  494. {
  495. unlink_attach($actual_list[$i]);
  496. if ($actual_thumbnail_list[$i] == 1)
  497. {
  498. unlink_attach($actual_list[$i], MODE_THUMBNAIL);
  499. }
  500. }
  501. else
  502. {
  503. delete_attachment($post_id, $actual_id_list[$i], $this->page);
  504. }
  505. }
  506. else if ($del_thumb)
  507. {
  508. $this->attachment_list[] = $actual_list[$i];
  509. $this->attachment_comment_list[] = $actual_comment_list[$i];
  510. $this->attachment_filename_list[] = $actual_filename_list[$i];
  511. $this->attachment_extension_list[] = $actual_extension_list[$i];
  512. $this->attachment_mimetype_list[] = $actual_mimetype_list[$i];
  513. $this->attachment_filesize_list[] = $actual_filesize_list[$i];
  514. $this->attachment_filetime_list[] = $actual_filetime_list[$i];
  515. $this->attachment_id_list[] = $actual_id_list[$i];
  516. $this->attachment_thumbnail_list[] = 0;
  517.  
  518. if ($actual_id_list[$i] == 0)
  519. {
  520. unlink_attach($actual_list[$i], MODE_THUMBNAIL);
  521. }
  522. else
  523. {
  524. $sql = 'UPDATE ' . ATTACHMENTS_DESC_TABLE . '
  525. SET thumbnail = 0
  526. WHERE attach_id = ' . (int) $actual_id_list[$i];
  527.  
  528. if (!($db->sql_query($sql)))
  529. {
  530. message_die(GENERAL_ERROR, 'Unable to update ' . ATTACHMENTS_DESC_TABLE . ' Table.', '', __LINE__, __FILE__, $sql);
  531. }
  532. }
  533. }
  534. }
  535. }
  536. }
  537. else if ($edit_attachment || $update_attachment || $add_attachment || $preview)
  538. {
  539. if ($edit_attachment)
  540. {
  541. $actual_comment_list = get_var('comment_list', array(''), true);
  542. $this->attachment_comment_list = array();
  543.  
  544. for ($i = 0; $i < sizeof($this->attachment_list); $i++)
  545. {
  546. $this->attachment_comment_list[$i] = $actual_comment_list[$i];
  547. }
  548. }
  549. if ($update_attachment)
  550. {
  551. if ($this->filename == '')
  552. {
  553. $error = TRUE;
  554. if(!empty($error_msg))
  555. {
  556. $error_msg .= '<br />';
  557. }
  558. $error_msg .= $lang['Error_empty_add_attachbox'];
  559. }
  560.  
  561. $this->upload_attachment($this->page);
  562.  
  563. if (!$error)
  564. {
  565. $actual_list = get_var('attachment_list', array(''));
  566. $actual_id_list = get_var('attach_id_list', array(0));
  567. $attachment_id = 0;
  568. $actual_element = 0;
  569.  
  570. for ($i = 0; $i < sizeof($actual_id_list); $i++)
  571. {
  572. if (isset($HTTP_POST_VARS['update_attachment'][$actual_id_list[$i]]))
  573. {
  574. $attachment_id = intval($actual_id_list[$i]);
  575. $actual_element = $i;
  576. }
  577. }
  578.  
  579. $sql = 'SELECT physical_filename, comment, thumbnail
  580. FROM ' . ATTACHMENTS_DESC_TABLE . '
  581. WHERE attach_id = ' . (int) $attachment_id;
  582.  
  583. if (!($result = $db->sql_query($sql)))
  584. {
  585. message_die(GENERAL_ERROR, 'Unable to select old Attachment Entry.', '', __LINE__, __FILE__, $sql);
  586. }
  587.  
  588. if ($db->sql_numrows($result) != 1)
  589. {
  590. $error = TRUE;
  591. if(!empty($error_msg))
  592. {
  593. $error_msg .= '<br />';
  594. }
  595. $error_msg .= $lang['Error_missing_old_entry'];
  596. }
  597.  
  598. $row = $db->sql_fetchrow($result);
  599. $db->sql_freeresult($result);
  600.  
  601. $comment = (trim($this->file_comment) == '') ? trim($row['comment']) : trim($this->file_comment);
  602.  
  603. $sql_ary = array(
  604. 'physical_filename' => (string) basename($this->attach_filename),
  605. 'real_filename' => (string) basename($this->filename),
  606. 'comment' => (string) $comment,
  607. 'extension' => (string) strtolower($this->extension),
  608. 'mimetype' => (string) strtolower($this->type),
  609. 'filesize' => (int) $this->filesize,
  610. 'filetime' => (int) $this->filetime,
  611. 'thumbnail' => (int) $this->thumbnail
  612. );
  613. $sql = 'UPDATE ' . ATTACHMENTS_DESC_TABLE . ' SET ' . attach_mod_sql_build_array('UPDATE', $sql_ary) . '
  614. WHERE attach_id = ' . (int) $attachment_id;
  615. if (!($db->sql_query($sql)))
  616. {
  617. message_die(GENERAL_ERROR, 'Unable to update the Attachment.', '', __LINE__, __FILE__, $sql);
  618. }
  619.  
  620. unlink_attach($row['physical_filename']);
  621.  
  622. if (intval($row['thumbnail']) == 1)
  623. {
  624. unlink_attach($row['physical_filename'], MODE_THUMBNAIL);
  625. }
  626.  
  627. $this->attachment_list[$actual_element] = $this->attach_filename;
  628. $this->attachment_comment_list[$actual_element] = $comment;
  629. $this->attachment_filename_list[$actual_element] = $this->filename;
  630. $this->attachment_extension_list[$actual_element] = $this->extension;
  631. $this->attachment_mimetype_list[$actual_element] = $this->type;
  632. $this->attachment_filesize_list[$actual_element] = $this->filesize;
  633. $this->attachment_filetime_list[$actual_element] = $this->filetime;
  634. $this->attachment_id_list[$actual_element] = $actual_id_list[$actual_element];
  635. $this->attachment_thumbnail_list[$actual_element] = $this->thumbnail;
  636. $this->file_comment = '';
  637. }
  638. }
  639. if (($add_attachment || $preview) && $this->filename != '')
  640. {
  641. if ($this->num_attachments < intval($max_attachments))
  642. {
  643. $this->upload_attachment($this->page);
  644.  
  645. if (!$error)
  646. {
  647. array_unshift($this->attachment_list, $this->attach_filename);
  648. array_unshift($this->attachment_comment_list, $this->file_comment);
  649. array_unshift($this->attachment_filename_list, $this->filename);
  650. array_unshift($this->attachment_extension_list, $this->extension);
  651. array_unshift($this->attachment_mimetype_list, $this->type);
  652. array_unshift($this->attachment_filesize_list, $this->filesize);
  653. array_unshift($this->attachment_filetime_list, $this->filetime);
  654. array_unshift($this->attachment_id_list, '0');
  655. array_unshift($this->attachment_thumbnail_list, $this->thumbnail);
  656.  
  657. $this->file_comment = '';
  658. }
  659. }
  660. else
  661. {
  662. $error = TRUE;
  663. if(!empty($error_msg))
  664. {
  665. $error_msg .= '<br />';
  666. }
  667. $error_msg .= sprintf($lang['Too_many_attachments'], intval($max_attachments));
  668. }
  669. }
  670. }
  671. }
  672.  
  673. return TRUE;
  674. }
  675.  
  676. function do_insert_attachment($mode, $message_type, $message_id)
  677. {
  678. global $db, $upload_dir;
  679.  
  680. if (intval($message_id) < 0)
  681. {
  682. return FALSE;
  683. }
  684.  
  685. if ($message_type == 'pm')
  686. {
  687. global $userdata, $to_userdata;
  688.  
  689. $post_id = 0;
  690. $privmsgs_id = (int) $message_id;
  691. $user_id_1 = (int) $userdata['user_id'];
  692. $user_id_2 = (int) $to_userdata['user_id'];
  693. $sql_id = 'privmsgs_id';
  694. }
  695. else if ($message_type = 'post')
  696. {
  697. global $post_info, $userdata;
  698.  
  699. $post_id = (int) $message_id;
  700. $privmsgs_id = 0;
  701. $user_id_1 = (isset($post_info['poster_id'])) ? (int) $post_info['poster_id'] : 0;
  702. $user_id_2 = 0;
  703. $sql_id = 'post_id';
  704.  
  705. if (!$user_id_1)
  706. {
  707. $user_id_1 = (int) $userdata['user_id'];
  708. }
  709. }
  710.  
  711. if ($mode == 'attach_list')
  712. {
  713. for ($i = 0; $i < sizeof($this->attachment_list); $i++)
  714. {
  715. if ($this->attachment_id_list[$i])
  716. {
  717. $sql = 'SELECT attach_id
  718. FROM ' . ATTACHMENTS_TABLE . '
  719. WHERE ' . $sql_id . ' = ' . $$sql_id . '
  720. AND attach_id = ' . $this->attachment_id_list[$i];
  721. $result = $db->sql_query($sql);
  722.  
  723. if (!$result)
  724. {
  725. message_die(GENERAL_ERROR, 'Unable to get attachment information.', '', __LINE__, __FILE__, $sql);
  726. }
  727.  
  728. $row = $db->sql_fetchrow($result);
  729. $db->sql_freeresult($result);
  730.  
  731. if (!$row)
  732. {
  733. message_die(GENERAL_ERROR, 'Tried to update an attachment you are not allowed to access', '');
  734. }
  735.  
  736. $sql = 'UPDATE ' . ATTACHMENTS_DESC_TABLE . "
  737. SET comment = '" . attach_mod_sql_escape($this->attachment_comment_list[$i]) . "'
  738. WHERE attach_id = " . $this->attachment_id_list[$i];
  739.  
  740. if (!($db->sql_query($sql)))
  741. {
  742. message_die(GENERAL_ERROR, 'Unable to update the File Comment.', '', __LINE__, __FILE__, $sql);
  743. }
  744. }
  745. else
  746. {
  747. $sql_ary = array(
  748. 'physical_filename' => (string) basename($this->attachment_list[$i]),
  749. 'real_filename' => (string) basename($this->attachment_filename_list[$i]),
  750. 'comment' => (string) $this->attachment_comment_list[$i],
  751. 'extension' => (string) strtolower($this->attachment_extension_list[$i]),
  752. 'mimetype' => (string) strtolower($this->attachment_mimetype_list[$i]),
  753. 'filesize' => (int) $this->attachment_filesize_list[$i],
  754. 'filetime' => (int) $this->attachment_filetime_list[$i],
  755. 'thumbnail' => (int) $this->attachment_thumbnail_list[$i]
  756. );
  757. $sql = 'INSERT INTO ' . ATTACHMENTS_DESC_TABLE . ' ' . attach_mod_sql_build_array('INSERT', $sql_ary);
  758.  
  759. if (!($db->sql_query($sql)))
  760. {
  761. message_die(GENERAL_ERROR, 'Couldn\'t store Attachment.<br />Your ' . $message_type . ' has been stored.', '', __LINE__, __FILE__, $sql);
  762. }
  763.  
  764. $attach_id = $db->sql_nextid();
  765. $sql_ary = array(
  766. 'attach_id' => (int) $attach_id,
  767. 'post_id' => (int) $post_id,
  768. 'privmsgs_id' => (int) $privmsgs_id,
  769. 'user_id_1' => (int) $user_id_1,
  770. 'user_id_2' => (int) $user_id_2
  771. );
  772.  
  773. $sql = 'INSERT INTO ' . ATTACHMENTS_TABLE . ' ' . attach_mod_sql_build_array('INSERT', $sql_ary);
  774. if (!($db->sql_query($sql)))
  775. {
  776. message_die(GENERAL_ERROR, 'Couldn\'t store Attachment.<br />Your ' . $message_type . ' has been stored.', '', __LINE__, __FILE__, $sql);
  777. }
  778. }
  779. }
  780. return TRUE;
  781. }
  782. if ($mode == 'last_attachment')
  783. {
  784. if ($this->post_attach && !isset($HTTP_POST_VARS['update_attachment']))
  785. {
  786. $sql_ary = array(
  787. 'physical_filename' => (string) basename($this->attach_filename),
  788. 'real_filename' => (string) basename($this->filename),
  789. 'comment' => (string) $this->file_comment,
  790. 'extension' => (string) strtolower($this->extension),
  791. 'mimetype' => (string) strtolower($this->type),
  792. 'filesize' => (int) $this->filesize,
  793. 'filetime' => (int) $this->filetime,
  794. 'thumbnail' => (int) $this->thumbnail
  795. );
  796. $sql = 'INSERT INTO ' . ATTACHMENTS_DESC_TABLE . ' ' . attach_mod_sql_build_array('INSERT', $sql_ary);
  797.  
  798. if (!($db->sql_query($sql)))
  799. {
  800. message_die(GENERAL_ERROR, 'Couldn\'t store Attachment.<br />Your ' . $message_type . ' has been stored.', '', __LINE__, __FILE__, $sql);
  801. }
  802.  
  803. $attach_id = $db->sql_nextid();
  804.  
  805. $sql_ary = array(
  806. 'attach_id' => (int) $attach_id,
  807. 'post_id' => (int) $post_id,
  808. 'privmsgs_id' => (int) $privmsgs_id,
  809. 'user_id_1' => (int) $user_id_1,
  810. 'user_id_2' => (int) $user_id_2
  811. );
  812.  
  813. $sql = 'INSERT INTO ' . ATTACHMENTS_TABLE . ' ' . attach_mod_sql_build_array('INSERT', $sql_ary);
  814.  
  815. if (!($db->sql_query($sql)))
  816. {
  817. message_die(GENERAL_ERROR, 'Couldn\'t store Attachment.<br />Your ' . $message_type . ' has been stored.', '', __LINE__, __FILE__, $sql);
  818. }
  819. }
  820. }
  821. }
  822.  
  823. function display_attachment_bodies()
  824. {
  825. global $attach_config, $db, $is_auth, $lang, $mode, $phpEx, $template, $upload_dir, $userdata, $HTTP_POST_VARS, $forum_id, $browser_agent;
  826. global $phpbb_root_path;
  827.  
  828. $value_add = $value_posted = 0;
  829.  
  830. if (intval($attach_config['show_apcp']))
  831. {
  832. if (!empty($HTTP_POST_VARS['add_attachment_box']))
  833. {
  834. $value_add = ($this->add_attachment_body == 0) ? 1 : 0;
  835. $this->add_attachment_body = $value_add;
  836. }
  837. else
  838. {
  839. $value_add = ($this->add_attachment_body == 0) ? 0 : 1;
  840. }
  841. if (!empty($HTTP_POST_VARS['posted_attachments_box']))
  842. {
  843. $value_posted = ($this->posted_attachments_body == 0) ? 1 : 0;
  844. $this->posted_attachments_body = $value_posted;
  845. }
  846. else
  847. {
  848. $value_posted = ($this->posted_attachments_body == 0) ? 0 : 1;
  849. }
  850. $template->assign_block_vars('show_apcp', array());
  851. }
  852. else
  853. {
  854. $this->add_attachment_body = 1;
  855. $this->posted_attachments_body = 1;
  856. }
  857.  
  858. $template->set_filenames(array(
  859. 'attachbody' => 'posting_attach_body.tpl')
  860. );
  861.  
  862. display_compile_cache_clear($template->files['attachbody'], 'attachbody');
  863.  
  864. $s_hidden = '<input type="hidden" name="add_attachment_body" value="' . $value_add . '" />';
  865. $s_hidden .= '<input type="hidden" name="posted_attachments_body" value="' . $value_posted . '" />';
  866.  
  867. if ($this->page == PAGE_PRIVMSGS)
  868. {
  869. $u_rules_id = 0;
  870. }
  871. else
  872. {
  873. $u_rules_id = $forum_id;
  874. }
  875.  
  876. $template->assign_vars(array(
  877. 'L_ATTACH_POSTING_CP' => $lang['Attach_posting_cp'],
  878. 'L_ATTACH_POSTING_CP_EXPLAIN' => $lang['Attach_posting_cp_explain'],
  879. 'L_OPTIONS' => $lang['Options'],
  880. 'L_ADD_ATTACHMENT_TITLE' => $lang['Add_attachment_title'],
  881. 'L_POSTED_ATTACHMENTS' => $lang['Posted_attachments'],
  882. 'L_FILE_NAME' => $lang['File_name'],
  883. 'L_FILE_COMMENT' => $lang['File_comment'],
  884. 'RULES' => '<a href="' . append_sid($phpbb_root_path . "rules.$phpEx?mode=attach&amp;f=$u_rules_id") . '">' . $lang['Allowed_extensions_and_sizes'] . '</a>',
  885.  
  886. 'S_HIDDEN' => $s_hidden)
  887. );
  888.  
  889. $attachments = array();
  890.  
  891. if (sizeof($this->attachment_list) > 0)
  892. {
  893. if (intval($attach_config['show_apcp']))
  894. {
  895. $template->assign_block_vars('switch_posted_attachments', array());
  896. }
  897.  
  898. for ($i = 0; $i < sizeof($this->attachment_list); $i++)
  899. {
  900. $hidden = '<input type="hidden" name="attachment_list[]" value="' . $this->attachment_list[$i] . '" />';
  901. $hidden .= '<input type="hidden" name="filename_list[]" value="' . $this->attachment_filename_list[$i] . '" />';
  902. $hidden .= '<input type="hidden" name="extension_list[]" value="' . $this->attachment_extension_list[$i] . '" />';
  903. $hidden .= '<input type="hidden" name="mimetype_list[]" value="' . $this->attachment_mimetype_list[$i] . '" />';
  904. $hidden .= '<input type="hidden" name="filesize_list[]" value="' . $this->attachment_filesize_list[$i] . '" />';
  905. $hidden .= '<input type="hidden" name="filetime_list[]" value="' . $this->attachment_filetime_list[$i] . '" />';
  906. $hidden .= '<input type="hidden" name="attach_id_list[]" value="' . $this->attachment_id_list[$i] . '" />';
  907. $hidden .= '<input type="hidden" name="attach_thumbnail_list[]" value="' . $this->attachment_thumbnail_list[$i] . '" />';
  908.  
  909. if (!$this->posted_attachments_body || sizeof($this->attachment_list) == 0)
  910. {
  911. $hidden .= '<input type="hidden" name="comment_list[]" value="' . $this->attachment_comment_list[$i] . '" />';
  912. }
  913. $template->assign_block_vars('hidden_row', array(
  914. 'S_HIDDEN' => $hidden)
  915. );
  916. }
  917. }
  918.  
  919. if ($this->add_attachment_body)
  920. {
  921. init_display_template('attachbody', '{ADD_ATTACHMENT_BODY}', 'add_attachment_body.tpl');
  922.  
  923. if ($userdata['user_attach_mod'] || $browser_agent !== 'other')
  924. {
  925. $form_enctype = 'enctype="multipart/form-data"';
  926. } else {
  927. $form_enctype = '';
  928. }
  929.  
  930. $template->assign_vars(array(
  931. 'L_ADD_ATTACH_TITLE' => $lang['Add_attachment_title'],
  932. 'L_ADD_ATTACH_EXPLAIN' => $lang['Add_attachment_explain'],
  933. 'L_ADD_ATTACHMENT' => $lang['Add_attachment'],
  934.  
  935. 'FILE_COMMENT' => $this->file_comment,
  936. 'FILESIZE' => $attach_config['max_filesize'],
  937. 'FILENAME' => $this->filename,
  938.  
  939. 'S_FORM_ENCTYPE' => $form_enctype)
  940. );
  941. if ($userdata['user_attach_mod'] || $browser_agent !== 'other')
  942. {
  943. $template->assign_block_vars('attach_on', array() );
  944. }
  945. }
  946.  
  947. if ($this->posted_attachments_body && sizeof($this->attachment_list) > 0)
  948. {
  949. init_display_template('attachbody', '{POSTED_ATTACHMENTS_BODY}', 'posted_attachments_body.tpl');
  950.  
  951. $template->assign_vars(array(
  952. 'L_POSTED_ATTACHMENTS' => $lang['Posted_attachments'],
  953. 'L_UPDATE_COMMENT' => $lang['Update_comment'],
  954. 'L_UPLOAD_NEW_VERSION' => $lang['Upload_new_version'],
  955. 'L_DELETE_ATTACHMENT' => $lang['Delete_attachment'],
  956. 'L_DELETE_THUMBNAIL' => $lang['Delete_thumbnail'],
  957. 'L_OPTIONS' => $lang['Options'])
  958. );
  959.  
  960. for ($i = 0; $i < sizeof($this->attachment_list); $i++)
  961. {
  962. if ($this->attachment_id_list[$i] == 0)
  963. {
  964. $download_link = $upload_dir . '/' . basename($this->attachment_list[$i]);
  965. }
  966. else
  967. {
  968. $download_link = append_sid($phpbb_root_path . 'download.' . $phpEx . '?id=' . $this->attachment_id_list[$i]);
  969. }
  970.  
  971. $template->assign_block_vars('attach_row', array(
  972. 'FILE_NAME' => $this->attachment_filename_list[$i],
  973. 'ATTACH_FILENAME' => $this->attachment_list[$i],
  974. 'FILE_COMMENT' => $this->attachment_comment_list[$i],
  975. 'ATTACH_ID' => $this->attachment_id_list[$i],
  976.  
  977. 'U_VIEW_ATTACHMENT' => $download_link)
  978. );
  979.  
  980. if (intval($this->attachment_thumbnail_list[$i]) == 1 && ((isset($is_auth['auth_mod']) && $is_auth['auth_mod']) || $userdata['user_level'] == ADMIN))
  981. {
  982. $template->assign_block_vars('attach_row.switch_thumbnail', array());
  983. }
  984.  
  985. if ($this->attachment_id_list[$i])
  986. {
  987. $template->assign_block_vars('attach_row.switch_update_attachment', array());
  988. }
  989. }
  990. }
  991.  
  992. $template->assign_var_from_handle('ATTACHBOX', 'attachbody');
  993. }
  994.  
  995. function upload_attachment()
  996. {
  997. global $HTTP_POST_FILES, $db, $HTTP_POST_VARS, $error, $error_msg, $lang, $attach_config, $userdata, $upload_dir, $forum_id, $importurl;
  998. $this->post_attach = ($this->filename != '') ? TRUE : FALSE;
  999.  
  1000. if ($this->post_attach)
  1001. {
  1002. $r_file = trim(basename(htmlspecialchars($this->filename)));
  1003. $file = $HTTP_POST_FILES['fileupload']['tmp_name'];
  1004. $this->type = $HTTP_POST_FILES['fileupload']['type'];
  1005.  
  1006. if ($importurl == NULL && isset($HTTP_POST_FILES['fileupload']['size']) && $HTTP_POST_FILES['fileupload']['size'] == 0)
  1007. {
  1008. message_die(GENERAL_ERROR, 'Tried to upload empty file');
  1009. }
  1010.  
  1011. $this->type = (strstr($this->type, '; name')) ? str_replace(strstr($this->type, '; name'), '', $this->type) : $this->type;
  1012. $this->type = strtolower($this->type);
  1013. $this->extension = strtolower(get_extension($this->filename));
  1014.  
  1015. $this->filesize = @filesize($file);
  1016. $this->filesize = intval($this->filesize);
  1017.  
  1018. $sql = 'SELECT g.allow_group, g.max_filesize, g.cat_id, g.forum_permissions
  1019. FROM ' . EXTENSION_GROUPS_TABLE . ' g, ' . EXTENSIONS_TABLE . " e
  1020. WHERE g.group_id = e.group_id
  1021. AND e.extension = '" . attach_mod_sql_escape($this->extension) . "'
  1022. LIMIT 1";
  1023.  
  1024. if (!($result = $db->sql_query($sql)))
  1025. {
  1026. message_die(GENERAL_ERROR, 'Could not query Extensions.', '', __LINE__, __FILE__, $sql);
  1027. }
  1028.  
  1029. $row = $db->sql_fetchrow($result);
  1030. $db->sql_freeresult($result);
  1031.  
  1032. $allowed_filesize = ($row['max_filesize']) ? $row['max_filesize'] : $attach_config['max_filesize'];
  1033. $cat_id = intval($row['cat_id']);
  1034. $auth_cache = trim($row['forum_permissions']);
  1035.  
  1036. if (preg_match("#[\\/:*?\"<>|]#i", $this->filename))
  1037. {
  1038. $error = TRUE;
  1039. if(!empty($error_msg))
  1040. {
  1041. $error_msg .= '<br />';
  1042. }
  1043. $error_msg .= sprintf($lang['Invalid_filename'], htmlspecialchars($this->filename));
  1044. }
  1045.  
  1046. if (!$error && $file == 'none')
  1047. {
  1048. $error = TRUE;
  1049. if(!empty($error_msg))
  1050. {
  1051. $error_msg .= '<br />';
  1052. }
  1053. $ini_val = ( phpversion() >= '4.0.0' ) ? 'ini_get' : 'get_cfg_var';
  1054. $max_size = @$ini_val('upload_max_filesize');
  1055.  
  1056. if ($max_size == '')
  1057. {
  1058. $error_msg .= $lang['Attachment_php_size_na'];
  1059. }
  1060. else
  1061. {
  1062. $error_msg .= sprintf($lang['Attachment_php_size_overrun'], $max_size);
  1063. }
  1064. }
  1065.  
  1066. if (!$error && intval($row['allow_group']) == 0)
  1067. {
  1068. $error = TRUE;
  1069. if(!empty($error_msg))
  1070. {
  1071. $error_msg .= '<br />';
  1072. }
  1073. $error_msg .= sprintf($lang['Disallowed_extension'], htmlspecialchars($this->extension));
  1074. }
  1075.  
  1076. if (!$error && $this->page != PAGE_PRIVMSGS && $userdata['user_level'] != ADMIN && !is_forum_authed($auth_cache, $forum_id) && trim($auth_cache) != '')
  1077. {
  1078. $error = TRUE;
  1079. if(!empty($error_msg))
  1080. {
  1081. $error_msg .= '<br />';
  1082. }
  1083. $error_msg .= sprintf($lang['Disallowed_extension_within_forum'], htmlspecialchars($this->extension));
  1084. }
  1085.  
  1086. $this->thumbnail = 0;
  1087. if (!$error)
  1088. {
  1089. $this->filetime = time();
  1090. $this->filename = $r_file;
  1091. $this->attach_filename = strtolower($this->filename);
  1092.  
  1093. $cryptic = false;
  1094.  
  1095. if (!$cryptic)
  1096. {
  1097. $this->attach_filename = html_entity_decode(trim(stripslashes($this->attach_filename)));
  1098. $this->attach_filename = delete_extension($this->attach_filename);
  1099. $this->attach_filename = str_replace(array(' ','-'), array('_','_'), $this->attach_filename);
  1100. $this->attach_filename = str_replace('__', '_', $this->attach_filename);
  1101. $this->attach_filename = str_replace(array(',', '.', '!', '?', 'ь', 'Ь', 'ц', 'Ц', 'д', 'Д', ';', ':', '@', "'", '"', '&'), array('', '', '', '', 'ue', 'ue', 'oe', 'oe', 'ae', 'ae', '', '', '', '', '', 'and'), $this->attach_filename);
  1102. $this->attach_filename = str_replace(array('$', 'Я', '>','<','§','%','=','/','(',')','#','*','+',"\\",'{','}','[',']'), array('dollar', 'ss','greater','lower','paragraph','percent','equal','','','','','','','','','','',''), $this->attach_filename);
  1103. $this->attach_filename = preg_replace("/([\xC2\xC3])([\x80-\xBF])/e", "chr(ord('\\1')<<6&0xC0|ord('\\2')&0x3F)", $this->attach_filename);
  1104. $this->attach_filename = rawurlencode($this->attach_filename);
  1105. $this->attach_filename = preg_replace("/(%[0-9A-F]{1,2})/i", '', $this->attach_filename);
  1106. $this->attach_filename = trim($this->attach_filename);
  1107.  
  1108. $new_filename = $this->attach_filename;
  1109.  
  1110. if (!$new_filename)
  1111. {
  1112. $u_id = (intval($userdata['user_id']) == ANONYMOUS) ? 0 : intval($userdata['user_id']);
  1113. $new_filename = $u_id . '_' . $this->filetime . '.' . $this->extension;
  1114. }
  1115.  
  1116. do
  1117. {
  1118. $this->attach_filename = $new_filename . '_' . substr(rand(), 0, 3) . '.' . $this->extension;
  1119. }
  1120. while (physical_filename_already_stored($this->attach_filename));
  1121.  
  1122. unset($new_filename);
  1123. }
  1124. else
  1125. {
  1126. $u_id = (intval($userdata['user_id']) == ANONYMOUS) ? 0 : intval($userdata['user_id']);
  1127. $this->attach_filename = $u_id . '_' . $this->filetime . '.' . $this->extension;
  1128. }
  1129.  
  1130. if ($cat_id == IMAGE_CAT && intval($attach_config['img_create_thumbnail']))
  1131. {
  1132. $this->thumbnail = 1;
  1133. }
  1134. }
  1135.  
  1136. if ($error)
  1137. {
  1138. $this->post_attach = FALSE;
  1139. return;
  1140. }
  1141.  
  1142. if (!$error)
  1143. {
  1144. if (!(intval($attach_config['allow_ftp_upload'])))
  1145. {
  1146. $ini_val = ( phpversion() >= '4.0.0' ) ? 'ini_get' : 'get_cfg_var';
  1147. $safe_mode = @$ini_val('safe_mode');
  1148.  
  1149. if (@$ini_val('open_basedir'))
  1150. {
  1151. if (@phpversion() < '4.0.3')
  1152. {
  1153. $upload_mode = 'copy';
  1154. }
  1155. else
  1156. {
  1157. $upload_mode = 'move';
  1158. }
  1159. }
  1160. else if (@$ini_val('safe_mode'))
  1161. {
  1162. $upload_mode = 'move';
  1163. }
  1164. else
  1165. {
  1166. $upload_mode = 'copy';
  1167. }
  1168. }
  1169. else
  1170. {
  1171. $upload_mode = 'ftp';
  1172. }
  1173.  
  1174. if (!$error)
  1175. {
  1176. $this->move_uploaded_attachment($upload_mode, $file);
  1177. }
  1178. }
  1179.  
  1180. if (!$error)
  1181. {
  1182. if ($upload_mode != 'ftp' && !$this->filesize)
  1183. {
  1184. $this->filesize = intval(@filesize($upload_dir . '/' . $this->attach_filename));
  1185. }
  1186. }
  1187.  
  1188. if ($cat_id == IMAGE_CAT || strpos($this->type, 'image/') === 0)
  1189. {
  1190. $img_info = @getimagesize($upload_dir . '/' . $this->attach_filename);
  1191.  
  1192. if ($img_info === false)
  1193. {
  1194. $error = TRUE;
  1195. if(!empty($error_msg))
  1196. {
  1197. $error_msg .= '<br />';
  1198. }
  1199. $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename);
  1200. }
  1201. else
  1202. {
  1203. $types = array(
  1204. 1 => array('gif'),
  1205. 2 => array('jpg', 'jpeg'),
  1206. 3 => array('png'),
  1207. 4 => array('swf'),
  1208. 5 => array('psd'),
  1209. 6 => array('bmp'),
  1210. 7 => array('tif', 'tiff'),
  1211. 8 => array('tif', 'tiff'),
  1212. 9 => array('jpg', 'jpeg'),
  1213. 10 => array('jpg', 'jpeg'),
  1214. 11 => array('jpg', 'jpeg'),
  1215. 12 => array('jpg', 'jpeg'),
  1216. 13 => array('swc'),
  1217. 14 => array('iff'),
  1218. 15 => array('wbmp'),
  1219. 16 => array('xbm'),
  1220. );
  1221.  
  1222. if (!isset($types[$img_info[2]]))
  1223. {
  1224. $error = TRUE;
  1225. if(!empty($error_msg))
  1226. {
  1227. $error_msg .= '<br />';
  1228. }
  1229. $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename);
  1230. }
  1231. else if (!in_array($this->extension, $types[$img_info[2]]))
  1232. {
  1233. $error = TRUE;
  1234. if(!empty($error_msg))
  1235. {
  1236. $error_msg .= '<br />';
  1237. }
  1238. $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename);
  1239. $error_msg .= "<br />Filetype mismatch: expected {$types[$img_info[2]][0]} but {$this->extension} given.";
  1240. }
  1241. }
  1242. }
  1243.  
  1244. if (!$error && $userdata['user_level'] != ADMIN && $cat_id == IMAGE_CAT)
  1245. {
  1246. list($width, $height) = image_getdimension($upload_dir . '/' . $this->attach_filename);
  1247.  
  1248. if ($width != 0 && $height != 0 && intval($attach_config['img_max_width']) != 0 && intval($attach_config['img_max_height']) != 0)
  1249. {
  1250. if ($width > intval($attach_config['img_max_width']) || $height > intval($attach_config['img_max_height']))
  1251. {
  1252. $error = TRUE;
  1253. if(!empty($error_msg))
  1254. {
  1255. $error_msg .= '<br />';
  1256. }
  1257. $error_msg .= sprintf($lang['Error_imagesize'], intval($attach_config['img_max_width']), intval($attach_config['img_max_height']));
  1258. }
  1259. }
  1260. }
  1261.  
  1262. if (!$error && $allowed_filesize != 0 && $this->filesize > $allowed_filesize && $userdata['user_level'] != ADMIN)
  1263. {
  1264. $size_lang = ($allowed_filesize >= 1048576) ? $lang['MB'] : ( ($allowed_filesize >= 1024) ? $lang['KB'] : $lang['Bytes'] );
  1265.  
  1266. if ($allowed_filesize >= 1048576)
  1267. {
  1268. $allowed_filesize = round($allowed_filesize / 1048576 * 100) / 100;
  1269. }
  1270. else if ($allowed_filesize >= 1024)
  1271. {
  1272. $allowed_filesize = round($allowed_filesize / 1024 * 100) / 100;
  1273. }
  1274. $error = TRUE;
  1275. if(!empty($error_msg))
  1276. {
  1277. $error_msg .= '<br />';
  1278. }
  1279. $error_msg .= sprintf($lang['Attachment_too_big'], $allowed_filesize, $size_lang);
  1280. }
  1281.  
  1282. if ($attach_config['attachment_quota'])
  1283. {
  1284. $sql = 'SELECT sum(filesize) as total FROM ' . ATTACHMENTS_DESC_TABLE;
  1285.  
  1286. if (!($result = $db->sql_query($sql)))
  1287. {
  1288. message_die(GENERAL_ERROR, 'Could not query total filesize', '', __LINE__, __FILE__, $sql);
  1289. }
  1290.  
  1291. $row = $db->sql_fetchrow($result);
  1292. $db->sql_freeresult($result);
  1293.  
  1294. $total_filesize = $row['total'];
  1295.  
  1296. if (($total_filesize + $this->filesize) > $attach_config['attachment_quota'])
  1297. {
  1298. $error = TRUE;
  1299. if(!empty($error_msg))
  1300. {
  1301. $error_msg .= '<br />';
  1302. }
  1303. $error_msg .= $lang['Attach_quota_reached'];
  1304. }
  1305.  
  1306. }
  1307.  
  1308. $this->get_quota_limits($userdata);
  1309.  
  1310. if ($this->page != PAGE_PRIVMSGS)
  1311. {
  1312. if ($attach_config['upload_filesize_limit'])
  1313. {
  1314. $sql = 'SELECT attach_id
  1315. FROM ' . ATTACHMENTS_TABLE . '
  1316. WHERE user_id_1 = ' . (int) $userdata['user_id'] . '
  1317. AND privmsgs_id = 0
  1318. GROUP BY attach_id';
  1319. if (!($result = $db->sql_query($sql)))
  1320. {
  1321. message_die(GENERAL_ERROR, 'Couldn\'t query attachments', '', __LINE__, __FILE__, $sql);
  1322. }
  1323. $attach_ids = $db->sql_fetchrowset($result);
  1324. $num_attach_ids = $db->sql_numrows($result);
  1325. $db->sql_freeresult($result);
  1326.  
  1327. $attach_id = array();
  1328.  
  1329. for ($i = 0; $i < $num_attach_ids; $i++)
  1330. {
  1331. $attach_id[] = intval($attach_ids[$i]['attach_id']);
  1332. }
  1333. if ($num_attach_ids > 0)
  1334. {
  1335. $sql = 'SELECT sum(filesize) as total
  1336. FROM ' . ATTACHMENTS_DESC_TABLE . '
  1337. WHERE attach_id IN (' . implode(', ', $attach_id) . ')';
  1338.  
  1339. if (!($result = $db->sql_query($sql)))
  1340. {
  1341. message_die(GENERAL_ERROR, 'Could not query total filesize', '', __LINE__, __FILE__, $sql);
  1342. }
  1343.  
  1344. $row = $db->sql_fetchrow($result);
  1345. $db->sql_freeresult($result);
  1346. $total_filesize = $row['total'];
  1347. }
  1348. else
  1349. {
  1350. $total_filesize = 0;
  1351. }
  1352.  
  1353. if (($total_filesize + $this->filesize) > $attach_config['upload_filesize_limit'])
  1354. {
  1355. $upload_filesize_limit = $attach_config['upload_filesize_limit'];
  1356. $size_lang = ($upload_filesize_limit >= 1048576) ? $lang['MB'] : ( ($upload_filesize_limit >= 1024) ? $lang['KB'] : $lang['Bytes'] );
  1357.  
  1358. if ($upload_filesize_limit >= 1048576)
  1359. {
  1360. $upload_filesize_limit = round($upload_filesize_limit / 1048576 * 100) / 100;
  1361. }
  1362. else if ($upload_filesize_limit >= 1024)
  1363. {
  1364. $upload_filesize_limit = round($upload_filesize_limit / 1024 * 100) / 100;
  1365. }
  1366. $error = TRUE;
  1367. if(!empty($error_msg))
  1368. {
  1369. $error_msg .= '<br />';
  1370. }
  1371. $error_msg .= sprintf($lang['User_upload_quota_reached'], $upload_filesize_limit, $size_lang);
  1372. }
  1373. }
  1374. }
  1375.  
  1376. if ($this->page == PAGE_PRIVMSGS)
  1377. {
  1378. if ($attach_config['pm_filesize_limit'])
  1379. {
  1380. $total_filesize = get_total_attach_pm_filesize('from_user', $userdata['user_id']);
  1381.  
  1382. if (($total_filesize + $this->filesize) > $attach_config['pm_filesize_limit'])
  1383. {
  1384. $error = TRUE;
  1385. if(!empty($error_msg))
  1386. {
  1387. $error_msg .= '<br />';
  1388. }
  1389. $error_msg .= $lang['Attach_quota_sender_pm_reached'];
  1390. }
  1391. }
  1392.  
  1393. $to_user = (isset($HTTP_POST_VARS['username']) ) ? $HTTP_POST_VARS['username'] : '';
  1394.  
  1395. if (!empty($to_user) && $userdata['user_level'] != ADMIN)
  1396. {
  1397. $u_data = get_userdata($to_user, true);
  1398.  
  1399. $user_id = (int) $u_data['user_id'];
  1400. $this->get_quota_limits($u_data, $user_id);
  1401. if ($attach_config['pm_filesize_limit'])
  1402. {
  1403. $total_filesize = get_total_attach_pm_filesize('to_user', $user_id);
  1404. if (($total_filesize + $this->filesize) > $attach_config['pm_filesize_limit'])
  1405. {
  1406. $error = TRUE;
  1407. if(!empty($error_msg))
  1408. {
  1409. $error_msg .= '<br />';
  1410. }
  1411. $error_msg .= sprintf($lang['Attach_quota_receiver_pm_reached'], $to_user);
  1412. }
  1413. }
  1414. }
  1415. }
  1416.  
  1417. if ($error)
  1418. {
  1419. unlink_attach($this->attach_filename);
  1420. unlink_attach($this->attach_filename, MODE_THUMBNAIL);
  1421. $this->post_attach = FALSE;
  1422. }
  1423. }
  1424. }
  1425.  
  1426. function move_uploaded_attachment($upload_mode, $file)
  1427. {
  1428. global $error, $error_msg, $lang, $upload_dir, $importurl;
  1429.  
  1430. if (!is_uploaded_file($file) && !$importurl)
  1431. {
  1432. message_die(GENERAL_ERROR, 'Unable to upload file. The given source has not been uploaded.', __LINE__, __FILE__);
  1433. }
  1434.  
  1435. switch ($upload_mode)
  1436. {
  1437. case 'copy':
  1438. if (!@copy($file, $upload_dir . '/' . basename($this->attach_filename)))
  1439. {
  1440. if (!@move_uploaded_file($file, $upload_dir . '/' . basename($this->attach_filename)))
  1441. {
  1442. $error = TRUE;
  1443. if(!empty($error_msg))
  1444. {
  1445. $error_msg .= '<br />';
  1446. }
  1447. $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename);
  1448. return;
  1449. }
  1450. }
  1451. @chmod($upload_dir . '/' . basename($this->attach_filename), 0666);
  1452.  
  1453. break;
  1454.  
  1455. case 'move':
  1456.  
  1457. if (!@move_uploaded_file($file, $upload_dir . '/' . basename($this->attach_filename)))
  1458. {
  1459. if (!@copy($file, $upload_dir . '/' . basename($this->attach_filename)))
  1460. {
  1461. $error = TRUE;
  1462. if(!empty($error_msg))
  1463. {
  1464. $error_msg .= '<br />';
  1465. }
  1466. $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename);
  1467. return;
  1468. }
  1469. }
  1470. @chmod($upload_dir . '/' . $this->attach_filename, 0666);
  1471.  
  1472. break;
  1473.  
  1474. case 'ftp':
  1475. ftp_file($file, basename($this->attach_filename), $this->type);
  1476. break;
  1477. }
  1478.  
  1479. if (!$error && $this->thumbnail == 1)
  1480. {
  1481. if ($upload_mode == 'ftp')
  1482. {
  1483. $source = $file;
  1484. $dest_file = THUMB_DIR . '/t_' . basename($this->attach_filename);
  1485. }
  1486. else
  1487. {
  1488. $source = $upload_dir . '/' . basename($this->attach_filename);
  1489. $dest_file = amod_realpath($upload_dir);
  1490. $dest_file .= '/' . THUMB_DIR . '/t_' . basename($this->attach_filename);
  1491. }
  1492.  
  1493. if (!create_thumbnail($source, $dest_file, $this->type))
  1494. {
  1495. if (!$file || !create_thumbnail($file, $dest_file, $this->type))
  1496. {
  1497. $this->thumbnail = 0;
  1498. }
  1499. }
  1500. }
  1501. }
  1502. }
  1503.  
  1504. class attach_posting extends attach_parent
  1505. {
  1506. function attach_posting()
  1507. {
  1508. $this->attach_parent();
  1509. $this->page = 0;
  1510. }
  1511. function preview_attachments()
  1512. {
  1513. global $attach_config, $is_auth, $userdata;
  1514.  
  1515. if (intval($attach_config['disable_mod']) || !$is_auth['auth_attachments'])
  1516. {
  1517. return FALSE;
  1518. }
  1519. display_attachments_preview($this->attachment_list, $this->attachment_filesize_list, $this->attachment_filename_list, $this->attachment_comment_list, $this->attachment_extension_list, $this->attachment_thumbnail_list);
  1520. }
  1521. function insert_attachment($post_id)
  1522. {
  1523. global $db, $is_auth, $mode, $userdata, $error, $error_msg;
  1524.  
  1525. if (!empty($post_id) && ($mode == 'newtopic' || $mode == 'reply' || $mode == 'editpost') && $is_auth['auth_attachments'])
  1526. {
  1527. $this->do_insert_attachment('attach_list', 'post', $post_id);
  1528. $this->do_insert_attachment('last_attachment', 'post', $post_id);
  1529.  
  1530. if ((sizeof($this->attachment_list) > 0 || $this->post_attach) && !isset($HTTP_POST_VARS['update_attachment']))
  1531. {
  1532. $sql = 'UPDATE ' . POSTS_TABLE . '
  1533. SET post_attachment = 1
  1534. WHERE post_id = ' . (int) $post_id;
  1535.  
  1536. if (!($db->sql_query($sql)))
  1537. {
  1538. message_die(GENERAL_ERROR, 'Unable to update Posts Table.', '', __LINE__, __FILE__, $sql);
  1539. }
  1540.  
  1541. $sql = 'SELECT topic_id
  1542. FROM ' . POSTS_TABLE . '
  1543. WHERE post_id = ' . (int) $post_id;
  1544. if (!($result = $db->sql_query($sql)))
  1545. {
  1546. message_die(GENERAL_ERROR, 'Unable to select Posts Table.', '', __LINE__, __FILE__, $sql);
  1547. }
  1548.  
  1549. $row = $db->sql_fetchrow($result);
  1550. $db->sql_freeresult($result);
  1551.  
  1552. $sql = 'UPDATE ' . TOPICS_TABLE . '
  1553. SET topic_attachment = 1
  1554. WHERE topic_id = ' . (int) $row['topic_id'];
  1555.  
  1556. if (!($db->sql_query($sql)))
  1557. {
  1558. message_die(GENERAL_ERROR, 'Unable to update Topics Table.', '', __LINE__, __FILE__, $sql);
  1559. }
  1560. }
  1561. }
  1562. }
  1563.  
  1564. function posting_attachment_mod()
  1565. {
  1566. global $mode, $confirm, $is_auth, $post_id, $delete, $refresh, $HTTP_POST_VARS;
  1567.  
  1568. if (!$refresh)
  1569. {
  1570. $add_attachment_box = (!empty($HTTP_POST_VARS['add_attachment_box'])) ? TRUE : FALSE;
  1571. $posted_attachments_box = (!empty($HTTP_POST_VARS['posted_attachments_box'])) ? TRUE : FALSE;
  1572.  
  1573. $refresh = $add_attachment_box || $posted_attachments_box;
  1574. }
  1575.  
  1576. $result = $this->handle_attachments($mode);
  1577.  
  1578. if ($result === false)
  1579. {
  1580. return;
  1581. }
  1582.  
  1583. if ($confirm && ($delete || $mode == 'delete' || $mode == 'editpost') && ($is_auth['auth_delete'] || $is_auth['auth_mod']))
  1584. {
  1585. if ($post_id)
  1586. {
  1587. delete_attachment($post_id);
  1588. }
  1589. }
  1590.  
  1591. $this->display_attachment_bodies();
  1592. }
  1593.  
  1594. }
  1595.  
  1596. function execute_posting_attachment_handling()
  1597. {
  1598. global $attachment_mod;
  1599.  
  1600. $attachment_mod['posting'] = new attach_posting();
  1601. $attachment_mod['posting']->posting_attachment_mod();
  1602. }
  1603.  
  1604. ?>