Просмотр файла games/question.php

Размер файла: 9.58Kb
  1. <?php
  2. /***************************************************************************
  3. * mides.ru
  4. * -------------------
  5. ***************************************************************************/
  6. define('IN_PHPBB', true);
  7. $phpbb_root_path = './';
  8. include($phpbb_root_path . 'extension.inc');
  9. include($phpbb_root_path . 'common.' . $phpEx);
  10. include($phpbb_root_path . 'includes/constants.' . $phpEx);
  11.  
  12. $userdata = session_pagestart($user_ip, PAGE_INDEX);
  13. init_userprefs($userdata);
  14.  
  15. $user_lang = ($userdata['user_id'] != ANONYMOUS) ? $userdata['user_lang'] : $board_config['default_lang'];
  16. if( file_exists($phpbb_root_path . 'language/lang_' . $user_lang . '/lang_quizzz.php') )
  17. {
  18. include_once($phpbb_root_path . 'language/lang_' . $user_lang . '/lang_quizzz.php');
  19. }
  20. else
  21. {
  22. $user_lang = 'english';
  23. include_once($phpbb_root_path . 'language/lang_english/lang_quizzz.php');
  24. }
  25. include($phpbb_root_path . 'includes/page_header.'.$phpEx);
  26. global $db , $lang , $phpEx , $phpbb_root_path;
  27.  
  28. define('QUESTIONS_TABLE', $table_prefix.'question');
  29. define('QUESTIONS_CONFIG_TABLE', $table_prefix.'questions_config');
  30. define('QUESTIONS_TEMP_TABLE', $table_prefix.'questions_temp');
  31. define('QUESTIONS_ACTIVE_TABLE', $table_prefix.'questions_active');
  32. define('USERS_TABLE', $table_prefix.'users');
  33.  
  34. $time_now = date("U");
  35. $user_id = $userdata['user_id'];
  36.  
  37. if (!$userdata['session_logged_in'] && $user_id == ANONYMOUS)
  38. {
  39. $header_location = ( @preg_match("/Microsoft|WebSTAR|Xitami/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
  40. header($header_location . append_sid("login.$phpEx?redirect=quizzz.$phpEx", true));
  41. exit;
  42. }
  43.  
  44. $user_points = $userdata['user_points'];
  45.  
  46. $sql="SELECT *
  47. FROM " . QUESTIONS_CONFIG_TABLE;
  48. if ( !($result = $db->sql_query($sql)) )
  49. {
  50. message_die(GENERAL_ERROR, $lang['qz_obloms']."301", "", __LINE__, __FILE__, $sql);
  51. }
  52.  
  53. while( $row = $db->sql_fetchrow($result) )
  54. {
  55. $quiz_conf[$row['config_name']] = $row['config_value'];
  56. }
  57.  
  58. $conf_on_off = $quiz_conf['on_off'];
  59. $conf_cost_right = $quiz_conf['cost_right'];
  60. $conf_min_time = $quiz_conf['min_time'];
  61. $conf_otv_time = $quiz_conf['otv_time'];
  62. $conf_snd_on = $quiz_conf['snd_on'];
  63.  
  64. $points_name = ($board_config['points_name']) ? $board_config['points_name'] : 'points';
  65.  
  66. $template->set_filenames(array( 'body' => 'quiz_act_body.tpl'));
  67.  
  68. if (!$conf_on_off)
  69. {
  70. message_die(GENERAL_MESSAGE, $lang['qz_is_off']);
  71. }
  72.  
  73. if( isset($_GET['id']) AND isset($_GET['otvet']))
  74. {
  75. $no_vo = $_GET['id'];
  76. $no_otv = $_GET['otvet'];
  77.  
  78. $sql= "SELECT *
  79. FROM " . QUESTIONS_ACTIVE_TABLE . "
  80. WHERE user_id = $user_id";
  81. if ( !($result = $db->sql_query($sql)) )
  82. {
  83. message_die(GENERAL_ERROR, $lang['qz_obloms']."302", "", __LINE__, __FILE__, $sql);
  84. }
  85. $row = $db->sql_fetchrow($result);
  86. $no_vo_re = $row['vop_id'];
  87. $no_otv_re = $row['real_otvet'];
  88. $start_time = $row['start_time'];
  89.  
  90. if ($no_vo != $no_vo_re)
  91. {
  92. $shtraf = ($user_points > $conf_cost_right*10) ? $conf_cost_right*10 : $user_points;
  93. $sql = "UPDATE " . USERS_TABLE . "
  94. SET user_points = user_points - $shtraf
  95. WHERE user_id = $user_id";
  96. if ( !$db->sql_query($sql) )
  97. {
  98. message_die(GENERAL_ERROR, $lang['qz_obloms']."303", "", __LINE__, __FILE__, $sql);
  99. }
  100. $message = $lang['qz_vzlom1'] . $conf_cost_right*10 . ' ' . 'монет' . $lang['qz_vzlom2'] . sprintf($lang['qz_return2forum'], '<a href="index.php">', '</a>');
  101. message_die(GENERAL_MESSAGE, $message);
  102. }
  103.  
  104. if ( ($time_now - $start_time) > $conf_otv_time*2)
  105. {
  106. $shtraf = ($user_points > $conf_cost_right) ? $conf_cost_right : $user_points;
  107. $sql = "UPDATE " . USERS_TABLE . "
  108. SET user_points = user_points - $shtraf
  109. WHERE user_id = $user_id";
  110. if ( !$db->sql_query($sql) )
  111. {
  112. message_die(GENERAL_ERROR, $lang['qz_obloms']."304", "", __LINE__, __FILE__, $sql);
  113. }
  114. $time_old = date("U")-$start_time+$conf_otv_time*2;
  115. $message = $lang['qz_timeout1'] . $time_old . $lang['qz_timeout2'] . $conf_cost_right . ' монет!'.'<br />' . sprintf('<a href="question.php">'.'Продолжить'.'</a>');
  116. message_die(GENERAL_MESSAGE, $message);
  117. }
  118.  
  119. if (!$no_otv_re)
  120. {
  121. $shtraf = ($user_points > $conf_cost_right*10) ? $conf_cost_right*10 : $user_points;
  122. $sql = "UPDATE " . USERS_TABLE . "
  123. SET user_points = user_points - $shtraf
  124. WHERE user_id = $user_id";
  125. if ( !$db->sql_query($sql) )
  126. {
  127. message_die(GENERAL_ERROR, $lang['qz_obloms']."305", "", __LINE__, __FILE__, $sql);
  128. }
  129. $message = $lang['qz_vzlom3'] . $conf_cost_right*10 . ' ' . 'монет' . $lang['qz_cry'] . sprintf('<a href="index.php">'.'пошел(ла) вон!'.'</a>');
  130. message_die(GENERAL_MESSAGE, $message);
  131. }
  132.  
  133. if ($no_otv == $no_otv_re)
  134. {
  135. $sql = "UPDATE " . USERS_TABLE . "
  136. SET user_points = user_points + $conf_cost_right
  137. WHERE user_id = $user_id";
  138. if ( !$db->sql_query($sql) )
  139. {
  140. message_die(GENERAL_ERROR, $lang['qz_obloms']."306", "", __LINE__, __FILE__, $sql);
  141. }
  142. $sql = "UPDATE " . QUESTIONS_ACTIVE_TABLE . "
  143. SET real_otvet = 0,
  144. right_otv = right_otv+1
  145. WHERE user_id = $user_id";
  146. if ( !$db->sql_query($sql) )
  147. {
  148. message_die(GENERAL_ERROR, $lang['qz_obloms']."307", "", __LINE__, __FILE__, $sql);
  149. }
  150. $m8 = ($conf_min_time) ? $lang['qz_time2next'] . $conf_min_time . $lang['qz_minutes'] : '';
  151. $message = $lang['qz_win'] . $conf_cost_right . ' монет!' . $m8 . sprintf("<a href=\"" . append_sid("question.$phpEx") . "\">".'<br/> Продолжить'."</a>");
  152. message_die(GENERAL_MESSAGE, $message);
  153. }
  154. else
  155. {
  156. $m9 = ($conf_min_time) ? $lang['qz_dontcry'] . $conf_min_time . $lang['qz_once_again'] : $lang['qz_your_can'];
  157. $message = $lang['qz_your_wrong'] . $m9 . sprintf("<a href=\"" . append_sid("question.$phpEx") . "\">".'<br/> Продолжить'."</a>") . sprintf("<a href=\"" . append_sid("index.$phpEx") . "\">".'<br/>Перейти на сайт'."</a>");
  158. message_die(GENERAL_MESSAGE, $message);
  159.  
  160. }
  161.  
  162. }
  163.  
  164. $sql = "SELECT start_time, vop_id
  165. FROM " . QUESTIONS_ACTIVE_TABLE . "
  166. WHERE user_id = $user_id";
  167. if ( !($result = $db->sql_query($sql)) )
  168. {
  169. message_die(GENERAL_ERROR, $lang['qz_obloms']."308", "", __LINE__, __FILE__, $sql);
  170. }
  171. $row = $db->sql_fetchrow($result);
  172. $time_prev = $row['start_time'];
  173. $vop_id = $row['vop_id'];
  174. if ( (date("U")-$time_prev)/60 < $conf_min_time AND $conf_min_time)
  175. {
  176. $sql = "UPDATE " . USERS_TABLE . "
  177. SET user_points = user_points - $conf_cost_right*2
  178. WHERE user_id = $user_id";
  179. if ( !$db->sql_query($sql) )
  180. {
  181. message_die(GENERAL_ERROR, $lang['qz_obloms']."309", "", __LINE__, __FILE__, $sql);
  182. }
  183.  
  184. $message = $lang['qz_wait'] . $conf_min_time . $lang['qz_vzlom4'] . $conf_cost_right*2 . ' ' . $points_name . '!<br /><br />' . sprintf($lang['qz_return1forum'], '<a href="index.php">', '</a>');
  185. message_die(GENERAL_MESSAGE, $message);
  186. }
  187.  
  188. $script_pop = '';
  189. if( isset($_GET['pop']) AND $_GET['pop']==2)
  190. {
  191. $pop = $_GET['pop'];
  192. $script_pop = "if (!confirm(" . $lang['qz_confirm'] . ") ) {self.close();} else {parent.location='question.php';}";
  193.  
  194. }
  195.  
  196. $sql= "SELECT *
  197. FROM " . QUESTIONS_TABLE . "
  198. WHERE moder = 1 ORDER BY RAND() LIMIT 1";
  199.  
  200. if ( !($result = $db->sql_query($sql)) )
  201. {
  202. message_die(GENERAL_ERROR, $lang['qz_obloms']."310", "", __LINE__, __FILE__, $sql);
  203. }
  204. $row = $db->sql_fetchrow($result);
  205. $numb_q = $row['id'];
  206. $quest = $row['question'];
  207. $otv1 = $row['otvet_1'];
  208. $otv2 = $row['otvet_2'];
  209. $otv3 = $row['otvet_3'];
  210. $otv4 = $row['otvet_4'];
  211. $real = $row['otvet_verno'];
  212. $autor = $row['author'];
  213.  
  214. if (!$quest)
  215. {
  216. $message = $lang['qz_base_empty'] . sprintf($lang['qz_send_q2b'], "<a href=\"" . append_sid("add_question.$phpEx") . "\">", "</a>") . $lang['qz_your_q2'] . sprintf($lang['qz_return2forum2'], '<a href="index.php">', '</a>');
  217. message_die(GENERAL_MESSAGE, $message);
  218. }
  219.  
  220. if ($numb_q==$vop_id AND !isset($_GET['pop']))
  221. {
  222. $message = $lang['qz_second'] . sprintf($lang['qz_return1forum'], "<a href=\"" . append_sid("index.$phpEx") . "\">", "</a>");
  223. message_die(GENERAL_MESSAGE, $message);
  224. }
  225.  
  226. $sql = "SELECT COUNT(*) as count_user FROM " . QUESTIONS_ACTIVE_TABLE . " WHERE user_id = $user_id";
  227. if(!$result = $db->sql_query($sql))
  228. {
  229. message_die(GENERAL_ERROR, $lang['qz_obloms']."311", "", __LINE__, __FILE__, $sql);
  230.  
  231. }
  232. $row = $db->sql_fetchrow($result);
  233. $count_user = $row['count_user'];
  234.  
  235. $k4=3; // addition time for download page
  236. $d= date("U")+$k4;
  237. if ($count_user == 0 AND $pop!=2)
  238. {
  239. $sql = "INSERT INTO " . QUESTIONS_ACTIVE_TABLE . "
  240. (user_id, vop_id, real_otvet, start_time, zad_vop)
  241. VALUES ($user_id, $numb_q, $real, $d, '1')";
  242. if (!$db->sql_query($sql))
  243. {
  244. message_die(GENERAL_ERROR, $lang['qz_obloms']."312", '', __LINE__, __FILE__, $sql);
  245. }
  246. }
  247. elseif ($pop!=2)
  248. {
  249. $sql= "UPDATE " . QUESTIONS_ACTIVE_TABLE . "
  250. SET vop_id = $numb_q,
  251. real_otvet = $real,
  252. start_time = $d,
  253. zad_vop = zad_vop+1
  254. WHERE user_id = $user_id LIMIT 1";
  255.  
  256. if ( !($result = $db->sql_query($sql)) )
  257. {
  258. message_die(GENERAL_ERROR, $lang['qz_obloms']."313", "", __LINE__, __FILE__, $sql);
  259. }
  260. }
  261. $template->assign_vars(array(
  262. 'L_SCR1' => $lang['qz_inscript1'],
  263. 'L_SCR2' => $lang['qz_inscript2'],
  264. 'L_SCR3' => $lang['qz_inscript3'],
  265. 'L_VOP' => $lang['qz_quest'],
  266. 'L_AVTOR' => $lang['qz_autor_q'],
  267. 'L_COPYR' => $lang['qz_co'],
  268.  
  269. 'SCRIPT_POP' => $script_pop,
  270. 'NUMB' => $numb_q,
  271. 'VOP' => $quest,
  272. 'OTV1' => $otv1,
  273. 'OTV2' => $otv2,
  274. 'OTV3' => $otv3,
  275. 'OTV4' => $otv4,
  276. 'AVTOR' => $autor,
  277. 'OTV_TIME' => $conf_otv_time
  278. ));
  279.  
  280. $template->assign_block_vars('', array());
  281.  
  282. $template->pparse('body');
  283.  
  284. include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
  285. ?>