upgrade_2-1_mysql.sql 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196
  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, mime_type
  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. // While we're here, do we need to update the mime_type?
  143. if (empty($row['mime_type']) && file_exists($newFile))
  144. {
  145. $size = @getimagesize($newFile);
  146. if (!empty($size['mime']))
  147. $smcFunc['db_query']('', '
  148. UPDATE {db_prefix}attachments
  149. SET mime_type = {string:mime_type}
  150. WHERE id_attach = {int:id_attach}',
  151. array(
  152. 'id_attach' => $row['id_attach'],
  153. 'mime_type' => substr($size['mime'], 0, 20),
  154. )
  155. );
  156. }
  157. }
  158. $smcFunc['db_free_result']($request);
  159. $_GET['a'] += 100;
  160. $step_progress['current'] = $_GET['a'];
  161. }
  162. unset($_GET['a']);
  163. ---}
  164. ---#
  165. ---# Fixing invalid sizes on attachments
  166. ---{
  167. $attachs = array();
  168. // If id_member = 0, then it's not an avatar
  169. // If attachment_type = 0, then it's also not a thumbnail
  170. // Theory says there shouldn't be *that* many of these
  171. $request = $smcFunc['db_query']('', '
  172. SELECT id_attach, mime_type, width, height
  173. FROM {db_prefix}attachments
  174. WHERE id_member = 0
  175. AND attachment_type = 0');
  176. while ($row = $smcFunc['db_fetch_assoc']($request))
  177. {
  178. if (($row['width'] > 0 || $row['height'] > 0) && strpos($row['mime_type'], 'image') !== 0)
  179. $attachs[] = $row['id_attach'];
  180. }
  181. $smcFunc['db_free_result']($request);
  182. if (!empty($attachs))
  183. $smcFunc['db_query']('', '
  184. UPDATE {db_prefix}attachments
  185. SET width = 0,
  186. height = 0
  187. WHERE id_attach IN ({array_int:attachs})',
  188. array(
  189. 'attachs' => $attachs,
  190. )
  191. );
  192. ---}
  193. ---#
  194. /******************************************************************************/
  195. --- Adding support for IPv6...
  196. /******************************************************************************/
  197. ---# Adding new columns to ban items...
  198. ALTER TABLE {$db_prefix}ban_items
  199. ADD COLUMN ip_low5 smallint(255) unsigned NOT NULL DEFAULT '0',
  200. ADD COLUMN ip_high5 smallint(255) unsigned NOT NULL DEFAULT '0',
  201. ADD COLUMN ip_low6 smallint(255) unsigned NOT NULL DEFAULT '0',
  202. ADD COLUMN ip_high6 smallint(255) unsigned NOT NULL DEFAULT '0',
  203. ADD COLUMN ip_low7 smallint(255) unsigned NOT NULL DEFAULT '0',
  204. ADD COLUMN ip_high7 smallint(255) unsigned NOT NULL DEFAULT '0',
  205. ADD COLUMN ip_low8 smallint(255) unsigned NOT NULL DEFAULT '0',
  206. ADD COLUMN ip_high8 smallint(255) unsigned NOT NULL DEFAULT '0';
  207. ---#
  208. ---# Changing existing columns to ban items...
  209. ALTER TABLE {$db_prefix}ban_items
  210. CHANGE ip_low1 ip_low1 smallint(255) unsigned NOT NULL DEFAULT '0',
  211. CHANGE ip_high1 ip_high1 smallint(255) unsigned NOT NULL DEFAULT '0',
  212. CHANGE ip_low2 ip_low2 smallint(255) unsigned NOT NULL DEFAULT '0',
  213. CHANGE ip_high2 ip_high2 smallint(255) unsigned NOT NULL DEFAULT '0',
  214. CHANGE ip_low3 ip_low3 smallint(255) unsigned NOT NULL DEFAULT '0',
  215. CHANGE ip_high3 ip_high3 smallint(255) unsigned NOT NULL DEFAULT '0',
  216. CHANGE ip_low4 ip_low4 smallint(255) unsigned NOT NULL DEFAULT '0',
  217. CHANGE ip_high4 ip_high4 smallint(255) unsigned NOT NULL DEFAULT '0';
  218. ---#
  219. /******************************************************************************/
  220. --- Adding support for logging who fulfils a group request.
  221. /******************************************************************************/
  222. ---# Adding new columns to log_group_requests
  223. ALTER TABLE {$db_prefix}log_group_requests
  224. ADD COLUMN status tinyint(3) unsigned NOT NULL default '0',
  225. ADD COLUMN id_member_acted mediumint(8) unsigned NOT NULL default '0',
  226. ADD COLUMN member_name_acted varchar(255) NOT NULL default '',
  227. ADD COLUMN time_acted int(10) unsigned NOT NULL default '0',
  228. ADD COLUMN act_reason text NOT NULL;
  229. ---#
  230. ---# Adjusting the indexes for log_group_requests
  231. ALTER TABLE {$db_prefix}log_group_requests
  232. DROP INDEX `id_member`,
  233. ADD INDEX `id_member` (`id_member`, `id_group`);
  234. ---#
  235. /******************************************************************************/
  236. --- Adding support for <credits> tag in package manager
  237. /******************************************************************************/
  238. ---# Adding new columns to log_packages ..
  239. ALTER TABLE {$db_prefix}log_packages
  240. ADD COLUMN credits varchar(255) NOT NULL DEFAULT '';
  241. ---#
  242. /******************************************************************************/
  243. --- Adding more space for session ids
  244. /******************************************************************************/
  245. ---# Altering the session_id columns...
  246. ALTER TABLE {$db_prefix}log_online
  247. CHANGE `session` `session` varchar(64) NOT NULL DEFAULT '';
  248. ALTER TABLE {$db_prefix}log_errors
  249. CHANGE `session` `session` char(64) NOT NULL default ' ';
  250. ALTER TABLE {$db_prefix}sessions
  251. CHANGE `session_id` `session_id` char(64) NOT NULL;
  252. ---#
  253. /******************************************************************************/
  254. --- Adding support for MOVED topics enhancements
  255. /******************************************************************************/
  256. ---# Adding new columns to topics ..
  257. ALTER TABLE {$db_prefix}topics
  258. ADD COLUMN redirect_expires int(10) unsigned NOT NULL default '0',
  259. ADD COLUMN id_redirect_topic mediumint(8) unsigned NOT NULL default '0';
  260. ---#
  261. /******************************************************************************/
  262. --- Adding new scheduled tasks
  263. /******************************************************************************/
  264. ---# Adding new scheduled tasks
  265. INSERT INTO {$db_prefix}scheduled_tasks
  266. (next_time, time_offset, time_regularity, time_unit, disabled, task)
  267. VALUES
  268. (0, 120, 1, 'd', 0, 'remove_temp_attachments');
  269. INSERT INTO {$db_prefix}scheduled_tasks
  270. (next_time, time_offset, time_regularity, time_unit, disabled, task)
  271. VALUES
  272. (0, 180, 1, 'd', 0, 'remove_topic_redirect');
  273. INSERT INTO {$db_prefix}scheduled_tasks
  274. (next_time, time_offset, time_regularity, time_unit, disabled, task)
  275. VALUES
  276. (0, 240, 1, 'd', 0, 'remove_old_drafts');
  277. ---#
  278. /******************************************************************************/
  279. ---- Adding background tasks support
  280. /******************************************************************************/
  281. ---# Adding the new table
  282. CREATE TABLE IF NOT EXISTS {$db_prefix}background_tasks (
  283. id_task int(10) unsigned NOT NULL auto_increment,
  284. task_file varchar(255) NOT NULL default '',
  285. task_class varchar(255) NOT NULL default '',
  286. task_data mediumtext NOT NULL,
  287. claimed_time int(10) unsigned NOT NULL default '0',
  288. PRIMARY KEY (id_task)
  289. ) ENGINE=MyISAM;
  290. ---#
  291. /******************************************************************************/
  292. ---- Replacing MSN with Skype
  293. /******************************************************************************/
  294. ---# Modifying the "msn" column...
  295. ALTER TABLE {$db_prefix}members
  296. CHANGE msn skype varchar(255) NOT NULL DEFAULT '';
  297. ---#
  298. /******************************************************************************/
  299. --- Adding support for deny boards access
  300. /******************************************************************************/
  301. ---# Adding new columns to boards...
  302. ALTER TABLE {$db_prefix}boards
  303. ADD COLUMN deny_member_groups varchar(255) NOT NULL DEFAULT '';
  304. ---#
  305. /******************************************************************************/
  306. --- Updating board access rules
  307. /******************************************************************************/
  308. ---# Updating board access rules
  309. ---{
  310. $member_groups = array(
  311. 'allowed' => array(),
  312. 'denied' => array(),
  313. );
  314. $request = $smcFunc['db_query']('', '
  315. SELECT id_group, add_deny
  316. FROM {db_prefix}permissions
  317. WHERE permission = {string:permission}',
  318. array(
  319. 'permission' => 'manage_boards',
  320. )
  321. );
  322. while ($row = $smcFunc['db_fetch_assoc']($request))
  323. $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group'];
  324. $smcFunc['db_free_result']($request);
  325. $member_groups = array_diff($member_groups['allowed'], $member_groups['denied']);
  326. if (!empty($member_groups))
  327. {
  328. $count = count($member_groups);
  329. $changes = array();
  330. $request = $smcFunc['db_query']('', '
  331. SELECT id_board, member_groups
  332. FROM {db_prefix}boards');
  333. while ($row = $smcFunc['db_fetch_assoc']($request))
  334. {
  335. $current_groups = explode(',', $row['member_groups']);
  336. if (count(array_intersect($current_groups, $member_groups)) != $count)
  337. {
  338. $new_groups = array_unique(array_merge($current_groups, $member_groups));
  339. $changes[$row['id_board']] = implode(',', $new_groups);
  340. }
  341. }
  342. $smcFunc['db_free_result']($request);
  343. if (!empty($changes))
  344. {
  345. foreach ($changes as $id_board => $member_groups)
  346. $smcFunc['db_query']('', '
  347. UPDATE {db_prefix}boards
  348. SET member_groups = {string:member_groups}
  349. WHERE id_board = {int:id_board}',
  350. array(
  351. 'member_groups' => $member_groups,
  352. 'id_board' => $id_board,
  353. )
  354. );
  355. }
  356. }
  357. ---}
  358. ---#
  359. /******************************************************************************/
  360. --- Adding support for category descriptions
  361. /******************************************************************************/
  362. ---# Adding new columns to categories...
  363. ALTER TABLE {$db_prefix}categories
  364. ADD COLUMN description text NOT NULL;
  365. ---#
  366. /******************************************************************************/
  367. --- Adding support for alerts
  368. /******************************************************************************/
  369. ---# Adding the count to the members table...
  370. ALTER TABLE {$db_prefix}members
  371. ADD COLUMN alerts int(10) unsigned NOT NULL default '0';
  372. ---#
  373. ---# Adding the new table for alerts.
  374. CREATE TABLE IF NOT EXISTS {$db_prefix}user_alerts (
  375. id_alert int(10) unsigned NOT NULL auto_increment,
  376. alert_time int(10) unsigned NOT NULL default '0',
  377. id_member mediumint(10) unsigned NOT NULL default '0',
  378. id_member_started mediumint(10) unsigned NOT NULL default '0',
  379. member_name varchar(255) NOT NULL default '',
  380. content_type varchar(255) NOT NULL default '',
  381. content_id int(10) unsigned NOT NULL default '0',
  382. content_action varchar(255) NOT NULL default '',
  383. is_read int(10) unsigned NOT NULL default '0',
  384. extra text NOT NULL,
  385. PRIMARY KEY (id_alert),
  386. KEY id_member (id_member),
  387. KEY alert_time (alert_time)
  388. ) ENGINE=MyISAM;
  389. ---#
  390. ---# Adding alert preferences.
  391. CREATE TABLE IF NOT EXISTS {$db_prefix}user_alerts_prefs (
  392. id_member mediumint(8) unsigned NOT NULL default '0',
  393. alert_pref varchar(32) NOT NULL default '',
  394. alert_value tinyint(3) NOT NULL default '0',
  395. PRIMARY KEY (id_member, alert_pref)
  396. ) ENGINE=MyISAM;
  397. INSERT INTO {$db_prefix}user_alerts_prefs
  398. (id_member, alert_pref, alert_value)
  399. VALUES (0, 'member_group_request', 1),
  400. (0, 'member_register', 1),
  401. (0, 'msg_like', 1),
  402. (0, 'msg_report', 1),
  403. (0, 'msg_report_reply', 1);
  404. ---#
  405. /******************************************************************************/
  406. --- Adding support for topic unwatch
  407. /******************************************************************************/
  408. ---# Adding new columns to boards...
  409. ALTER TABLE {$db_prefix}log_topics
  410. ADD COLUMN unwatched tinyint(3) NOT NULL DEFAULT '0';
  411. UPDATE {$db_prefix}log_topics
  412. SET unwatched = 0;
  413. INSERT INTO {$db_prefix}settings
  414. (variable, value)
  415. VALUES
  416. ('enable_unwatch', 0);
  417. ---#
  418. ---# Fixing column name change...
  419. ALTER TABLE {$db_prefix}log_topics
  420. CHANGE COLUMN disregarded unwatched tinyint(3) NOT NULL DEFAULT '0';
  421. ---#
  422. /******************************************************************************/
  423. --- Fixing mail queue for long messages
  424. /******************************************************************************/
  425. ---# Altering mil_queue table...
  426. ALTER TABLE {$db_prefix}mail_queue
  427. CHANGE body body mediumtext NOT NULL;
  428. ---#
  429. /******************************************************************************/
  430. --- Name changes
  431. /******************************************************************************/
  432. ---# Altering the membergroup stars to icons
  433. ALTER TABLE {$db_prefix}membergroups
  434. CHANGE `stars` `icons` varchar(255) NOT NULL DEFAULT '';
  435. ---#
  436. ---# Renaming default theme...
  437. UPDATE {$db_prefix}themes
  438. SET value = 'SMF Default Theme - Curve2'
  439. WHERE value LIKE 'SMF Default Theme%';
  440. ---#
  441. ---# Adding the enableThemes setting.
  442. INSERT INTO {$db_prefix}settings
  443. (variable, value)
  444. VALUES
  445. ('enableThemes', '1');
  446. ---#
  447. ---# Setting "default" as the default...
  448. UPDATE {$db_prefix}settings
  449. SET value = '1'
  450. WHERE variable = 'theme_guests';
  451. UPDATE {$db_prefix}boards
  452. SET id_theme = 0;
  453. UPDATE {$db_prefix}members
  454. SET id_theme = 0;
  455. ---#
  456. /******************************************************************************/
  457. --- Cleaning up after old themes...
  458. /******************************************************************************/
  459. ---# Checking for "core" and removing it if necessary...
  460. ---{
  461. // Do they have "core" installed?
  462. if (file_exists($GLOBALS['boarddir'] . '/Themes/core'))
  463. {
  464. $core_dir = $GLOBALS['boarddir'] . '/Themes/core';
  465. $theme_request = upgrade_query("
  466. SELECT id_theme
  467. FROM {$db_prefix}themes
  468. WHERE variable = 'theme_dir'
  469. AND value ='$core_dir'");
  470. // Don't do anything if this theme is already uninstalled
  471. if ($smcFunc['db_num_rows']($theme_request) == 1)
  472. {
  473. // Only one row, so no loop needed
  474. $row = $smcFunc['db_fetch_array']($theme_request);
  475. $id_theme = $row[0];
  476. $smcFunc['db_free_result']($theme_request);
  477. $known_themes = explode(', ', $modSettings['knownThemes']);
  478. // Remove this value...
  479. $known_themes = array_diff($known_themes, array($id_theme));
  480. // Change back to a string...
  481. $known_themes = implode(', ', $known_themes);
  482. // Update the database
  483. upgrade_query("
  484. REPLACE INTO {$db_prefix}settings (variable, value)
  485. VALUES ('knownThemes', '$known_themes')");
  486. // Delete any info about this theme
  487. upgrade_query("
  488. DELETE FROM {$db_prefix}themes
  489. WHERE id_theme = $id_theme");
  490. }
  491. }
  492. ---}
  493. ---#
  494. /******************************************************************************/
  495. --- Adding support for drafts
  496. /******************************************************************************/
  497. ---# Creating draft table
  498. CREATE TABLE IF NOT EXISTS {$db_prefix}user_drafts (
  499. id_draft int(10) unsigned NOT NULL auto_increment,
  500. id_topic mediumint(8) unsigned NOT NULL default '0',
  501. id_board smallint(5) unsigned NOT NULL default '0',
  502. id_reply int(10) unsigned NOT NULL default '0',
  503. type tinyint(4) NOT NULL default '0',
  504. poster_time int(10) unsigned NOT NULL default '0',
  505. id_member mediumint(8) unsigned NOT NULL default '0',
  506. subject varchar(255) NOT NULL default '',
  507. smileys_enabled tinyint(4) NOT NULL default '1',
  508. body mediumtext NOT NULL,
  509. icon varchar(16) NOT NULL default 'xx',
  510. locked tinyint(4) NOT NULL default '0',
  511. is_sticky tinyint(4) NOT NULL default '0',
  512. to_list varchar(255) NOT NULL default '',
  513. PRIMARY KEY id_draft(id_draft),
  514. UNIQUE id_member (id_member, id_draft, type)
  515. ) ENGINE=MyISAM{$db_collation};
  516. ---#
  517. ---# Adding draft permissions...
  518. ---{
  519. // We cannot do this twice
  520. if (@$modSettings['smfVersion'] < '2.1')
  521. {
  522. // Anyone who can currently post unapproved topics we assume can create drafts as well ...
  523. $request = upgrade_query("
  524. SELECT id_group, id_board, add_deny, permission
  525. FROM {$db_prefix}board_permissions
  526. WHERE permission = 'post_unapproved_topics'");
  527. $inserts = array();
  528. while ($row = $smcFunc['db_fetch_assoc']($request))
  529. {
  530. $inserts[] = "($row[id_group], $row[id_board], 'post_draft', $row[add_deny])";
  531. $inserts[] = "($row[id_group], $row[id_board], 'post_autosave_draft', $row[add_deny])";
  532. }
  533. $smcFunc['db_free_result']($request);
  534. if (!empty($inserts))
  535. upgrade_query("
  536. INSERT IGNORE INTO {$db_prefix}board_permissions
  537. (id_group, id_board, permission, add_deny)
  538. VALUES
  539. " . implode(',', $inserts));
  540. // Next we find people who can send PMs, and assume they can save pm_drafts as well
  541. $request = upgrade_query("
  542. SELECT id_group, add_deny, permission
  543. FROM {$db_prefix}permissions
  544. WHERE permission = 'pm_send'");
  545. $inserts = array();
  546. while ($row = $smcFunc['db_fetch_assoc']($request))
  547. {
  548. $inserts[] = "($row[id_group], 'pm_draft', $row[add_deny])";
  549. $inserts[] = "($row[id_group], 'pm_autosave_draft', $row[add_deny])";
  550. }
  551. $smcFunc['db_free_result']($request);
  552. if (!empty($inserts))
  553. upgrade_query("
  554. INSERT IGNORE INTO {$db_prefix}permissions
  555. (id_group, permission, add_deny)
  556. VALUES
  557. " . implode(',', $inserts));
  558. }
  559. ---}
  560. INSERT INTO {$db_prefix}settings
  561. (variable, value)
  562. VALUES
  563. ('drafts_autosave_enabled', '1'),
  564. ('drafts_show_saved_enabled', '1'),
  565. ('drafts_keep_days', '7');
  566. INSERT INTO {$db_prefix}themes
  567. (id_theme, variable, value)
  568. VALUES
  569. ('1', 'drafts_autosave_enabled', '1'),
  570. ('1', 'drafts_show_saved_enabled', '1');
  571. ---#
  572. /******************************************************************************/
  573. --- Adding support for likes
  574. /******************************************************************************/
  575. ---# Creating likes table.
  576. CREATE TABLE IF NOT EXISTS {$db_prefix}user_likes (
  577. id_member mediumint(8) unsigned NOT NULL default '0',
  578. content_type char(6) default '',
  579. content_id int(10) unsigned NOT NULL default '0',
  580. like_time int(10) unsigned NOT NULL default '0',
  581. PRIMARY KEY (content_id, content_type, id_member),
  582. INDEX content (content_id, content_type),
  583. INDEX liker (id_member)
  584. ) ENGINE=MyISAM;
  585. ---#
  586. ---# Adding count to the messages table.
  587. ALTER TABLE {$db_prefix}messages
  588. ADD COLUMN likes smallint(5) unsigned NOT NULL DEFAULT '0';
  589. ---#
  590. /******************************************************************************/
  591. --- Adding support for group-based board moderation
  592. /******************************************************************************/
  593. ---# Creating moderator_groups table
  594. CREATE TABLE IF NOT EXISTS {$db_prefix}moderator_groups (
  595. id_board smallint(5) unsigned NOT NULL default '0',
  596. id_group smallint(5) unsigned NOT NULL default '0',
  597. PRIMARY KEY (id_board, id_group)
  598. ) ENGINE=MyISAM{$db_collation};
  599. ---#
  600. /******************************************************************************/
  601. --- Cleaning up integration hooks
  602. /******************************************************************************/
  603. ---# Deleting integration hooks
  604. DELETE FROM {$db_prefix}settings
  605. WHERE variable LIKE 'integrate_%';
  606. ---#
  607. /******************************************************************************/
  608. --- Cleaning up old settings
  609. /******************************************************************************/
  610. ---# Updating the default time format
  611. ---{
  612. if (!empty($modSettings['time_format']))
  613. {
  614. // First, use the shortened form of the month in the date.
  615. $time_format = str_replace('%B', '%b', $modSettings['time_format']);
  616. // Second, shorten the time to stop including seconds.
  617. $time_format = str_replace(':%S', '', $time_format);
  618. // Then, update the database.
  619. $smcFunc['db_query']('', '
  620. UPDATE {db_prefix}settings
  621. SET value = {string:new_format}
  622. WHERE variable = {literal:time_format}',
  623. array(
  624. 'new_format' => $time_format,
  625. )
  626. );
  627. }
  628. ---}
  629. ---#
  630. ---# Fixing a deprecated option.
  631. UPDATE {$db_prefix}settings
  632. SET value = 'option_css_resize'
  633. WHERE variable = 'avatar_action_too_large'
  634. AND (value = 'option_html_resize' OR value = 'option_js_resize');
  635. ---#
  636. ---# Cleaning up the old Core Features page.
  637. ---{
  638. // First get the original value
  639. $request = $smcFunc['db_query']('', '
  640. SELECT value
  641. FROM {db_prefix}settings
  642. WHERE variable = {literal:admin_features}');
  643. if ($smcFunc['db_num_rows']($request) > 0 && $row = $smcFunc['db_fetch_assoc']($request))
  644. {
  645. // Some of these *should* already be set but you never know.
  646. $new_settings = array();
  647. $admin_features = explode(',', $row['value']);
  648. // Now, let's just recap something.
  649. // cd = calendar, should also have set cal_enabled already
  650. // cp = custom profile fields, which already has several fields that cover tracking
  651. // k = karma, should also have set karmaMode already
  652. // ps = paid subs, should also have set paid_enabled already
  653. // rg = reports generation, which is now permanently on
  654. // sp = spider tracking, should also have set spider_mode already
  655. // w = warning system, which will be covered with warning_settings
  656. // The rest we have to deal with manually.
  657. // Moderation log - modlog_enabled itself should be set but we have others now
  658. if (in_array('ml', $admin_features))
  659. {
  660. $new_settings[] = array('adminlog_enabled', '1');
  661. $new_settings[] = array('userlog_enabled', '1');
  662. }
  663. // Post moderation
  664. if (in_array('pm', $admin_features))
  665. {
  666. $new_settings[] = array('postmod_active', '1');
  667. }
  668. // And now actually apply it.
  669. if (!empty($new_settings))
  670. {
  671. $smcFunc['db_insert']('replace',
  672. '{db_prefix}settings',
  673. array('variable' => 'string', 'value' => 'string'),
  674. $new_settings,
  675. array('variable')
  676. );
  677. }
  678. }
  679. $smcFunc['db_free_result']($request);
  680. ---}
  681. ---#
  682. ---# Cleaning up old settings.
  683. DELETE FROM {$db_prefix}settings
  684. WHERE variable IN ('enableStickyTopics', 'guest_hideContacts', 'notify_new_registration', 'attachmentEncryptFilenames', 'hotTopicPosts', 'hotTopicVeryPosts', 'fixLongWords', 'admin_features', 'topbottomEnable', 'simpleSearch');
  685. ---#
  686. ---# Cleaning up old theme settings.
  687. DELETE FROM {$db_prefix}themes
  688. WHERE variable IN ('show_board_desc', 'no_new_reply_warning', 'display_quick_reply', 'show_mark_read', 'show_member_bar', 'linktree_link');
  689. ---#
  690. /******************************************************************************/
  691. --- Updating files that fetched from simplemachines.org
  692. /******************************************************************************/
  693. ---# We no longer call on several files.
  694. DELETE FROM {$db_prefix}admin_info_files
  695. WHERE filename IN ('latest-packages.js', 'latest-support.js', 'latest-themes.js')
  696. AND path = '/smf/';
  697. ---#
  698. ---# But we do need new files.
  699. ---{
  700. $smcFunc['db_insert']('',
  701. '{db_prefix}admin_info_files',
  702. array('filename' => 'string', 'path' => 'string', 'parameters' => 'string', 'data' => 'string', 'filetype' => 'string'),
  703. array('latest-versions.txt', '/smf/', 'version=%3$s', '', 'text/plain'),
  704. array('id_file')
  705. );
  706. ---}
  707. ---#
  708. /******************************************************************************/
  709. --- Upgrading "verification questions" feature
  710. /******************************************************************************/
  711. ---# Creating qanda table
  712. CREATE TABLE IF NOT EXISTS {$db_prefix}qanda (
  713. id_question smallint(5) unsigned NOT NULL auto_increment,
  714. lngfile varchar(255) NOT NULL default '',
  715. question varchar(255) NOT NULL default '',
  716. answers text NOT NULL,
  717. PRIMARY KEY (id_question),
  718. KEY lngfile (lngfile)
  719. ) ENGINE=MyISAM{$db_collation};
  720. ---#
  721. ---# Moving questions and answers to the new table
  722. ---{
  723. $questions = array();
  724. $get_questions = upgrade_query("
  725. SELECT body AS question, recipient_name AS answer
  726. FROM {$db_prefix}log_comments
  727. WHERE comment_type = 'ver_test'");
  728. while ($row = $smcFunc['db_fetch_assoc']($get_questions))
  729. $questions[] = array($language, $row['question'], serialize(array($row['answer'])));
  730. $smcFunc['db_free_result']($get_questions);
  731. if (!empty($questions))
  732. {
  733. $smcFunc['db_insert']('',
  734. '{db_prefix}qanda',
  735. array('lngfile' => 'string', 'question' => 'string', 'answers' => 'string'),
  736. $questions,
  737. array('id_question')
  738. );
  739. // Delete the questions from log_comments now
  740. upgrade_query("
  741. DELETE FROM {$db_prefix}log_comments
  742. WHERE comment_type = 'ver_test'
  743. ");
  744. }
  745. ---}
  746. ---#
  747. /******************************************************************************/
  748. --- Marking packages as uninstalled...
  749. /******************************************************************************/
  750. ---# Updating log_packages
  751. UPDATE {$db_prefix}log_packages
  752. SET install_state = 0;
  753. ---#
  754. /******************************************************************************/
  755. --- Updating profile permissions...
  756. /******************************************************************************/
  757. ---# Removing the old "view your own profile" permission
  758. DELETE FROM {$db_prefix}permissions
  759. WHERE permission = 'profile_view_own';
  760. ---#
  761. ---# Updating the old "view any profile" permission
  762. UPDATE {$db_prefix}permissions
  763. SET permission = 'profile_view'
  764. WHERE permission = 'profile_view_any';
  765. ---#
  766. ---# Removing the old notification permissions
  767. DELETE FROM {$db_prefix}board_permissions
  768. WHERE permission = 'mark_notify' OR permission = 'mark_any_notify';
  769. ---#
  770. ---# Removing the send-topic permission
  771. DELETE FROM {$db_prefix}board_permissions
  772. WHERE permission = 'send_topic';
  773. ---#
  774. ---# Adding "profile_password_own"
  775. ---{
  776. $inserts = array();
  777. $request = upgrade_query("
  778. SELECT id_group, add_deny
  779. FROM {$db_prefix}permissions
  780. WHERE permission = 'profile_identity_own'");
  781. while ($row = $smcFunc['db_fetch_assoc']($request))
  782. {
  783. $inserts[] = "($row[id_group], 'profile_password_own', $row[add_deny])";
  784. }
  785. $smcFunc['db_free_result']($request);
  786. if (!empty($inserts))
  787. {
  788. upgrade_query("
  789. INSERT INTO {$db_prefix}permissions
  790. (id_group, permission, add_deny)
  791. VALUES
  792. " . implode(',', $inserts)
  793. );
  794. }
  795. ---}
  796. ---#
  797. ---# Adding other profile permissions
  798. ---{
  799. $inserts = array();
  800. $request = upgrade_query("
  801. SELECT id_group, add_deny
  802. FROM {$db_prefix}permissions
  803. WHERE permission = 'profile_extra_own'");
  804. while ($row = $smcFunc['db_fetch_assoc']($request))
  805. {
  806. $inserts[] = "($row[id_group], 'profile_blurb_own', $row[add_deny])";
  807. $inserts[] = "($row[id_group], 'profile_displayed_name_own', $row[add_deny])";
  808. $inserts[] = "($row[id_group], 'profile_forum_own', $row[add_deny])";
  809. $inserts[] = "($row[id_group], 'profile_other_own', $row[add_deny])";
  810. $inserts[] = "($row[id_group], 'profile_signature_own', $row[add_deny])";
  811. }
  812. $smcFunc['db_free_result']($request);
  813. if (!empty($inserts))
  814. {
  815. upgrade_query("
  816. INSERT INTO {$db_prefix}permissions
  817. (id_group, permission, add_deny)
  818. VALUES
  819. " . implode(',', $inserts)
  820. );
  821. }
  822. ---}
  823. ---#
  824. /******************************************************************************/
  825. --- Upgrading PM labels...
  826. /******************************************************************************/
  827. ---# Adding pm_labels table...
  828. CREATE TABLE IF NOT EXISTS {$db_prefix}pm_labels (
  829. id_label int(10) unsigned NOT NULL auto_increment,
  830. id_member mediumint(8) unsigned NOT NULL default '0',
  831. name varchar(30) NOT NULL default '',
  832. PRIMARY KEY (id_label)
  833. ) ENGINE=MyISAM;
  834. ---#
  835. ---# Adding pm_labeled_messages table...
  836. CREATE TABLE IF NOT EXISTS {$db_prefix}pm_labeled_messages (
  837. id_label int(10) unsigned NOT NULL default '0',
  838. id_pm int(10) unsigned NOT NULL default '0',
  839. PRIMARY KEY (id_label, id_pm)
  840. ) ENGINE=MyISAM;
  841. ---#
  842. ---# Adding "in_inbox" column to pm_recipients
  843. ALTER TABLE {$db_prefix}pm_recipients
  844. ADD COLUMN in_inbox tinyint(3) NOT NULL default '1';
  845. ---#
  846. ---# Moving label info to new tables and updating rules...
  847. ---{
  848. // First see if we still have a message_labels column
  849. $results = $smcFunc['db_list_columns']('{db_prefix}members');
  850. if (in_array('message_labels', $results))
  851. {
  852. // They've still got it, so pull the label info
  853. $get_labels = $smcFunc['db_query']('', '
  854. SELECT id_member, message_labels
  855. FROM {db_prefix}members
  856. WHERE message_labels != {string:blank}',
  857. array(
  858. 'blank' => '',
  859. )
  860. );
  861. $inserts = array();
  862. $label_info = array();
  863. while ($row = $smcFunc['db_fetch_assoc']($get_labels))
  864. {
  865. // Stick this in an array
  866. $labels = explode(',', $row['message_labels']);
  867. // Build some inserts
  868. foreach ($labels AS $index => $label)
  869. {
  870. // Keep track of the index of this label - we'll need that in a bit...
  871. $label_info[$row['id_member']][$label] = $index;
  872. $inserts[] = array($row['id_member'], $label);
  873. }
  874. }
  875. $smcFunc['db_free_result']($get_labels);
  876. if (!empty($inserts))
  877. {
  878. $smcFunc['db_insert']('', '{db_prefix}pm_labels', array('id_member' => 'int', 'name' => 'string-30'), $inserts, array());
  879. // Clear this out for our next query below
  880. $inserts = array();
  881. }
  882. // This is the easy part - update the inbox stuff
  883. $smcFunc['db_query']('', '
  884. UPDATE {db_prefix}pm_recipients
  885. SET in_inbox = {int:in_inbox}
  886. WHERE FIND_IN_SET({int:minusone}, labels)',
  887. array(
  888. 'in_inbox' => 1,
  889. 'minusone' => -1,
  890. )
  891. );
  892. // Now we go pull the new IDs for each label
  893. $get_new_label_ids = $smcFunc['db_query']('', '
  894. SELECT *
  895. FROM {db_prefix}pm_labels',
  896. array(
  897. )
  898. );
  899. $label_info_2 = array();
  900. while ($label_row = $smcFunc['db_fetch_assoc']($get_new_label_ids))
  901. {
  902. // Map the old index values to the new ID values...
  903. $old_index = $label_info[$row['id_member']][$row['label_name']];
  904. $label_info_2[$row['id_member']][$old_index] = $row['id_label'];
  905. }
  906. $smcFunc['db_free_result']($get_new_label_ids);
  907. // Pull label info from pm_recipients
  908. // Ignore any that are only in the inbox
  909. $get_pm_labels = $smcFunc['db_query']('', '
  910. SELECT id_pm, id_member, labels
  911. FROM {db_prefix}pm_recipients
  912. WHERE deleted = {int:not_deleted}
  913. AND labels != {string:minus_one}',
  914. array(
  915. 'not_deleted' => 0,
  916. 'minus_one' => -1,
  917. )
  918. );
  919. while ($row = $smcFunc['db_fetch_assoc']($get_pm_labels))
  920. {
  921. $labels = explode(',', $row['labels']);
  922. foreach ($labels as $a_label)
  923. {
  924. if ($a_label == '-1')
  925. continue;
  926. $new_label_info = $label_info_2[$row['id_member']][$a_label];
  927. $inserts[] = array($row['id_pm'], $new_label_info);
  928. }
  929. }
  930. $smcFunc['db_free_result']($get_pm_labels);
  931. // Insert the new data
  932. if (!empty($inserts))
  933. {
  934. $smcFunc['db_insert']('', '{db_prefix}pm_labeled_messages', array('id_pm' => 'int', 'id_label' => 'int'), $inserts, array());
  935. }
  936. // Final step of this ridiculously massive process
  937. $get_pm_rules = $smcFunc['db_query']('', '
  938. SELECT id_member, id_rule, actions
  939. FROM {db_prefix}pm_rules',
  940. array(
  941. )
  942. );
  943. // Go through the rules, unserialize the actions, then figure out if there's anything we can use
  944. while ($row = $smcFunc['db_fetch_assoc']($get_pm_rules))
  945. {
  946. // Turn this into an array...
  947. $actions = unserialize($row['actions']);
  948. // Loop through the actions and see if we're applying a label anywhere
  949. foreach ($actions as $index => $action)
  950. {
  951. if ($action['t'] == 'lab')
  952. {
  953. // Update the value of this label...
  954. $actions[$index]['v'] = $label_info_2[$row['id_member']][$action['v']];
  955. }
  956. }
  957. // Put this back into a string
  958. $actions = serialize($actions);
  959. $smcFunc['db_query']('', '
  960. UPDATE {db_prefix}pm_rules
  961. SET actions = {string:actions}
  962. WHERE id_rule = {int:id_rule}',
  963. array(
  964. 'actions' => $actions,
  965. 'id_rule' => $row['id_rule'],
  966. )
  967. );
  968. }
  969. $smcFunc['db_free_result']($get_pm_rules);
  970. // Lastly, we drop the old columns
  971. $smcFunc['db_remove_column']('{db_prefix}members', 'message_labels');
  972. $smcFunc['db_remove_column']('{db_prefix}pm_recipients', 'labels');
  973. }
  974. ---}
  975. ---#
  976. /******************************************************************************/
  977. --- Adding support for edit reasons
  978. /******************************************************************************/
  979. ---# Adding "modified_reason" column to messages
  980. ALTER TABLE {$db_prefix}messages
  981. ADD COLUMN modified_reason varchar(255) NOT NULL default '';
  982. ---#
  983. /******************************************************************************/
  984. --- Cleaning up guest permissions
  985. /******************************************************************************/
  986. ---# Removing permissions guests can no longer have...
  987. ---{
  988. $illegal_board_permissions = array(
  989. 'announce_topic',
  990. 'delete_any',
  991. 'lock_any',
  992. 'make_sticky',
  993. 'merge_any',
  994. 'modify_any',
  995. 'modify_replies',
  996. 'move_any',
  997. 'poll_add_any',
  998. 'poll_edit_any',
  999. 'poll_lock_any',
  1000. 'poll_remove_any',
  1001. 'remove_any',
  1002. 'report_any',
  1003. 'split_any'
  1004. );
  1005. $illegal_permissions = array('calendar_edit_any', 'moderate_board', 'moderate_forum', 'send_email_to_members');
  1006. $smcFunc['db_query']('', '
  1007. DELETE FROM {db_prefix}board_permissions
  1008. WHERE id_group = {int:guests}
  1009. AND permission IN ({array_string:illegal_board_perms})',
  1010. array(
  1011. 'guests' => -1,
  1012. 'illegal_board_perms' => $illegal_board_permissions,
  1013. )
  1014. );
  1015. $smcFunc['db_query']('', '
  1016. DELETE FROM {db_prefix}permissions
  1017. WHERE id_group = {int:guests}
  1018. AND permission IN ({array_string:illegal_perms})',
  1019. array(
  1020. 'guests' => -1,
  1021. 'illegal_perms' => $illegal_permissions,
  1022. )
  1023. );
  1024. ---}
  1025. ---#
  1026. /******************************************************************************/
  1027. --- Adding mail queue settings
  1028. /******************************************************************************/
  1029. ---#
  1030. ---{
  1031. if (empty($modSettings['mail_limit']))
  1032. {
  1033. $smcFunc['db_insert']('replace',
  1034. '{db_prefix}settings',
  1035. array('variable' => 'string-255', 'value' => 'string'),
  1036. array(
  1037. array('mail_limit', '5'),
  1038. array('mail_quantity', '5'),
  1039. ),
  1040. array('variable')
  1041. );
  1042. }
  1043. ---}
  1044. ---#