upgrade_2-1_mysql.sql 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  1. /* ATTENTION: You don't need to run or use this file! The upgrade.php script does everything for you! */
  2. /******************************************************************************/
  3. --- Adding new settings...
  4. /******************************************************************************/
  5. ---# Adding login history...
  6. CREATE TABLE IF NOT EXISTS {$db_prefix}member_logins (
  7. id_login int(10) NOT NULL auto_increment,
  8. id_member mediumint(8) NOT NULL,
  9. time int(10) NOT NULL,
  10. ip varchar(255) NOT NULL default '',
  11. ip2 varchar(255) NOT NULL default '',
  12. PRIMARY KEY id_login(id_login),
  13. KEY id_member (id_member),
  14. KEY time (time)
  15. ) ENGINE=MyISAM{$db_collation};
  16. ---#
  17. ---# Copying the current package backup setting...
  18. ---{
  19. if (!isset($modSettings['package_make_full_backups']) && isset($modSettings['package_make_backups']))
  20. upgrade_query("
  21. INSERT INTO {$db_prefix}settings
  22. (variable, value)
  23. VALUES
  24. ('package_make_full_backups', '" . $modSettings['package_make_backups'] . "')");
  25. ---}
  26. ---#
  27. ---# Copying the current "allow users to disable word censor" setting...
  28. ---{
  29. if (!isset($modSettings['allow_no_censored']))
  30. {
  31. $request = upgrade_query("
  32. SELECT value
  33. FROM {$db_prefix}themes
  34. WHERE variable='allow_no_censored'
  35. AND id_theme = 1 OR id_theme = '$modSettings[theme_default]'
  36. ");
  37. // Is it set for either "default" or the one they've set as default?
  38. while ($row = $smcFunc['db_fetch_assoc']($request))
  39. {
  40. if ($row['value'] == 1)
  41. {
  42. upgrade_query("
  43. INSERT INTO {$db_prefix}settings
  44. VALUES ('allow_no_censored', 1)
  45. ");
  46. // Don't do this twice...
  47. break;
  48. }
  49. }
  50. }
  51. ---}
  52. ---#
  53. ---# Adding new "topic_move_any" setting
  54. INSERT INTO {$db_prefix}settings (variable, value) VALUES ('topic_move_any', '1');
  55. ---#
  56. /******************************************************************************/
  57. --- Updating legacy attachments...
  58. /******************************************************************************/
  59. ---# Converting legacy attachments.
  60. ---{
  61. // Need to know a few things first.
  62. $custom_av_dir = !empty($modSettings['custom_avatar_dir']) ? $modSettings['custom_avatar_dir'] : $GLOBALS['boarddir'] .'/custom_avatar';
  63. // This little fellow has to cooperate...
  64. if (!is_writable($custom_av_dir))
  65. @chmod($custom_av_dir, 0777);
  66. $request = upgrade_query("
  67. SELECT MAX(id_attach)
  68. FROM {$db_prefix}attachments");
  69. list ($step_progress['total']) = $smcFunc['db_fetch_row']($request);
  70. $smcFunc['db_free_result']($request);
  71. $_GET['a'] = isset($_GET['a']) ? (int) $_GET['a'] : 0;
  72. $step_progress['name'] = 'Converting legacy attachments';
  73. $step_progress['current'] = $_GET['a'];
  74. // We may be using multiple attachment directories.
  75. if (!empty($modSettings['currentAttachmentUploadDir']) && !is_array($modSettings['attachmentUploadDir']))
  76. $modSettings['attachmentUploadDir'] = unserialize($modSettings['attachmentUploadDir']);
  77. $is_done = false;
  78. while (!$is_done)
  79. {
  80. nextSubStep($substep);
  81. $fileHash = '';
  82. $request = upgrade_query("
  83. SELECT id_attach, id_folder, filename, file_hash
  84. FROM {$db_prefix}attachments
  85. WHERE attachment_type != 1
  86. LIMIT $_GET[a], 100");
  87. // Finished?
  88. if ($smcFunc['db_num_rows']($request) == 0)
  89. $is_done = true;
  90. while ($row = $smcFunc['db_fetch_assoc']($request))
  91. {
  92. // The current folder.
  93. $currentFolder = !empty($modSettings['currentAttachmentUploadDir']) ? $modSettings['attachmentUploadDir'][$row['id_folder']] : $modSettings['attachmentUploadDir'];
  94. // Old School?
  95. if (empty($row['file_hash']))
  96. {
  97. // Remove international characters (windows-1252)
  98. // These lines should never be needed again. Still, behave.
  99. if (empty($db_character_set) || $db_character_set != 'utf8')
  100. {
  101. $row['filename'] = strtr($row['filename'],
  102. "\x8a\x8e\x9a\x9e\x9f\xc0\xc1\xc2\xc3\xc4\xc5\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd1\xd2\xd3\xd4\xd5\xd6\xd8\xd9\xda\xdb\xdc\xdd\xe0\xe1\xe2\xe3\xe4\xe5\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf1\xf2\xf3\xf4\xf5\xf6\xf8\xf9\xfa\xfb\xfc\xfd\xff",
  103. 'SZszYAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy');
  104. $row['filename'] = strtr($row['filename'], array("\xde" => 'TH', "\xfe" =>
  105. 'th', "\xd0" => 'DH', "\xf0" => 'dh', "\xdf" => 'ss', "\x8c" => 'OE',
  106. "\x9c" => 'oe', "\xc6" => 'AE', "\xe6" => 'ae', "\xb5" => 'u'));
  107. }
  108. // Sorry, no spaces, dots, or anything else but letters allowed.
  109. $row['filename'] = preg_replace(array('/\s/', '/[^\w_\.\-]/'), array('_', ''), $row['filename']);
  110. // Create a nice hash.
  111. $fileHash = sha1(md5($row['filename'] . time()) . mt_rand());
  112. // The old file, we need to know if the filename was encrypted or not.
  113. if (file_exists($currentFolder . '/' . $row['id_attach']. '_' . strtr($row['filename'], '.', '_') . md5($row['filename'])))
  114. $oldFile = $currentFolder . '/' . $row['id_attach']. '_' . strtr($row['filename'], '.', '_') . md5($row['filename']);
  115. else if (file_exists($currentFolder . '/' . $row['filename']));
  116. $oldFile = $currentFolder . '/' . $row['filename'];
  117. // Build the new file.
  118. $newFile = $currentFolder . '/' . $row['id_attach'] . '_' . $fileHash .'.dat';
  119. }
  120. // Just rename the file.
  121. else
  122. {
  123. $oldFile = $currentFolder . '/' . $row['id_attach'] . '_' . $row['file_hash'];
  124. $newFile = $currentFolder . '/' . $row['id_attach'] . '_' . $row['file_hash'] .'.dat';
  125. }
  126. // Check if the av is an attachment
  127. if ($row['id_member'] != 0)
  128. if (rename($oldFile, $custom_av_dir . '/' . $row['filename']))
  129. upgrade_query("
  130. UPDATE {$db_prefix}attachments
  131. SET file_hash = '', attachment_type = 1
  132. WHERE id_attach = $row[id_attach]");
  133. // Just a regular attachment.
  134. else
  135. rename($oldFile, $newFile);
  136. // Only update this if it was successful and the file was using the old system.
  137. if (empty($row['file_hash']) && !empty($fileHash) && file_exists($newFile) && !file_exists($oldFile))
  138. upgrade_query("
  139. UPDATE {$db_prefix}attachments
  140. SET file_hash = '$fileHash'
  141. WHERE id_attach = $row[id_attach]");
  142. }
  143. $smcFunc['db_free_result']($request);
  144. $_GET['a'] += 100;
  145. $step_progress['current'] = $_GET['a'];
  146. }
  147. unset($_GET['a']);
  148. ---}
  149. ---#
  150. /******************************************************************************/
  151. --- Adding support for IPv6...
  152. /******************************************************************************/
  153. ---# Adding new columns to ban items...
  154. ALTER TABLE {$db_prefix}ban_items
  155. ADD COLUMN ip_low5 smallint(255) unsigned NOT NULL DEFAULT '0',
  156. ADD COLUMN ip_high5 smallint(255) unsigned NOT NULL DEFAULT '0',
  157. ADD COLUMN ip_low6 smallint(255) unsigned NOT NULL DEFAULT '0',
  158. ADD COLUMN ip_high6 smallint(255) unsigned NOT NULL DEFAULT '0',
  159. ADD COLUMN ip_low7 smallint(255) unsigned NOT NULL DEFAULT '0',
  160. ADD COLUMN ip_high7 smallint(255) unsigned NOT NULL DEFAULT '0',
  161. ADD COLUMN ip_low8 smallint(255) unsigned NOT NULL DEFAULT '0',
  162. ADD COLUMN ip_high8 smallint(255) unsigned NOT NULL DEFAULT '0';
  163. ---#
  164. ---# Changing existing columns to ban items...
  165. ALTER TABLE {$db_prefix}ban_items
  166. CHANGE ip_low1 ip_low1 smallint(255) unsigned NOT NULL DEFAULT '0',
  167. CHANGE ip_high1 ip_high1 smallint(255) unsigned NOT NULL DEFAULT '0',
  168. CHANGE ip_low2 ip_low2 smallint(255) unsigned NOT NULL DEFAULT '0',
  169. CHANGE ip_high2 ip_high2 smallint(255) unsigned NOT NULL DEFAULT '0',
  170. CHANGE ip_low3 ip_low3 smallint(255) unsigned NOT NULL DEFAULT '0',
  171. CHANGE ip_high3 ip_high3 smallint(255) unsigned NOT NULL DEFAULT '0',
  172. CHANGE ip_low4 ip_low4 smallint(255) unsigned NOT NULL DEFAULT '0',
  173. CHANGE ip_high4 ip_high4 smallint(255) unsigned NOT NULL DEFAULT '0';
  174. ---#
  175. /******************************************************************************/
  176. --- Adding support for logging who fulfils a group request.
  177. /******************************************************************************/
  178. ---# Adding new columns to log_group_requests
  179. ALTER TABLE {$db_prefix}log_group_requests
  180. ADD COLUMN status tinyint(3) unsigned NOT NULL default '0',
  181. ADD COLUMN id_member_acted mediumint(8) unsigned NOT NULL default '0',
  182. ADD COLUMN member_name_acted varchar(255) NOT NULL default '',
  183. ADD COLUMN time_acted int(10) unsigned NOT NULL default '0',
  184. ADD COLUMN act_reason text NOT NULL;
  185. ---#
  186. ---# Adjusting the indexes for log_group_requests
  187. ALTER TABLE {$db_prefix}log_group_requests
  188. DROP INDEX `id_member`,
  189. ADD INDEX `id_member` (`id_member`, `id_group`);
  190. ---#
  191. /******************************************************************************/
  192. --- Adding support for <credits> tag in package manager
  193. /******************************************************************************/
  194. ---# Adding new columns to log_packages ..
  195. ALTER TABLE {$db_prefix}log_packages
  196. ADD COLUMN credits varchar(255) NOT NULL DEFAULT '';
  197. ---#
  198. /******************************************************************************/
  199. --- Adding more space for session ids
  200. /******************************************************************************/
  201. ---# Altering the session_id columns...
  202. ALTER TABLE {$db_prefix}log_online
  203. CHANGE `session` `session` varchar(64) NOT NULL DEFAULT '';
  204. ALTER TABLE {$db_prefix}log_errors
  205. CHANGE `session` `session` char(64) NOT NULL default ' ';
  206. ALTER TABLE {$db_prefix}sessions
  207. CHANGE `session_id` `session_id` char(64) NOT NULL;
  208. ---#
  209. /******************************************************************************/
  210. --- Adding support for MOVED topics enhancements
  211. /******************************************************************************/
  212. ---# Adding new columns to topics ..
  213. ALTER TABLE {$db_prefix}topics
  214. ADD COLUMN redirect_expires int(10) unsigned NOT NULL default '0',
  215. ADD COLUMN id_redirect_topic mediumint(8) unsigned NOT NULL default '0';
  216. ---#
  217. /******************************************************************************/
  218. --- Adding new scheduled tasks
  219. /******************************************************************************/
  220. ---# Adding new scheduled tasks
  221. INSERT INTO {$db_prefix}scheduled_tasks
  222. (next_time, time_offset, time_regularity, time_unit, disabled, task)
  223. VALUES
  224. (0, 120, 1, 'd', 0, 'remove_temp_attachments');
  225. INSERT INTO {$db_prefix}scheduled_tasks
  226. (next_time, time_offset, time_regularity, time_unit, disabled, task)
  227. VALUES
  228. (0, 180, 1, 'd', 0, 'remove_topic_redirect');
  229. INSERT INTO {$db_prefix}scheduled_tasks
  230. (next_time, time_offset, time_regularity, time_unit, disabled, task)
  231. VALUES
  232. (0, 240, 1, 'd', 0, 'remove_old_drafts');
  233. ---#
  234. /******************************************************************************/
  235. ---- Adding background tasks support
  236. /******************************************************************************/
  237. ---# Adding the new table
  238. CREATE TABLE IF NOT EXISTS {$db_prefix}background_tasks (
  239. id_task int(10) unsigned NOT NULL auto_increment,
  240. task_file varchar(255) NOT NULL default '',
  241. task_class varchar(255) NOT NULL default '',
  242. task_data mediumtext NOT NULL,
  243. claimed_time int(10) unsigned NOT NULL default '0',
  244. PRIMARY KEY (id_task)
  245. ) ENGINE=MyISAM;
  246. ---#
  247. /******************************************************************************/
  248. ---- Replacing MSN with Skype
  249. /******************************************************************************/
  250. ---# Modifying the "msn" column...
  251. ALTER TABLE {$db_prefix}members
  252. CHANGE msn skype varchar(255) NOT NULL DEFAULT '';
  253. ---#
  254. /******************************************************************************/
  255. --- Adding support for deny boards access
  256. /******************************************************************************/
  257. ---# Adding new columns to boards...
  258. ALTER TABLE {$db_prefix}boards
  259. ADD COLUMN deny_member_groups varchar(255) NOT NULL DEFAULT '';
  260. ---#
  261. /******************************************************************************/
  262. --- Adding support for category descriptions
  263. /******************************************************************************/
  264. ---# Adding new columns to categories...
  265. ALTER TABLE {$db_prefix}categories
  266. ADD COLUMN description text NOT NULL;
  267. ---#
  268. /******************************************************************************/
  269. --- Adding support for alerts
  270. /******************************************************************************/
  271. ---# Adding the count to the members table...
  272. ALTER TABLE {$db_prefix}members
  273. ADD COLUMN alerts int(10) unsigned NOT NULL default '0';
  274. ---#
  275. ---# Adding the new table for alerts.
  276. CREATE TABLE IF NOT EXISTS {$db_prefix}user_alerts (
  277. id_alert int(10) unsigned NOT NULL auto_increment,
  278. alert_time int(10) unsigned NOT NULL default '0',
  279. id_member mediumint(10) unsigned NOT NULL default '0',
  280. id_member_started mediumint(10) unsigned NOT NULL default '0',
  281. member_name varchar(255) NOT NULL default '',
  282. content_type varchar(255) NOT NULL default '',
  283. content_id int(10) unsigned NOT NULL default '0',
  284. content_action varchar(255) NOT NULL default '',
  285. is_read tinyint(3) unsigned NOT NULL default '0',
  286. extra text NOT NULL,
  287. PRIMARY KEY (id_alert),
  288. KEY id_member (id_member),
  289. KEY alert_time (alert_time)
  290. ) ENGINE=MyISAM;
  291. ---#
  292. ---# Adding alert preferences.
  293. CREATE TABLE IF NOT EXISTS {$db_prefix}user_alerts_prefs (
  294. id_member mediumint(8) unsigned NOT NULL default '0',
  295. alert_pref varchar(32) NOT NULL default '',
  296. alert_value tinyint(3) NOT NULL default '0',
  297. PRIMARY KEY (id_member, alert_pref)
  298. ) ENGINE=MyISAM;
  299. INSERT INTO {$db_prefix}user_alerts_prefs
  300. (id_member, alert_pref, alert_value)
  301. VALUES (0, 'member_group_request', 1),
  302. (0, 'member_register', 1),
  303. (0, 'msg_like', 1),
  304. (0, 'msg_report', 1),
  305. (0, 'msg_report_reply', 1);
  306. ---#
  307. /******************************************************************************/
  308. --- Adding support for topic unwatch
  309. /******************************************************************************/
  310. ---# Adding new columns to boards...
  311. ALTER TABLE {$db_prefix}log_topics
  312. ADD COLUMN unwatched tinyint(3) NOT NULL DEFAULT '0';
  313. UPDATE {$db_prefix}log_topics
  314. SET unwatched = 0;
  315. INSERT INTO {$db_prefix}settings
  316. (variable, value)
  317. VALUES
  318. ('enable_unwatch', 0);
  319. ---#
  320. ---# Fixing column name change...
  321. ALTER TABLE {$db_prefix}log_topics
  322. CHANGE COLUMN disregarded unwatched tinyint(3) NOT NULL DEFAULT '0';
  323. ---#
  324. /******************************************************************************/
  325. --- Fixing mail queue for long messages
  326. /******************************************************************************/
  327. ---# Altering mil_queue table...
  328. ALTER TABLE {$db_prefix}mail_queue
  329. CHANGE body body mediumtext NOT NULL;
  330. ---#
  331. /******************************************************************************/
  332. --- Name changes
  333. /******************************************************************************/
  334. ---# Altering the membergroup stars to icons
  335. ALTER TABLE {$db_prefix}membergroups
  336. CHANGE `stars` `icons` varchar(255) NOT NULL DEFAULT '';
  337. ---#
  338. ---# Renaming default theme...
  339. UPDATE {$db_prefix}themes
  340. SET value = 'SMF Default Theme - Curve2'
  341. WHERE value LIKE 'SMF Default Theme%';
  342. ---#
  343. ---# Adding the enableThemes setting.
  344. INSERT INTO {$db_prefix}settings
  345. (variable, value)
  346. VALUES
  347. ('enableThemes', '1');
  348. ---#
  349. ---# Setting "default" as the default...
  350. UPDATE {$db_prefix}settings
  351. SET value = '1'
  352. WHERE variable = 'theme_guests';
  353. UPDATE {$db_prefix}boards
  354. SET id_theme = 0;
  355. UPDATE {$db_prefix}members
  356. SET id_theme = 0;
  357. ---#
  358. /******************************************************************************/
  359. --- Cleaning up after old themes...
  360. /******************************************************************************/
  361. ---# Checking for "core" and removing it if necessary...
  362. ---{
  363. // Do they have "core" installed?
  364. if (file_exists($GLOBALS['boarddir'] . '/Themes/core'))
  365. {
  366. $core_dir = $GLOBALS['boarddir'] . '/Themes/core';
  367. $theme_request = upgrade_query("
  368. SELECT id_theme
  369. FROM {$db_prefix}themes
  370. WHERE variable = 'theme_dir'
  371. AND value ='$core_dir'");
  372. // Don't do anything if this theme is already uninstalled
  373. if ($smcFunc['db_num_rows']($theme_request) == 1)
  374. {
  375. // Only one row, so no loop needed
  376. $row = $smcFunc['db_fetch_array']($theme_request);
  377. $id_theme = $row[0];
  378. $smcFunc['db_free_result']($theme_request);
  379. $known_themes = explode(', ', $modSettings['knownThemes']);
  380. // Remove this value...
  381. $known_themes = array_diff($known_themes, array($id_theme));
  382. // Change back to a string...
  383. $known_themes = implode(', ', $known_themes);
  384. // Update the database
  385. upgrade_query("
  386. REPLACE INTO {$db_prefix}settings (variable, value)
  387. VALUES ('knownThemes', '$known_themes')");
  388. // Delete any info about this theme
  389. upgrade_query("
  390. DELETE FROM {$db_prefix}themes
  391. WHERE id_theme = $id_theme");
  392. }
  393. }
  394. ---}
  395. ---#
  396. /******************************************************************************/
  397. --- Adding support for drafts
  398. /******************************************************************************/
  399. ---# Creating draft table
  400. CREATE TABLE IF NOT EXISTS {$db_prefix}user_drafts (
  401. id_draft int(10) unsigned NOT NULL auto_increment,
  402. id_topic mediumint(8) unsigned NOT NULL default '0',
  403. id_board smallint(5) unsigned NOT NULL default '0',
  404. id_reply int(10) unsigned NOT NULL default '0',
  405. type tinyint(4) NOT NULL default '0',
  406. poster_time int(10) unsigned NOT NULL default '0',
  407. id_member mediumint(8) unsigned NOT NULL default '0',
  408. subject varchar(255) NOT NULL default '',
  409. smileys_enabled tinyint(4) NOT NULL default '1',
  410. body mediumtext NOT NULL,
  411. icon varchar(16) NOT NULL default 'xx',
  412. locked tinyint(4) NOT NULL default '0',
  413. is_sticky tinyint(4) NOT NULL default '0',
  414. to_list varchar(255) NOT NULL default '',
  415. PRIMARY KEY id_draft(id_draft),
  416. UNIQUE id_member (id_member, id_draft, type)
  417. ) ENGINE=MyISAM{$db_collation};
  418. ---#
  419. ---# Adding draft permissions...
  420. ---{
  421. // We cannot do this twice
  422. if (@$modSettings['smfVersion'] < '2.1')
  423. {
  424. // Anyone who can currently post unapproved topics we assume can create drafts as well ...
  425. $request = upgrade_query("
  426. SELECT id_group, id_board, add_deny, permission
  427. FROM {$db_prefix}board_permissions
  428. WHERE permission = 'post_unapproved_topics'");
  429. $inserts = array();
  430. while ($row = $smcFunc['db_fetch_assoc']($request))
  431. {
  432. $inserts[] = "($row[id_group], $row[id_board], 'post_draft', $row[add_deny])";
  433. $inserts[] = "($row[id_group], $row[id_board], 'post_autosave_draft', $row[add_deny])";
  434. }
  435. $smcFunc['db_free_result']($request);
  436. if (!empty($inserts))
  437. upgrade_query("
  438. INSERT IGNORE INTO {$db_prefix}board_permissions
  439. (id_group, id_board, permission, add_deny)
  440. VALUES
  441. " . implode(',', $inserts));
  442. // Next we find people who can send PMs, and assume they can save pm_drafts as well
  443. $request = upgrade_query("
  444. SELECT id_group, add_deny, permission
  445. FROM {$db_prefix}permissions
  446. WHERE permission = 'pm_send'");
  447. $inserts = array();
  448. while ($row = $smcFunc['db_fetch_assoc']($request))
  449. {
  450. $inserts[] = "($row[id_group], 'pm_draft', $row[add_deny])";
  451. $inserts[] = "($row[id_group], 'pm_autosave_draft', $row[add_deny])";
  452. }
  453. $smcFunc['db_free_result']($request);
  454. if (!empty($inserts))
  455. upgrade_query("
  456. INSERT IGNORE INTO {$db_prefix}permissions
  457. (id_group, permission, add_deny)
  458. VALUES
  459. " . implode(',', $inserts));
  460. }
  461. ---}
  462. INSERT INTO {$db_prefix}settings
  463. (variable, value)
  464. VALUES
  465. ('drafts_autosave_enabled', '1'),
  466. ('drafts_show_saved_enabled', '1'),
  467. ('drafts_keep_days', '7');
  468. INSERT INTO {$db_prefix}themes
  469. (id_theme, variable, value)
  470. VALUES
  471. ('1', 'drafts_autosave_enabled', '1'),
  472. ('1', 'drafts_show_saved_enabled', '1');
  473. ---#
  474. /******************************************************************************/
  475. --- Adding support for likes
  476. /******************************************************************************/
  477. ---# Creating likes table.
  478. CREATE TABLE IF NOT EXISTS {$db_prefix}user_likes (
  479. id_member mediumint(8) unsigned NOT NULL default '0',
  480. content_type char(6) default '',
  481. content_id int(10) unsigned NOT NULL default '0',
  482. like_time int(10) unsigned NOT NULL default '0',
  483. PRIMARY KEY (content_id, content_type, id_member),
  484. INDEX content (content_id, content_type),
  485. INDEX liker (id_member)
  486. ) ENGINE=MyISAM;
  487. ---#
  488. ---# Adding count to the messages table.
  489. ALTER TABLE {$db_prefix}messages
  490. ADD COLUMN likes smallint(5) unsigned NOT NULL DEFAULT '0';
  491. ---#
  492. /******************************************************************************/
  493. --- Adding support for group-based board moderation
  494. /******************************************************************************/
  495. ---# Creating moderator_groups table
  496. CREATE TABLE IF NOT EXISTS {$db_prefix}moderator_groups (
  497. id_board smallint(5) unsigned NOT NULL default '0',
  498. id_group smallint(5) unsigned NOT NULL default '0',
  499. PRIMARY KEY (id_board, id_group)
  500. ) ENGINE=MyISAM{$db_collation};
  501. ---#
  502. /******************************************************************************/
  503. --- Cleaning up integration hooks
  504. /******************************************************************************/
  505. ---# Deleting integration hooks
  506. DELETE FROM {$db_prefix}settings
  507. WHERE variable LIKE 'integrate_%';
  508. ---#
  509. /******************************************************************************/
  510. --- Cleaning up old settings
  511. /******************************************************************************/
  512. ---# Updating the default time format
  513. ---{
  514. if (!empty($modSettings['time_format']))
  515. {
  516. // First, use the shortened form of the month in the date.
  517. $time_format = str_replace('%B', '%b', $modSettings['time_format']);
  518. // Second, shorten the time to stop including seconds.
  519. $time_format = str_replace(':%S', '', $time_format);
  520. // Then, update the database.
  521. $smcFunc['db_query']('', '
  522. UPDATE {db_prefix}settings
  523. SET value = {string:new_format}
  524. WHERE variable = {literal:time_format}',
  525. array(
  526. 'new_format' => $time_format,
  527. )
  528. );
  529. }
  530. ---}
  531. ---#
  532. ---# Fixing a deprecated option.
  533. UPDATE {$db_prefix}settings
  534. SET value = 'option_css_resize'
  535. WHERE variable = 'avatar_action_too_large'
  536. AND (value = 'option_html_resize' OR value = 'option_js_resize');
  537. ---#
  538. ---# Cleaning up old settings.
  539. DELETE FROM {$db_prefix}settings
  540. WHERE variable IN ('enableStickyTopics', 'guest_hideContacts', 'notify_new_registration', 'attachmentEncryptFilenames', 'hotTopicPosts', 'hotTopicVeryPosts', 'fixLongWords');
  541. ---#
  542. ---# Cleaning up old theme settings.
  543. DELETE FROM {$db_prefix}themes
  544. WHERE variable IN ('show_board_desc', 'no_new_reply_warning', 'display_quick_reply');
  545. ---#
  546. /******************************************************************************/
  547. --- Removing old Simple Machines files we do not need to fetch any more
  548. /******************************************************************************/
  549. ---# We no longer call on the latest packages list.
  550. DELETE FROM {$db_prefix}admin_info_files
  551. WHERE filename IN ('latest-packages.js', 'latest-support.js', 'latest-themes.js')
  552. AND path = '/smf/';
  553. ---#
  554. /******************************************************************************/
  555. --- Upgrading "verification questions" feature
  556. /******************************************************************************/
  557. ---# Creating qanda table
  558. CREATE TABLE IF NOT EXISTS {$db_prefix}qanda (
  559. id_question smallint(5) unsigned NOT NULL auto_increment,
  560. lngfile varchar(255) NOT NULL default '',
  561. question varchar(255) NOT NULL default '',
  562. answers text NOT NULL,
  563. PRIMARY KEY (id_question),
  564. KEY lngfile (lngfile)
  565. ) ENGINE=MyISAM{$db_collation};
  566. ---#
  567. ---# Moving questions and answers to the new table
  568. ---{
  569. $questions = array();
  570. $get_questions = upgrade_query("
  571. SELECT body AS question, recipient_name AS answer
  572. FROM {$db_prefix}log_comments
  573. WHERE comment_type = 'ver_test'");
  574. while ($row = $smcFunc['db_fetch_assoc']($get_questions))
  575. $questions[] = array($language, $row['question'], serialize(array($row['answer'])));
  576. $smcFunc['db_free_result']($get_questions);
  577. if (!empty($questions))
  578. {
  579. $smcFunc['db_insert']('',
  580. '{db_prefix}qanda',
  581. array('lngfile' => 'string', 'question' => 'string', 'answers' => 'string'),
  582. $questions,
  583. array('id_question')
  584. );
  585. // Delete the questions from log_comments now
  586. upgrade_query("
  587. DELETE FROM {$db_prefix}log_comments
  588. WHERE comment_type = 'ver_test'
  589. ");
  590. }
  591. ---}
  592. ---#
  593. /******************************************************************************/
  594. --- Marking packages as uninstalled...
  595. /******************************************************************************/
  596. ---# Updating log_packages
  597. UPDATE {$db_prefix}log_packages
  598. SET install_state = 0;
  599. ---#
  600. /******************************************************************************/
  601. --- Updating profile permissions...
  602. /******************************************************************************/
  603. ---# Removing the old "view your own profile" permission
  604. DELETE FROM {$db_prefix}permissions
  605. WHERE permission = 'profile_view_own';
  606. ---#
  607. ---# Updating the old "view any profile" permission
  608. UPDATE {$db_prefix}permissions
  609. SET permission = 'profile_view'
  610. WHERE permission = 'profile_view_any';
  611. ---#
  612. ---# Removing the old notification permissions
  613. DELETE FROM {$db_prefix}board_permissions
  614. WHERE permission = 'mark_notify' OR permission = 'mark_any_notify';
  615. ---#
  616. ---# Adding "profile_password_own"
  617. ---{
  618. $inserts = array();
  619. $request = upgrade_query("
  620. SELECT id_group, add_deny
  621. FROM {$db_prefix}permissions
  622. WHERE permission = 'profile_identity_own'");
  623. while ($row = $smcFunc['db_fetch_assoc']($request))
  624. {
  625. $inserts[] = "($row[id_group], 'profile_password_own', $row[add_deny])";
  626. }
  627. $smcFunc['db_free_result']($request);
  628. if (!empty($inserts))
  629. {
  630. upgrade_query("
  631. INSERT INTO {$db_prefix}permissions
  632. (id_group, permission, add_deny)
  633. VALUES
  634. " . implode(',', $inserts)
  635. );
  636. }
  637. ---}
  638. ---#
  639. ---# Adding other profile permissions
  640. ---{
  641. $inserts = array();
  642. $request = upgrade_query("
  643. SELECT id_group, add_deny
  644. FROM {$db_prefix}permissions
  645. WHERE permission = 'profile_extra_own'");
  646. while ($row = $smcFunc['db_fetch_assoc']($request))
  647. {
  648. $inserts[] = "($row[id_group], 'profile_blurb_own', $row[add_deny])";
  649. $inserts[] = "($row[id_group], 'profile_displayed_name_own', $row[add_deny])";
  650. $inserts[] = "($row[id_group], 'profile_forum_own', $row[add_deny])";
  651. $inserts[] = "($row[id_group], 'profile_other_own', $row[add_deny])";
  652. $inserts[] = "($row[id_group], 'profile_signature_own', $row[add_deny])";
  653. }
  654. $smcFunc['db_free_result']($request);
  655. if (!empty($inserts))
  656. {
  657. upgrade_query("
  658. INSERT INTO {$db_prefix}permissions
  659. (id_group, permission, add_deny)
  660. VALUES
  661. " . implode(',', $inserts)
  662. );
  663. }
  664. ---}
  665. ---#
  666. /******************************************************************************/
  667. --- Upgrading PM labels...
  668. /******************************************************************************/
  669. ---# Adding pm_labels table...
  670. CREATE TABLE IF NOT EXISTS {$db_prefix}pm_labels (
  671. id_label int(10) unsigned NOT NULL auto_increment,
  672. id_member mediumint(8) unsigned NOT NULL default '0',
  673. name varchar(30) NOT NULL default '',
  674. PRIMARY KEY (id_label)
  675. ) ENGINE=MyISAM;
  676. ---#
  677. ---# Adding pm_labeled_messages table...
  678. CREATE TABLE IF NOT EXISTS {$db_prefix}pm_labeled_messages (
  679. id_label int(10) unsigned NOT NULL default '0',
  680. id_pm int(10) unsigned NOT NULL default '0',
  681. PRIMARY KEY (id_label, id_pm)
  682. ) ENGINE=MyISAM;
  683. ---#
  684. ---# Adding "in_inbox" column to pm_recipients
  685. ALTER TABLE {$db_prefix}pm_recipients
  686. ADD COLUMN in_inbox tinyint(3) NOT NULL default '1';
  687. ---#
  688. ---# Moving label info to new tables and updating rules...
  689. ---{
  690. // First see if we still have a message_labels column
  691. $results = $smcFunc['db_list_columns']('{db_prefix}members');
  692. if (in_array('message_labels', $results))
  693. {
  694. // They've still got it, so pull the label info
  695. $get_labels = $smcFunc['db_query']('', '
  696. SELECT id_member, message_labels
  697. FROM {db_prefix}members
  698. WHERE message_labels != {string:blank}',
  699. array(
  700. 'blank' => '',
  701. )
  702. );
  703. $inserts = array();
  704. $label_info = array();
  705. while ($row = $smcFunc['db_fetch_assoc']($get_labels))
  706. {
  707. // Stick this in an array
  708. $labels = explode(',', $row['message_labels']);
  709. // Build some inserts
  710. foreach ($labels AS $index => $label)
  711. {
  712. // Keep track of the index of this label - we'll need that in a bit...
  713. $label_info[$row['id_member']][$label] = $index;
  714. $inserts[] = array($row['id_member'], $label);
  715. }
  716. }
  717. $smcFunc['db_free_result']($get_labels);
  718. if (!empty($inserts))
  719. {
  720. $smcFunc['db_insert']('', '{db_prefix}pm_labels', array('id_member' => 'int', 'name' => 'string-30'), $inserts, array());
  721. // Clear this out for our next query below
  722. $inserts = array();
  723. }
  724. // This is the easy part - update the inbox stuff
  725. $smcFunc['db_query']('', '
  726. UPDATE {db_prefix}pm_recipients
  727. SET in_inbox = {int:in_inbox}
  728. WHERE FIND_IN_SET({int:minusone}, labels)',
  729. array(
  730. 'in_inbox' => 1,
  731. 'minusone' => -1,
  732. )
  733. );
  734. // Now we go pull the new IDs for each label
  735. $get_new_label_ids = $smcFunc['db_query']('', '
  736. SELECT *
  737. FROM {db_prefix}pm_labels',
  738. array(
  739. )
  740. );
  741. $label_info_2 = array();
  742. while ($label_row = $smcFunc['db_fetch_assoc']($get_new_label_ids))
  743. {
  744. // Map the old index values to the new ID values...
  745. $old_index = $label_info[$row['id_member']][$row['label_name']];
  746. $label_info_2[$row['id_member']][$old_index] = $row['id_label'];
  747. }
  748. $smcFunc['db_free_result']($get_new_label_ids);
  749. // Pull label info from pm_recipients
  750. // Ignore any that are only in the inbox
  751. $get_pm_labels = $smcFunc['db_query']('', '
  752. SELECT id_pm, id_member, labels
  753. FROM {db_prefix}pm_recipients
  754. WHERE deleted = {int:not_deleted}
  755. AND labels != {string:minus_one}',
  756. array(
  757. 'not_deleted' => 0,
  758. 'minus_one' => -1,
  759. )
  760. );
  761. while ($row = $smcFunc['db_fetch_assoc']($get_pm_labels))
  762. {
  763. $labels = explode(',', $row['labels']);
  764. foreach ($labels as $a_label)
  765. {
  766. if ($a_label == '-1')
  767. continue;
  768. $new_label_info = $label_info_2[$row['id_member']][$a_label];
  769. $inserts[] = array($row['id_pm'], $new_label_info);
  770. }
  771. }
  772. $smcFunc['db_free_result']($get_pm_labels);
  773. // Insert the new data
  774. if (!empty($inserts))
  775. {
  776. $smcFunc['db_insert']('', '{db_prefix}pm_labeled_messages', array('id_pm' => 'int', 'id_label' => 'int'), $inserts, array());
  777. }
  778. // Final step of this ridiculously massive process
  779. $get_pm_rules = $smcFunc['db_query']('', '
  780. SELECT id_member, id_rule, actions
  781. FROM {db_prefix}pm_rules',
  782. array(
  783. )
  784. );
  785. // Go through the rules, unserialize the actions, then figure out if there's anything we can use
  786. while ($row = $smcFunc['db_fetch_assoc']($get_pm_rules))
  787. {
  788. // Turn this into an array...
  789. $actions = unserialize($row['actions']);
  790. // Loop through the actions and see if we're applying a label anywhere
  791. foreach ($actions as $index => $action)
  792. {
  793. if ($action['t'] == 'lab')
  794. {
  795. // Update the value of this label...
  796. $actions[$index]['v'] = $label_info_2[$row['id_member']][$action['v']];
  797. }
  798. }
  799. // Put this back into a string
  800. $actions = serialize($actions);
  801. $smcFunc['db_query']('', '
  802. UPDATE {db_prefix}pm_rules
  803. SET actions = {string:actions}
  804. WHERE id_rule = {int:id_rule}',
  805. array(
  806. 'actions' => $actions,
  807. 'id_rule' => $row['id_rule'],
  808. )
  809. );
  810. }
  811. $smcFunc['db_free_result']($get_pm_rules);
  812. // Lastly, we drop the old columns
  813. $smcFunc['db_remove_column']('{db_prefix}members', 'message_labels');
  814. $smcFunc['db_remove_column']('{db_prefix}pm_recipients', 'labels');
  815. }
  816. ---}
  817. ---#
  818. /******************************************************************************/
  819. --- Adding support for edit reasons
  820. /******************************************************************************/
  821. ---# Adding "modified_reason" column to messages
  822. ALTER TABLE {$db_prefix}messages
  823. ADD COLUMN modified_reason varchar(255) NOT NULL;
  824. ---#
  825. /******************************************************************************/
  826. --- Cleaning up guest permissions
  827. /******************************************************************************/
  828. ---# Removing permissions guests can no longer have...
  829. ---{
  830. $illegal_board_permissions = array(
  831. 'announce_topic',
  832. 'delete_any',
  833. 'lock_any',
  834. 'make_sticky',
  835. 'merge_any',
  836. 'modify_any',
  837. 'modify_replies',
  838. 'move_any',
  839. 'poll_add_any',
  840. 'poll_edit_any',
  841. 'poll_lock_any',
  842. 'poll_remove_any',
  843. 'remove_any',
  844. 'report_any',
  845. 'split_any'
  846. );
  847. $illegal_permissions = array('calendar_edit_any', 'moderate_board', 'moderate_forum', 'send_email_to_members');
  848. $smcFunc['db_query']('', '
  849. DELETE FROM {db_prefix}board_permissions
  850. WHERE id_group = {int:guests}
  851. AND permission IN ({array_string:illegal_board_perms})',
  852. array(
  853. 'guests' => -1,
  854. 'illegal_board_perms' => $illegal_board_permissions,
  855. )
  856. );
  857. $smcFunc['db_query']('', '
  858. DELETE FROM {db_prefix}permissions
  859. WHERE id_group = {int:guests}
  860. AND permission IN ({array_string:illegal_perms})',
  861. array(
  862. 'guests' => -1,
  863. 'illegal_perms' => $illegal_permissions,
  864. )
  865. );
  866. ---}
  867. ---#
  868. /******************************************************************************/
  869. --- Adding mail queue settings
  870. /******************************************************************************/
  871. ---#
  872. ---{
  873. if (empty($modSettings['mail_limit']))
  874. {
  875. $smcFunc['db_insert']('replace',
  876. '{db_prefix}settings',
  877. array('variable' => 'string-255', 'value' => 'string'),
  878. array(
  879. array('mail_limit', '5'),
  880. array('mail_quantity', '5'),
  881. ),
  882. array('variable')
  883. );
  884. }
  885. ---}
  886. ---#