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

Размер файла: 19.91Kb
  1. <?php
  2. /***************************************************************************
  3. * mides.ru
  4. * -------------------
  5. ***************************************************************************/
  6. if ( !defined('IN_PHPBB') )
  7. {
  8. die("ERROR!!! THIS FILE PROTECTED. IF YOU SAW THIS REPORT, MEANS HACKERS HERE IS NOTHING TO DO ");
  9. }
  10.  
  11. if (!function_exists('html_entity_decode'))
  12. {
  13. function html_entity_decode($given_html, $quote_style = ENT_QUOTES)
  14. {
  15. $trans_table = array_flip(get_html_translation_table(HTML_SPECIALCHARS, $quote_style));
  16. $trans_table['&#39;'] = "'";
  17. return (strtr($given_html, $trans_table));
  18. }
  19. }
  20.  
  21. function base64_pack($number)
  22. {
  23. $chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+-';
  24. $base = strlen($chars);
  25.  
  26. if ($number > 4096)
  27. {
  28. return;
  29. }
  30. else if ($number < $base)
  31. {
  32. return $chars[$number];
  33. }
  34. $hexval = '';
  35. while ($number > 0)
  36. {
  37. $remainder = $number%$base;
  38. if ($remainder < $base)
  39. {
  40. $hexval = $chars[$remainder] . $hexval;
  41. }
  42.  
  43. $number = floor($number/$base);
  44. }
  45.  
  46. return $hexval;
  47. }
  48.  
  49. function base64_unpack($string)
  50. {
  51. $chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+-';
  52. $base = strlen($chars);
  53.  
  54. $length = strlen($string);
  55. $number = 0;
  56.  
  57. for($i = 1; $i <= $length; $i++)
  58. {
  59. $pos = $length - $i;
  60. $operand = strpos($chars, substr($string,$pos,1));
  61. $exponent = pow($base, $i-1);
  62. $decValue = $operand * $exponent;
  63. $number += $decValue;
  64. }
  65.  
  66. return $number;
  67. }
  68.  
  69. function auth_pack($auth_array)
  70. {
  71. $one_char_encoding = '#';
  72. $two_char_encoding = '.';
  73. $one_char = $two_char = false;
  74. $auth_cache = '';
  75. for ($i = 0; $i < sizeof($auth_array); $i++)
  76. {
  77. $val = base64_pack(intval($auth_array[$i]));
  78. if (strlen($val) == 1 && !$one_char)
  79. {
  80. $auth_cache .= $one_char_encoding;
  81. $one_char = true;
  82. }
  83. else if (strlen($val) == 2 && !$two_char)
  84. {
  85. $auth_cache .= $two_char_encoding;
  86. $two_char = true;
  87. }
  88. $auth_cache .= $val;
  89. }
  90.  
  91. return $auth_cache;
  92. }
  93.  
  94. function auth_unpack($auth_cache)
  95. {
  96. $one_char_encoding = '#';
  97. $two_char_encoding = '.';
  98.  
  99. $auth = array();
  100. $auth_len = 1;
  101. for ($pos = 0; $pos < strlen($auth_cache); $pos += $auth_len)
  102. {
  103. $forum_auth = substr($auth_cache, $pos, 1);
  104. if ($forum_auth == $one_char_encoding)
  105. {
  106. $auth_len = 1;
  107. continue;
  108. }
  109. else if ($forum_auth == $two_char_encoding)
  110. {
  111. $auth_len = 2;
  112. $pos--;
  113. continue;
  114. }
  115. $forum_auth = substr($auth_cache, $pos, $auth_len);
  116. $forum_id = base64_unpack($forum_auth);
  117. $auth[] = intval($forum_id);
  118. }
  119. return $auth;
  120. }
  121.  
  122. function is_forum_authed($auth_cache, $check_forum_id)
  123. {
  124. $one_char_encoding = '#';
  125. $two_char_encoding = '.';
  126.  
  127. if (trim($auth_cache) == '')
  128. {
  129. return true;
  130. }
  131.  
  132. $auth = array();
  133. $auth_len = 1;
  134. for ($pos = 0; $pos < strlen($auth_cache); $pos+=$auth_len)
  135. {
  136. $forum_auth = substr($auth_cache, $pos, 1);
  137. if ($forum_auth == $one_char_encoding)
  138. {
  139. $auth_len = 1;
  140. continue;
  141. }
  142. else if ($forum_auth == $two_char_encoding)
  143. {
  144. $auth_len = 2;
  145. $pos--;
  146. continue;
  147. }
  148. $forum_auth = substr($auth_cache, $pos, $auth_len);
  149. $forum_id = (int) base64_unpack($forum_auth);
  150. if ($forum_id == $check_forum_id)
  151. {
  152. return true;
  153. }
  154. }
  155. return false;
  156. }
  157.  
  158. function attach_init_ftp($mode = false)
  159. {
  160. global $lang, $attach_config;
  161.  
  162. $server = (trim($attach_config['ftp_server']) == '') ? 'localhost' : trim($attach_config['ftp_server']);
  163. $ftp_path = ($mode == MODE_THUMBNAIL) ? trim($attach_config['ftp_path']) . '/' . THUMB_DIR : trim($attach_config['ftp_path']);
  164.  
  165. $conn_id = @ftp_connect($server);
  166.  
  167. if (!$conn_id)
  168. {
  169. message_die(GENERAL_ERROR, sprintf($lang['Ftp_error_connect'], $server));
  170. }
  171.  
  172. $login_result = @ftp_login($conn_id, $attach_config['ftp_user'], $attach_config['ftp_pass']);
  173.  
  174. if (!$login_result)
  175. {
  176. message_die(GENERAL_ERROR, sprintf($lang['Ftp_error_login'], $attach_config['ftp_user']));
  177. }
  178. if (!@ftp_pasv($conn_id, intval($attach_config['ftp_pasv_mode'])))
  179. {
  180. message_die(GENERAL_ERROR, $lang['Ftp_error_pasv_mode']);
  181. }
  182. $result = @ftp_chdir($conn_id, $ftp_path);
  183.  
  184. if (!$result)
  185. {
  186. message_die(GENERAL_ERROR, sprintf($lang['Ftp_error_path'], $ftp_path));
  187. }
  188.  
  189. return $conn_id;
  190. }
  191.  
  192. function unlink_attach($filename, $mode = false)
  193. {
  194. global $upload_dir, $attach_config, $lang;
  195.  
  196. $filename = basename($filename);
  197. if (!intval($attach_config['allow_ftp_upload']))
  198. {
  199. if ($mode == MODE_THUMBNAIL)
  200. {
  201. $filename = $upload_dir . '/' . THUMB_DIR . '/t_' . $filename;
  202. }
  203. else
  204. {
  205. $filename = $upload_dir . '/' . $filename;
  206. }
  207.  
  208. $deleted = @unlink($filename);
  209. }
  210. else
  211. {
  212. $conn_id = attach_init_ftp($mode);
  213.  
  214. if ($mode == MODE_THUMBNAIL)
  215. {
  216. $filename = 't_' . $filename;
  217. }
  218. $res = @ftp_delete($conn_id, $filename);
  219. if (!$res)
  220. {
  221. if (ATTACH_DEBUG)
  222. {
  223. $add = ($mode == MODE_THUMBNAIL) ? '/' . THUMB_DIR : '';
  224. message_die(GENERAL_ERROR, sprintf($lang['Ftp_error_delete'], $attach_config['ftp_path'] . $add));
  225. }
  226.  
  227. return $deleted;
  228. }
  229.  
  230. @ftp_quit($conn_id);
  231.  
  232. $deleted = true;
  233. }
  234.  
  235. return $deleted;
  236. }
  237.  
  238. function ftp_file($source_file, $dest_file, $mimetype, $disable_error_mode = false)
  239. {
  240. global $attach_config, $lang, $error, $error_msg;
  241.  
  242. $conn_id = attach_init_ftp();
  243.  
  244. $mode = FTP_BINARY;
  245. if (preg_match("/text/i", $mimetype) || preg_match("/html/i", $mimetype))
  246. {
  247. $mode = FTP_ASCII;
  248. }
  249.  
  250. $res = @ftp_put($conn_id, $dest_file, $source_file, $mode);
  251.  
  252. if (!$res && !$disable_error_mode)
  253. {
  254. $error = true;
  255. if (!empty($error_msg))
  256. {
  257. $error_msg .= '<br />';
  258. }
  259. $error_msg = sprintf($lang['Ftp_error_upload'], $attach_config['ftp_path']) . '<br />';
  260. @ftp_quit($conn_id);
  261. return false;
  262. }
  263.  
  264. if (!$res)
  265. {
  266. return false;
  267. }
  268.  
  269. @ftp_site($conn_id, 'CHMOD 0644 ' . $dest_file);
  270. @ftp_quit($conn_id);
  271. return true;
  272. }
  273.  
  274. function attachment_exists($filename)
  275. {
  276. global $upload_dir, $attach_config;
  277.  
  278. $filename = basename($filename);
  279.  
  280. if (!intval($attach_config['allow_ftp_upload']))
  281. {
  282. if (!@file_exists(@amod_realpath($upload_dir . '/' . $filename)))
  283. {
  284. return false;
  285. }
  286. else
  287. {
  288. return true;
  289. }
  290. }
  291. else
  292. {
  293. $found = false;
  294.  
  295. $conn_id = attach_init_ftp();
  296.  
  297. $file_listing = array();
  298.  
  299. $file_listing = @ftp_rawlist($conn_id, $filename);
  300.  
  301. for ($i = 0, $size = sizeof($file_listing); $i < $size; $i++)
  302. {
  303. if (ereg("([-d])[rwxst-]{9}.* ([0-9]*) ([a-zA-Z]+[0-9: ]*[0-9]) ([0-9]{2}:[0-9]{2}) (.+)", $file_listing[$i], $regs))
  304. {
  305. if ($regs[1] == 'd')
  306. {
  307. $dirinfo[0] = 1;
  308. }
  309. $dirinfo[1] = $regs[2];
  310. $dirinfo[2] = $regs[3];
  311. $dirinfo[3] = $regs[4];
  312. $dirinfo[4] = $regs[5];
  313. }
  314. if ($dirinfo[0] != 1 && $dirinfo[4] == $filename)
  315. {
  316. $found = true;
  317. }
  318. }
  319.  
  320. @ftp_quit($conn_id);
  321. return $found;
  322. }
  323. }
  324.  
  325. function thumbnail_exists($filename)
  326. {
  327. global $upload_dir, $attach_config;
  328.  
  329. $filename = basename($filename);
  330.  
  331. if (!intval($attach_config['allow_ftp_upload']))
  332. {
  333. if (!@file_exists(@amod_realpath($upload_dir . '/' . THUMB_DIR . '/t_' . $filename)))
  334. {
  335. return false;
  336. }
  337. else
  338. {
  339. return true;
  340. }
  341. }
  342. else
  343. {
  344. $found = false;
  345.  
  346. $conn_id = attach_init_ftp(MODE_THUMBNAIL);
  347.  
  348. $file_listing = array();
  349.  
  350. $filename = 't_' . $filename;
  351. $file_listing = @ftp_rawlist($conn_id, $filename);
  352.  
  353. for ($i = 0, $size = sizeof($file_listing); $i < $size; $i++)
  354. {
  355. if (ereg("([-d])[rwxst-]{9}.* ([0-9]*) ([a-zA-Z]+[0-9: ]*[0-9]) ([0-9]{2}:[0-9]{2}) (.+)", $file_listing[$i], $regs))
  356. {
  357. if ($regs[1] == 'd')
  358. {
  359. $dirinfo[0] = 1;
  360. }
  361. $dirinfo[1] = $regs[2];
  362. $dirinfo[2] = $regs[3];
  363. $dirinfo[3] = $regs[4];
  364. $dirinfo[4] = $regs[5];
  365. }
  366. if ($dirinfo[0] != 1 && $dirinfo[4] == $filename)
  367. {
  368. $found = true;
  369. }
  370. }
  371.  
  372. @ftp_quit($conn_id);
  373. return $found;
  374. }
  375. }
  376.  
  377. function physical_filename_already_stored($filename)
  378. {
  379. global $db;
  380.  
  381. if ($filename == '')
  382. {
  383. return false;
  384. }
  385.  
  386. $filename = basename($filename);
  387.  
  388. $sql = 'SELECT attach_id
  389. FROM ' . ATTACHMENTS_DESC_TABLE . "
  390. WHERE physical_filename = '" . attach_mod_sql_escape($filename) . "'
  391. LIMIT 1";
  392.  
  393. if (!($result = $db->sql_query($sql)))
  394. {
  395. message_die(GENERAL_ERROR, 'Could not get attachment information for filename: ' . htmlspecialchars($filename), '', __LINE__, __FILE__, $sql);
  396. }
  397. $num_rows = $db->sql_numrows($result);
  398. $db->sql_freeresult($result);
  399.  
  400. return ($num_rows == 0) ? false : true;
  401. }
  402.  
  403. function attachment_exists_db($post_id, $page = 0)
  404. {
  405. global $db;
  406.  
  407. $post_id = (int) $post_id;
  408.  
  409. if ($page == PAGE_PRIVMSGS)
  410. {
  411. $sql_id = 'privmsgs_id';
  412. }
  413. else
  414. {
  415. $sql_id = 'post_id';
  416. }
  417.  
  418. $sql = 'SELECT attach_id
  419. FROM ' . ATTACHMENTS_TABLE . "
  420. WHERE $sql_id = $post_id
  421. LIMIT 1";
  422.  
  423. if (!($result = $db->sql_query($sql)))
  424. {
  425. message_die(GENERAL_ERROR, 'Could not get attachment informations for specific posts', '', __LINE__, __FILE__, $sql);
  426. }
  427. $num_rows = $db->sql_numrows($result);
  428. $db->sql_freeresult($result);
  429.  
  430. if ($num_rows > 0)
  431. {
  432. return true;
  433. }
  434. else
  435. {
  436. return false;
  437. }
  438. }
  439.  
  440. function get_attachments_from_post($post_id_array)
  441. {
  442. global $db, $attach_config;
  443.  
  444. $attachments = array();
  445.  
  446. if (!is_array($post_id_array))
  447. {
  448. if (empty($post_id_array))
  449. {
  450. return $attachments;
  451. }
  452.  
  453. $post_id = intval($post_id_array);
  454.  
  455. $post_id_array = array();
  456. $post_id_array[] = $post_id;
  457. }
  458.  
  459. $post_id_array = implode(', ', array_map('intval', $post_id_array));
  460.  
  461. if ($post_id_array == '')
  462. {
  463. return $attachments;
  464. }
  465.  
  466. $display_order = (intval($attach_config['display_order']) == 0) ? 'DESC' : 'ASC';
  467. $sql = 'SELECT a.post_id, d.*
  468. FROM ' . ATTACHMENTS_TABLE . ' a, ' . ATTACHMENTS_DESC_TABLE . " d
  469. WHERE a.post_id IN ($post_id_array)
  470. AND a.attach_id = d.attach_id
  471. ORDER BY d.filetime $display_order";
  472.  
  473. if ( !($result = $db->sql_query($sql)) )
  474. {
  475. message_die(GENERAL_ERROR, 'Could not get Attachment Informations for post number ' . $post_id_array, '', __LINE__, __FILE__, $sql);
  476. }
  477. $num_rows = $db->sql_numrows($result);
  478. $attachments = $db->sql_fetchrowset($result);
  479. $db->sql_freeresult($result);
  480.  
  481. if ($num_rows == 0)
  482. {
  483. return array();
  484. }
  485. return $attachments;
  486. }
  487.  
  488. function get_attachments_from_pm($privmsgs_id_array)
  489. {
  490. global $db, $attach_config;
  491.  
  492. $attachments = array();
  493.  
  494. if (!is_array($privmsgs_id_array))
  495. {
  496. if (empty($privmsgs_id_array))
  497. {
  498. return $attachments;
  499. }
  500.  
  501. $privmsgs_id = intval($privmsgs_id_array);
  502.  
  503. $privmsgs_id_array = array();
  504. $privmsgs_id_array[] = $privmsgs_id;
  505. }
  506.  
  507. $privmsgs_id_array = implode(', ', array_map('intval', $privmsgs_id_array));
  508.  
  509. if ($privmsgs_id_array == '')
  510. {
  511. return $attachments;
  512. }
  513.  
  514. $display_order = (intval($attach_config['display_order']) == 0) ? 'DESC' : 'ASC';
  515. $sql = 'SELECT a.privmsgs_id, d.*
  516. FROM ' . ATTACHMENTS_TABLE . ' a, ' . ATTACHMENTS_DESC_TABLE . " d
  517. WHERE a.privmsgs_id IN ($privmsgs_id_array)
  518. AND a.attach_id = d.attach_id
  519. ORDER BY d.filetime $display_order";
  520.  
  521. if ( !($result = $db->sql_query($sql)) )
  522. {
  523. message_die(GENERAL_ERROR, 'Could not get Attachment Informations for private message number ' . $privmsgs_id_array, '', __LINE__, __FILE__, $sql);
  524. }
  525. $num_rows = $db->sql_numrows($result);
  526. $attachments = $db->sql_fetchrowset($result);
  527. $db->sql_freeresult($result);
  528.  
  529. if ($num_rows == 0 )
  530. {
  531. return array();
  532. }
  533.  
  534. return $attachments;
  535. }
  536.  
  537. function get_total_attach_filesize($attach_ids)
  538. {
  539. global $db;
  540.  
  541. if (!is_array($attach_ids) || !sizeof($attach_ids))
  542. {
  543. return 0;
  544. }
  545.  
  546. $attach_ids = implode(', ', array_map('intval', $attach_ids));
  547.  
  548. if (!$attach_ids)
  549. {
  550. return 0;
  551. }
  552.  
  553. $sql = 'SELECT filesize
  554. FROM ' . ATTACHMENTS_DESC_TABLE . "
  555. WHERE attach_id IN ($attach_ids)";
  556.  
  557. if ( !($result = $db->sql_query($sql)) )
  558. {
  559. message_die(GENERAL_ERROR, 'Could not query Total Filesize', '', __LINE__, __FILE__, $sql);
  560. }
  561.  
  562. $total_filesize = 0;
  563.  
  564. while ($row = $db->sql_fetchrow($result))
  565. {
  566. $total_filesize += (int) $row['filesize'];
  567. }
  568. $db->sql_freeresult($result);
  569.  
  570. return $total_filesize;
  571. }
  572.  
  573. function get_total_attach_pm_filesize($direction, $user_id)
  574. {
  575. global $db;
  576.  
  577. if ($direction != 'from_user' && $direction != 'to_user')
  578. {
  579. return 0;
  580. }
  581. else
  582. {
  583. $user_sql = ($direction == 'from_user') ? '(a.user_id_1 = ' . intval($user_id) . ')' : '(a.user_id_2 = ' . intval($user_id) . ')';
  584. }
  585.  
  586. $sql = 'SELECT a.attach_id
  587. FROM ' . ATTACHMENTS_TABLE . ' a, ' . PRIVMSGS_TABLE . " p
  588. WHERE $user_sql
  589. AND a.privmsgs_id <> 0 AND a.privmsgs_id = p.privmsgs_id
  590. AND p.privmsgs_type <> " . PRIVMSGS_SENT_MAIL;
  591.  
  592. if ( !($result = $db->sql_query($sql)) )
  593. {
  594. message_die(GENERAL_ERROR, 'Could not query Attachment Informations', '', __LINE__, __FILE__, $sql);
  595. }
  596. $pm_filesize_total = 0;
  597. $attach_id = array();
  598. $num_rows = $db->sql_numrows($result);
  599.  
  600. if ($num_rows == 0)
  601. {
  602. $db->sql_freeresult($result);
  603. return $pm_filesize_total;
  604. }
  605. while ($row = $db->sql_fetchrow($result))
  606. {
  607. $attach_id[] = $row['attach_id'];
  608. }
  609. $db->sql_freeresult($result);
  610.  
  611. $pm_filesize_total = get_total_attach_filesize($attach_id);
  612. return $pm_filesize_total;
  613. }
  614.  
  615. function get_extension_informations()
  616. {
  617. global $db;
  618.  
  619. $extensions = array();
  620.  
  621. $sql = 'SELECT e.extension, g.cat_id, g.download_mode, g.upload_icon
  622. FROM ' . EXTENSIONS_TABLE . ' e, ' . EXTENSION_GROUPS_TABLE . ' g
  623. WHERE e.group_id = g.group_id
  624. AND g.allow_group = 1';
  625. if (!($result = $db->sql_query($sql)))
  626. {
  627. message_die(GENERAL_ERROR, 'Could not query Allowed Extensions.', '', __LINE__, __FILE__, $sql);
  628. }
  629.  
  630. $extensions = $db->sql_fetchrowset($result);
  631. $db->sql_freeresult($result);
  632. return $extensions;
  633. }
  634.  
  635. function attachment_sync_topic($topic_id)
  636. {
  637. global $db;
  638.  
  639. if (!$topic_id)
  640. {
  641. return;
  642. }
  643.  
  644. $topic_id = (int) $topic_id;
  645.  
  646. $sql = 'SELECT post_id
  647. FROM ' . POSTS_TABLE . "
  648. WHERE topic_id = $topic_id
  649. GROUP BY post_id";
  650. if (!($result = $db->sql_query($sql)))
  651. {
  652. message_die(GENERAL_ERROR, 'Couldn\'t select Post ID\'s', '', __LINE__, __FILE__, $sql);
  653. }
  654.  
  655. $post_list = $db->sql_fetchrowset($result);
  656. $num_posts = $db->sql_numrows($result);
  657. $db->sql_freeresult($result);
  658.  
  659. if ($num_posts == 0)
  660. {
  661. return;
  662. }
  663. $post_ids = array();
  664.  
  665. for ($i = 0; $i < $num_posts; $i++)
  666. {
  667. $post_ids[] = intval($post_list[$i]['post_id']);
  668. }
  669.  
  670. $post_id_sql = implode(', ', $post_ids);
  671. if ($post_id_sql == '')
  672. {
  673. return;
  674. }
  675. $sql = 'SELECT attach_id
  676. FROM ' . ATTACHMENTS_TABLE . "
  677. WHERE post_id IN ($post_id_sql)
  678. LIMIT 1";
  679. if ( !($result = $db->sql_query($sql)) )
  680. {
  681. message_die(GENERAL_ERROR, 'Couldn\'t select Attachment ID\'s', '', __LINE__, __FILE__, $sql);
  682. }
  683.  
  684. $set_id = ($db->sql_numrows($result) == 0) ? 0 : 1;
  685.  
  686. $sql = 'UPDATE ' . TOPICS_TABLE . " SET topic_attachment = $set_id WHERE topic_id = $topic_id";
  687.  
  688. if ( !($db->sql_query($sql)) )
  689. {
  690. message_die(GENERAL_ERROR, 'Couldn\'t update Topics Table', '', __LINE__, __FILE__, $sql);
  691. }
  692. for ($i = 0; $i < sizeof($post_ids); $i++)
  693. {
  694. $sql = 'SELECT attach_id
  695. FROM ' . ATTACHMENTS_TABLE . '
  696. WHERE post_id = ' . $post_ids[$i] . '
  697. LIMIT 1';
  698.  
  699. if ( !($result = $db->sql_query($sql)) )
  700. {
  701. message_die(GENERAL_ERROR, 'Couldn\'t select Attachment ID\'s', '', __LINE__, __FILE__, $sql);
  702. }
  703.  
  704. $set_id = ( $db->sql_numrows($result) == 0) ? 0 : 1;
  705. $sql = 'UPDATE ' . POSTS_TABLE . " SET post_attachment = $set_id WHERE post_id = {$post_ids[$i]}";
  706.  
  707. if ( !($db->sql_query($sql)) )
  708. {
  709. message_die(GENERAL_ERROR, 'Couldn\'t update Posts Table', '', __LINE__, __FILE__, $sql);
  710. }
  711. }
  712. }
  713.  
  714. function get_extension($filename)
  715. {
  716. if (!stristr($filename, '.'))
  717. {
  718. return '';
  719. }
  720.  
  721. $extension = strrchr(strtolower($filename), '.');
  722. $extension[0] = ' ';
  723. $extension = strtolower(trim($extension));
  724. if (is_array($extension))
  725. {
  726. return '';
  727. }
  728. else
  729. {
  730. return $extension;
  731. }
  732. }
  733.  
  734. function delete_extension($filename)
  735. {
  736. return substr($filename, 0, strrpos(strtolower(trim($filename)), '.'));
  737. }
  738.  
  739. function user_in_group($user_id, $group_id)
  740. {
  741. global $db;
  742.  
  743. $user_id = (int) $user_id;
  744. $group_id = (int) $group_id;
  745.  
  746. if (!$user_id || !$group_id)
  747. {
  748. return false;
  749. }
  750. $sql = 'SELECT u.group_id
  751. FROM ' . USER_GROUP_TABLE . ' u, ' . GROUPS_TABLE . " g
  752. WHERE g.group_single_user = 0
  753. AND u.user_pending = 0
  754. AND u.group_id = g.group_id
  755. AND u.user_id = $user_id
  756. AND g.group_id = $group_id
  757. LIMIT 1";
  758. if (!($result = $db->sql_query($sql)))
  759. {
  760. message_die(GENERAL_ERROR, 'Could not get User Group', '', __LINE__, __FILE__, $sql);
  761. }
  762.  
  763. $num_rows = $db->sql_numrows($result);
  764. $db->sql_freeresult($result);
  765.  
  766. if ($num_rows == 0)
  767. {
  768. return false;
  769. }
  770. return true;
  771. }
  772.  
  773. function amod_realpath($path)
  774. {
  775. return (function_exists('realpath')) ? realpath($path) : $path;
  776. }
  777.  
  778. function _set_var(&$result, $var, $type, $multibyte = false)
  779. {
  780. settype($var, $type);
  781. $result = $var;
  782.  
  783. if ($type == 'string')
  784. {
  785. $result = trim(htmlspecialchars(str_replace(array("\r\n", "\r", '\xFF'), array("\n", "\n", ' '), $result)));
  786. $result = stripslashes($result);
  787. if ($multibyte)
  788. {
  789. $result = preg_replace('#&amp;(\#[0-9]+;)#', '&\1', $result);
  790. }
  791. }
  792. }
  793.  
  794. function get_var($var_name, $default, $multibyte = false)
  795. {
  796. global $HTTP_POST_VARS, $HTTP_GET_VARS;
  797.  
  798. $request_var = (isset($HTTP_POST_VARS[$var_name])) ? $HTTP_POST_VARS : $HTTP_GET_VARS;
  799.  
  800. if (!isset($request_var[$var_name]) || (is_array($request_var[$var_name]) && !is_array($default)) || (is_array($default) && !is_array($request_var[$var_name])))
  801. {
  802. return (is_array($default)) ? array() : $default;
  803. }
  804.  
  805. $var = $request_var[$var_name];
  806.  
  807. if (!is_array($default))
  808. {
  809. $type = gettype($default);
  810. }
  811. else
  812. {
  813. list($key_type, $type) = each($default);
  814. $type = gettype($type);
  815. $key_type = gettype($key_type);
  816. }
  817.  
  818. if (is_array($var))
  819. {
  820. $_var = $var;
  821. $var = array();
  822.  
  823. foreach ($_var as $k => $v)
  824. {
  825. if (is_array($v))
  826. {
  827. foreach ($v as $_k => $_v)
  828. {
  829. _set_var($k, $k, $key_type);
  830. _set_var($_k, $_k, $key_type);
  831. _set_var($var[$k][$_k], $_v, $type, $multibyte);
  832. }
  833. }
  834. else
  835. {
  836. _set_var($k, $k, $key_type);
  837. _set_var($var[$k], $v, $type, $multibyte);
  838. }
  839. }
  840. }
  841. else
  842. {
  843. _set_var($var, $var, $type, $multibyte);
  844. }
  845. return $var;
  846. }
  847.  
  848. function attach_mod_sql_escape($text)
  849. {
  850. switch (SQL_LAYER)
  851. {
  852. case 'postgresql':
  853. return pg_escape_string($text);
  854. break;
  855.  
  856. case 'mysql':
  857. case 'mysql4':
  858. if (function_exists('mysql_escape_string'))
  859. {
  860. return mysql_escape_string($text);
  861. }
  862. else
  863. {
  864. return str_replace("'", "''", str_replace('\\', '\\\\', $text));
  865. }
  866. break;
  867.  
  868. default:
  869. return str_replace("'", "''", str_replace('\\', '\\\\', $text));
  870. break;
  871. }
  872. }
  873.  
  874. function attach_mod_sql_build_array($query, $assoc_ary = false)
  875. {
  876. if (!is_array($assoc_ary))
  877. {
  878. return false;
  879. }
  880.  
  881. $fields = array();
  882. $values = array();
  883. if ($query == 'INSERT' || $query == 'INSERT_SELECT')
  884. {
  885. foreach ($assoc_ary as $key => $var)
  886. {
  887. $fields[] = $key;
  888.  
  889. if (is_null($var))
  890. {
  891. $values[] = 'NULL';
  892. }
  893. else if (is_string($var))
  894. {
  895. $values[] = "'" . attach_mod_sql_escape($var) . "'";
  896. }
  897. else if (is_array($var) && is_string($var[0]))
  898. {
  899. $values[] = $var[0];
  900. }
  901. else
  902. {
  903. $values[] = (is_bool($var)) ? intval($var) : $var;
  904. }
  905. }
  906.  
  907. $query = ($query == 'INSERT') ? ' (' . implode(', ', $fields) . ') VALUES (' . implode(', ', $values) . ')' : ' (' . implode(', ', $fields) . ') SELECT ' . implode(', ', $values) . ' ';
  908. }
  909. else if ($query == 'MULTI_INSERT')
  910. {
  911. $ary = array();
  912. foreach ($assoc_ary as $id => $sql_ary)
  913. {
  914. $values = array();
  915. foreach ($sql_ary as $key => $var)
  916. {
  917. if (is_null($var))
  918. {
  919. $values[] = 'NULL';
  920. }
  921. elseif (is_string($var))
  922. {
  923. $values[] = "'" . attach_mod_sql_escape($var) . "'";
  924. }
  925. else
  926. {
  927. $values[] = (is_bool($var)) ? intval($var) : $var;
  928. }
  929. }
  930. $ary[] = '(' . implode(', ', $values) . ')';
  931. }
  932.  
  933. $query = ' (' . implode(', ', array_keys($assoc_ary[0])) . ') VALUES ' . implode(', ', $ary);
  934. }
  935. else if ($query == 'UPDATE' || $query == 'SELECT')
  936. {
  937. $values = array();
  938. foreach ($assoc_ary as $key => $var)
  939. {
  940. if (is_null($var))
  941. {
  942. $values[] = "$key = NULL";
  943. }
  944. elseif (is_string($var))
  945. {
  946. $values[] = "$key = '" . attach_mod_sql_escape($var) . "'";
  947. }
  948. else
  949. {
  950. $values[] = (is_bool($var)) ? "$key = " . intval($var) : "$key = $var";
  951. }
  952. }
  953. $query = implode(($query == 'UPDATE') ? ', ' : ' AND ', $values);
  954. }
  955.  
  956. return $query;
  957. }
  958.  
  959. ?>