Subs-Post.php 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249
  1. <?php
  2. /**
  3. * This file contains those functions pertaining to posting, and other such
  4. * operations, including sending emails, ims, blocking spam, preparsing posts,
  5. * spell checking, and the post box.
  6. *
  7. * Simple Machines Forum (SMF)
  8. *
  9. * @package SMF
  10. * @author Simple Machines http://www.simplemachines.org
  11. * @copyright 2011 Simple Machines
  12. * @license http://www.simplemachines.org/about/smf/license.php BSD
  13. *
  14. * @version 2.1 Alpha 1
  15. */
  16. if (!defined('SMF'))
  17. die('Hacking attempt...');
  18. /**
  19. * Takes a message and parses it, returning nothing.
  20. * Cleans up links (javascript, etc.) and code/quote sections.
  21. * Won't convert \n's and a few other things if previewing is true.
  22. *
  23. * @param $message
  24. * @param $previewing
  25. */
  26. function preparsecode(&$message, $previewing = false)
  27. {
  28. global $user_info, $modSettings, $smcFunc, $context;
  29. // This line makes all languages *theoretically* work even with the wrong charset ;).
  30. $message = preg_replace('~&amp;#(\d{4,5}|[2-9]\d{2,4}|1[2-9]\d);~', '&#$1;', $message);
  31. // Clean up after nobbc ;).
  32. $message = preg_replace('~\[nobbc\](.+?)\[/nobbc\]~ie', '\'[nobbc]\' . strtr(\'$1\', array(\'[\' => \'&#91;\', \']\' => \'&#93;\', \':\' => \'&#58;\', \'@\' => \'&#64;\')) . \'[/nobbc]\'', $message);
  33. // Remove \r's... they're evil!
  34. $message = strtr($message, array("\r" => ''));
  35. // You won't believe this - but too many periods upsets apache it seems!
  36. $message = preg_replace('~\.{100,}~', '...', $message);
  37. // Trim off trailing quotes - these often happen by accident.
  38. while (substr($message, -7) == '[quote]')
  39. $message = substr($message, 0, -7);
  40. while (substr($message, 0, 8) == '[/quote]')
  41. $message = substr($message, 8);
  42. // Find all code blocks, work out whether we'd be parsing them, then ensure they are all closed.
  43. $in_tag = false;
  44. $had_tag = false;
  45. $codeopen = 0;
  46. if (preg_match_all('~(\[(/)*code(?:=[^\]]+)?\])~is', $message, $matches))
  47. foreach ($matches[0] as $index => $dummy)
  48. {
  49. // Closing?
  50. if (!empty($matches[2][$index]))
  51. {
  52. // If it's closing and we're not in a tag we need to open it...
  53. if (!$in_tag)
  54. $codeopen = true;
  55. // Either way we ain't in one any more.
  56. $in_tag = false;
  57. }
  58. // Opening tag...
  59. else
  60. {
  61. $had_tag = true;
  62. // If we're in a tag don't do nought!
  63. if (!$in_tag)
  64. $in_tag = true;
  65. }
  66. }
  67. // If we have an open tag, close it.
  68. if ($in_tag)
  69. $message .= '[/code]';
  70. // Open any ones that need to be open, only if we've never had a tag.
  71. if ($codeopen && !$had_tag)
  72. $message = '[code]' . $message;
  73. // Now that we've fixed all the code tags, let's fix the img and url tags...
  74. $parts = preg_split('~(\[/code\]|\[code(?:=[^\]]+)?\])~i', $message, -1, PREG_SPLIT_DELIM_CAPTURE);
  75. // The regular expression non breaking space has many versions.
  76. $non_breaking_space = $context['utf8'] ? '\x{A0}' : '\xA0';
  77. // Only mess with stuff outside [code] tags.
  78. for ($i = 0, $n = count($parts); $i < $n; $i++)
  79. {
  80. // It goes 0 = outside, 1 = begin tag, 2 = inside, 3 = close tag, repeat.
  81. if ($i % 4 == 0)
  82. {
  83. fixTags($parts[$i]);
  84. // Replace /me.+?\n with [me=name]dsf[/me]\n.
  85. if (strpos($user_info['name'], '[') !== false || strpos($user_info['name'], ']') !== false || strpos($user_info['name'], '\'') !== false || strpos($user_info['name'], '"') !== false)
  86. $parts[$i] = preg_replace('~(\A|\n)/me(?: |&nbsp;)([^\n]*)(?:\z)?~i', '$1[me=&quot;' . $user_info['name'] . '&quot;]$2[/me]', $parts[$i]);
  87. else
  88. $parts[$i] = preg_replace('~(\A|\n)/me(?: |&nbsp;)([^\n]*)(?:\z)?~i', '$1[me=' . $user_info['name'] . ']$2[/me]', $parts[$i]);
  89. if (!$previewing && strpos($parts[$i], '[html]') !== false)
  90. {
  91. if (allowedTo('admin_forum'))
  92. $parts[$i] = preg_replace('~\[html\](.+?)\[/html\]~ise', '\'[html]\' . strtr(un_htmlspecialchars(\'$1\'), array("\n" => \'&#13;\', \' \' => \' &#32;\', \'[\' => \'&#91;\', \']\' => \'&#93;\')) . \'[/html]\'', $parts[$i]);
  93. // We should edit them out, or else if an admin edits the message they will get shown...
  94. else
  95. {
  96. while (strpos($parts[$i], '[html]') !== false)
  97. $parts[$i] = preg_replace('~\[[/]?html\]~i', '', $parts[$i]);
  98. }
  99. }
  100. // Let's look at the time tags...
  101. $parts[$i] = preg_replace('~\[time(?:=(absolute))*\](.+?)\[/time\]~ie', '\'[time]\' . (is_numeric(\'$2\') || @strtotime(\'$2\') == 0 ? \'$2\' : strtotime(\'$2\') - (\'$1\' == \'absolute\' ? 0 : (($modSettings[\'time_offset\'] + $user_info[\'time_offset\']) * 3600))) . \'[/time]\'', $parts[$i]);
  102. // Change the color specific tags to [color=the color].
  103. $parts[$i] = preg_replace('~\[(black|blue|green|red|white)\]~', '[color=$1]', $parts[$i]); // First do the opening tags.
  104. $parts[$i] = preg_replace('~\[/(black|blue|green|red|white)\]~', '[/color]', $parts[$i]); // And now do the closing tags
  105. // Make sure all tags are lowercase.
  106. $parts[$i] = preg_replace('~\[([/]?)(list|li|table|tr|td)((\s[^\]]+)*)\]~ie', '\'[$1\' . strtolower(\'$2\') . \'$3]\'', $parts[$i]);
  107. $list_open = substr_count($parts[$i], '[list]') + substr_count($parts[$i], '[list ');
  108. $list_close = substr_count($parts[$i], '[/list]');
  109. if ($list_close - $list_open > 0)
  110. $parts[$i] = str_repeat('[list]', $list_close - $list_open) . $parts[$i];
  111. if ($list_open - $list_close > 0)
  112. $parts[$i] = $parts[$i] . str_repeat('[/list]', $list_open - $list_close);
  113. $mistake_fixes = array(
  114. // Find [table]s not followed by [tr].
  115. '~\[table\](?![\s' . $non_breaking_space . ']*\[tr\])~s' . ($context['utf8'] ? 'u' : '') => '[table][tr]',
  116. // Find [tr]s not followed by [td].
  117. '~\[tr\](?![\s' . $non_breaking_space . ']*\[td\])~s' . ($context['utf8'] ? 'u' : '') => '[tr][td]',
  118. // Find [/td]s not followed by something valid.
  119. '~\[/td\](?![\s' . $non_breaking_space . ']*(?:\[td\]|\[/tr\]|\[/table\]))~s' . ($context['utf8'] ? 'u' : '') => '[/td][/tr]',
  120. // Find [/tr]s not followed by something valid.
  121. '~\[/tr\](?![\s' . $non_breaking_space . ']*(?:\[tr\]|\[/table\]))~s' . ($context['utf8'] ? 'u' : '') => '[/tr][/table]',
  122. // Find [/td]s incorrectly followed by [/table].
  123. '~\[/td\][\s' . $non_breaking_space . ']*\[/table\]~s' . ($context['utf8'] ? 'u' : '') => '[/td][/tr][/table]',
  124. // Find [table]s, [tr]s, and [/td]s (possibly correctly) followed by [td].
  125. '~\[(table|tr|/td)\]([\s' . $non_breaking_space . ']*)\[td\]~s' . ($context['utf8'] ? 'u' : '') => '[$1]$2[_td_]',
  126. // Now, any [td]s left should have a [tr] before them.
  127. '~\[td\]~s' => '[tr][td]',
  128. // Look for [tr]s which are correctly placed.
  129. '~\[(table|/tr)\]([\s' . $non_breaking_space . ']*)\[tr\]~s' . ($context['utf8'] ? 'u' : '') => '[$1]$2[_tr_]',
  130. // Any remaining [tr]s should have a [table] before them.
  131. '~\[tr\]~s' => '[table][tr]',
  132. // Look for [/td]s followed by [/tr].
  133. '~\[/td\]([\s' . $non_breaking_space . ']*)\[/tr\]~s' . ($context['utf8'] ? 'u' : '') => '[/td]$1[_/tr_]',
  134. // Any remaining [/tr]s should have a [/td].
  135. '~\[/tr\]~s' => '[/td][/tr]',
  136. // Look for properly opened [li]s which aren't closed.
  137. '~\[li\]([^\[\]]+?)\[li\]~s' => '[li]$1[_/li_][_li_]',
  138. '~\[li\]([^\[\]]+?)\[/list\]~s' => '[_li_]$1[_/li_][/list]',
  139. '~\[li\]([^\[\]]+?)$~s' => '[li]$1[/li]',
  140. // Lists - find correctly closed items/lists.
  141. '~\[/li\]([\s' . $non_breaking_space . ']*)\[/list\]~s' . ($context['utf8'] ? 'u' : '') => '[_/li_]$1[/list]',
  142. // Find list items closed and then opened.
  143. '~\[/li\]([\s' . $non_breaking_space . ']*)\[li\]~s' . ($context['utf8'] ? 'u' : '') => '[_/li_]$1[_li_]',
  144. // Now, find any [list]s or [/li]s followed by [li].
  145. '~\[(list(?: [^\]]*?)?|/li)\]([\s' . $non_breaking_space . ']*)\[li\]~s' . ($context['utf8'] ? 'u' : '') => '[$1]$2[_li_]',
  146. // Allow for sub lists.
  147. '~\[/li\]([\s' . $non_breaking_space . ']*)\[list\]~' . ($context['utf8'] ? 'u' : '') => '[_/li_]$1[list]',
  148. '~\[/list\]([\s' . $non_breaking_space . ']*)\[li\]~' . ($context['utf8'] ? 'u' : '') => '[/list]$1[_li_]',
  149. // Any remaining [li]s weren't inside a [list].
  150. '~\[li\]~' => '[list][li]',
  151. // Any remaining [/li]s weren't before a [/list].
  152. '~\[/li\]~' => '[/li][/list]',
  153. // Put the correct ones back how we found them.
  154. '~\[_(li|/li|td|tr|/tr)_\]~' => '[$1]',
  155. // Images with no real url.
  156. '~\[img\]https?://.{0,7}\[/img\]~' => '',
  157. );
  158. // Fix up some use of tables without [tr]s, etc. (it has to be done more than once to catch it all.)
  159. for ($j = 0; $j < 3; $j++)
  160. $parts[$i] = preg_replace(array_keys($mistake_fixes), $mistake_fixes, $parts[$i]);
  161. // Now we're going to do full scale table checking...
  162. $table_check = $parts[$i];
  163. $table_offset = 0;
  164. $table_array = array();
  165. $table_order = array(
  166. 'table' => 'td',
  167. 'tr' => 'table',
  168. 'td' => 'tr',
  169. );
  170. while (preg_match('~\[(/)*(table|tr|td)\]~', $table_check, $matches) != false)
  171. {
  172. // Keep track of where this is.
  173. $offset = strpos($table_check, $matches[0]);
  174. $remove_tag = false;
  175. // Is it opening?
  176. if ($matches[1] != '/')
  177. {
  178. // If the previous table tag isn't correct simply remove it.
  179. if ((!empty($table_array) && $table_array[0] != $table_order[$matches[2]]) || (empty($table_array) && $matches[2] != 'table'))
  180. $remove_tag = true;
  181. // Record this was the last tag.
  182. else
  183. array_unshift($table_array, $matches[2]);
  184. }
  185. // Otherwise is closed!
  186. else
  187. {
  188. // Only keep the tag if it's closing the right thing.
  189. if (empty($table_array) || ($table_array[0] != $matches[2]))
  190. $remove_tag = true;
  191. else
  192. array_shift($table_array);
  193. }
  194. // Removing?
  195. if ($remove_tag)
  196. {
  197. $parts[$i] = substr($parts[$i], 0, $table_offset + $offset) . substr($parts[$i], $table_offset + strlen($matches[0]) + $offset);
  198. // We've lost some data.
  199. $table_offset -= strlen($matches[0]);
  200. }
  201. // Remove everything up to here.
  202. $table_offset += $offset + strlen($matches[0]);
  203. $table_check = substr($table_check, $offset + strlen($matches[0]));
  204. }
  205. // Close any remaining table tags.
  206. foreach ($table_array as $tag)
  207. $parts[$i] .= '[/' . $tag . ']';
  208. }
  209. }
  210. // Put it back together!
  211. if (!$previewing)
  212. $message = strtr(implode('', $parts), array(' ' => '&nbsp; ', "\n" => '<br />', $context['utf8'] ? "\xC2\xA0" : "\xA0" => '&nbsp;'));
  213. else
  214. $message = strtr(implode('', $parts), array(' ' => '&nbsp; ', $context['utf8'] ? "\xC2\xA0" : "\xA0" => '&nbsp;'));
  215. // Now let's quickly clean up things that will slow our parser (which are common in posted code.)
  216. $message = strtr($message, array('[]' => '&#91;]', '[&#039;' => '&#91;&#039;'));
  217. // Remove empty bbc.
  218. $message = preg_replace('~\[[bisu]\]\s*\[/[bisu]\]~', '', $message);
  219. $message = preg_replace('~\[quote\]\s*\[/quote\]~', '', $message);
  220. }
  221. /**
  222. * This is very simple, and just removes things done by preparsecode.
  223. *
  224. * @param $message
  225. */
  226. function un_preparsecode($message)
  227. {
  228. global $smcFunc;
  229. $parts = preg_split('~(\[/code\]|\[code(?:=[^\]]+)?\])~i', $message, -1, PREG_SPLIT_DELIM_CAPTURE);
  230. // We're going to unparse only the stuff outside [code]...
  231. for ($i = 0, $n = count($parts); $i < $n; $i++)
  232. {
  233. // If $i is a multiple of four (0, 4, 8, ...) then it's not a code section...
  234. if ($i % 4 == 0)
  235. {
  236. $parts[$i] = preg_replace('~\[html\](.+?)\[/html\]~ie', '\'[html]\' . strtr(htmlspecialchars(\'$1\', ENT_QUOTES), array(\'\\&quot;\' => \'&quot;\', \'&amp;#13;\' => \'<br />\', \'&amp;#32;\' => \' \', \'&amp;#91;\' => \'[\', \'&amp;#93;\' => \']\')) . \'[/html]\'', $parts[$i]);
  237. // $parts[$i] = preg_replace('~\[html\](.+?)\[/html\]~ie', '\'[html]\' . strtr(htmlspecialchars(\'$1\', ENT_QUOTES), array(\'\\&quot;\' => \'&quot;\', \'&amp;#13;\' => \'<br />\', \'&amp;#32;\' => \' \', \'&amp;#38;\' => \'&#38;\', \'&amp;#91;\' => \'[\', \'&amp;#93;\' => \']\')) . \'[/html]\'', $parts[$i]);
  238. // Attempt to un-parse the time to something less awful.
  239. $parts[$i] = preg_replace('~\[time\](\d{0,10})\[/time\]~ie', '\'[time]\' . timeformat(\'$1\', false) . \'[/time]\'', $parts[$i]);
  240. }
  241. }
  242. // Change breaks back to \n's and &nsbp; back to spaces.
  243. return preg_replace('~<br( /)?' . '>~', "\n", str_replace('&nbsp;', ' ', implode('', $parts)));
  244. }
  245. /**
  246. * Fix any URLs posted - ie. remove 'javascript:'.
  247. * Used by preparsecode, fixes links in message and returns nothing.
  248. *
  249. * @param string $message
  250. */
  251. function fixTags(&$message)
  252. {
  253. global $modSettings;
  254. // WARNING: Editing the below can cause large security holes in your forum.
  255. // Edit only if you are sure you know what you are doing.
  256. $fixArray = array(
  257. // [img]http://...[/img] or [img width=1]http://...[/img]
  258. array(
  259. 'tag' => 'img',
  260. 'protocols' => array('http', 'https'),
  261. 'embeddedUrl' => false,
  262. 'hasEqualSign' => false,
  263. 'hasExtra' => true,
  264. ),
  265. // [url]http://...[/url]
  266. array(
  267. 'tag' => 'url',
  268. 'protocols' => array('http', 'https'),
  269. 'embeddedUrl' => true,
  270. 'hasEqualSign' => false,
  271. ),
  272. // [url=http://...]name[/url]
  273. array(
  274. 'tag' => 'url',
  275. 'protocols' => array('http', 'https'),
  276. 'embeddedUrl' => true,
  277. 'hasEqualSign' => true,
  278. ),
  279. // [iurl]http://...[/iurl]
  280. array(
  281. 'tag' => 'iurl',
  282. 'protocols' => array('http', 'https'),
  283. 'embeddedUrl' => true,
  284. 'hasEqualSign' => false,
  285. ),
  286. // [iurl=http://...]name[/iurl]
  287. array(
  288. 'tag' => 'iurl',
  289. 'protocols' => array('http', 'https'),
  290. 'embeddedUrl' => true,
  291. 'hasEqualSign' => true,
  292. ),
  293. // [ftp]ftp://...[/ftp]
  294. array(
  295. 'tag' => 'ftp',
  296. 'protocols' => array('ftp', 'ftps'),
  297. 'embeddedUrl' => true,
  298. 'hasEqualSign' => false,
  299. ),
  300. // [ftp=ftp://...]name[/ftp]
  301. array(
  302. 'tag' => 'ftp',
  303. 'protocols' => array('ftp', 'ftps'),
  304. 'embeddedUrl' => true,
  305. 'hasEqualSign' => true,
  306. ),
  307. // [flash]http://...[/flash]
  308. array(
  309. 'tag' => 'flash',
  310. 'protocols' => array('http', 'https'),
  311. 'embeddedUrl' => false,
  312. 'hasEqualSign' => false,
  313. 'hasExtra' => true,
  314. ),
  315. );
  316. // Fix each type of tag.
  317. foreach ($fixArray as $param)
  318. fixTag($message, $param['tag'], $param['protocols'], $param['embeddedUrl'], $param['hasEqualSign'], !empty($param['hasExtra']));
  319. // Now fix possible security problems with images loading links automatically...
  320. $message = preg_replace('~(\[img.*?\])(.+?)\[/img\]~eis', '\'$1\' . preg_replace(\'~action(=|%3d)(?!dlattach)~i\', \'action-\', \'$2\') . \'[/img]\'', $message);
  321. // Limit the size of images posted?
  322. if (!empty($modSettings['max_image_width']) || !empty($modSettings['max_image_height']))
  323. {
  324. // Find all the img tags - with or without width and height.
  325. preg_match_all('~\[img(\s+width=\d+)?(\s+height=\d+)?(\s+width=\d+)?\](.+?)\[/img\]~is', $message, $matches, PREG_PATTERN_ORDER);
  326. $replaces = array();
  327. foreach ($matches[0] as $match => $dummy)
  328. {
  329. // If the width was after the height, handle it.
  330. $matches[1][$match] = !empty($matches[3][$match]) ? $matches[3][$match] : $matches[1][$match];
  331. // Now figure out if they had a desired height or width...
  332. $desired_width = !empty($matches[1][$match]) ? (int) substr(trim($matches[1][$match]), 6) : 0;
  333. $desired_height = !empty($matches[2][$match]) ? (int) substr(trim($matches[2][$match]), 7) : 0;
  334. // One was omitted, or both. We'll have to find its real size...
  335. if (empty($desired_width) || empty($desired_height))
  336. {
  337. list ($width, $height) = url_image_size(un_htmlspecialchars($matches[4][$match]));
  338. // They don't have any desired width or height!
  339. if (empty($desired_width) && empty($desired_height))
  340. {
  341. $desired_width = $width;
  342. $desired_height = $height;
  343. }
  344. // Scale it to the width...
  345. elseif (empty($desired_width) && !empty($height))
  346. $desired_width = (int) (($desired_height * $width) / $height);
  347. // Scale if to the height.
  348. elseif (!empty($width))
  349. $desired_height = (int) (($desired_width * $height) / $width);
  350. }
  351. // If the width and height are fine, just continue along...
  352. if ($desired_width <= $modSettings['max_image_width'] && $desired_height <= $modSettings['max_image_height'])
  353. continue;
  354. // Too bad, it's too wide. Make it as wide as the maximum.
  355. if ($desired_width > $modSettings['max_image_width'] && !empty($modSettings['max_image_width']))
  356. {
  357. $desired_height = (int) (($modSettings['max_image_width'] * $desired_height) / $desired_width);
  358. $desired_width = $modSettings['max_image_width'];
  359. }
  360. // Now check the height, as well. Might have to scale twice, even...
  361. if ($desired_height > $modSettings['max_image_height'] && !empty($modSettings['max_image_height']))
  362. {
  363. $desired_width = (int) (($modSettings['max_image_height'] * $desired_width) / $desired_height);
  364. $desired_height = $modSettings['max_image_height'];
  365. }
  366. $replaces[$matches[0][$match]] = '[img' . (!empty($desired_width) ? ' width=' . $desired_width : '') . (!empty($desired_height) ? ' height=' . $desired_height : '') . ']' . $matches[4][$match] . '[/img]';
  367. }
  368. // If any img tags were actually changed...
  369. if (!empty($replaces))
  370. $message = strtr($message, $replaces);
  371. }
  372. }
  373. /**
  374. * Fix a specific class of tag - ie. url with =.
  375. * Used by fixTags, fixes a specific tag's links.
  376. *
  377. * @param string $message
  378. * @param string $myTag - the tag
  379. * @param string $protocols - http or ftp
  380. * @param bool $embeddedUrl = false - whether it *can* be set to something
  381. * @param bool $hasEqualSign = false, whether it *is* set to something
  382. * @param bool $hasExtra = false - whether it can have extra cruft after the begin tag.
  383. */
  384. function fixTag(&$message, $myTag, $protocols, $embeddedUrl = false, $hasEqualSign = false, $hasExtra = false)
  385. {
  386. global $boardurl, $scripturl;
  387. if (preg_match('~^([^:]+://[^/]+)~', $boardurl, $match) != 0)
  388. $domain_url = $match[1];
  389. else
  390. $domain_url = $boardurl . '/';
  391. $replaces = array();
  392. if ($hasEqualSign)
  393. preg_match_all('~\[(' . $myTag . ')=([^\]]*?)\](?:(.+?)\[/(' . $myTag . ')\])?~is', $message, $matches);
  394. else
  395. preg_match_all('~\[(' . $myTag . ($hasExtra ? '(?:[^\]]*?)' : '') . ')\](.+?)\[/(' . $myTag . ')\]~is', $message, $matches);
  396. foreach ($matches[0] as $k => $dummy)
  397. {
  398. // Remove all leading and trailing whitespace.
  399. $replace = trim($matches[2][$k]);
  400. $this_tag = $matches[1][$k];
  401. $this_close = $hasEqualSign ? (empty($matches[4][$k]) ? '' : $matches[4][$k]) : $matches[3][$k];
  402. $found = false;
  403. foreach ($protocols as $protocol)
  404. {
  405. $found = strncasecmp($replace, $protocol . '://', strlen($protocol) + 3) === 0;
  406. if ($found)
  407. break;
  408. }
  409. if (!$found && $protocols[0] == 'http')
  410. {
  411. if (substr($replace, 0, 1) == '/')
  412. $replace = $domain_url . $replace;
  413. elseif (substr($replace, 0, 1) == '?')
  414. $replace = $scripturl . $replace;
  415. elseif (substr($replace, 0, 1) == '#' && $embeddedUrl)
  416. {
  417. $replace = '#' . preg_replace('~[^A-Za-z0-9_\-#]~', '', substr($replace, 1));
  418. $this_tag = 'iurl';
  419. $this_close = 'iurl';
  420. }
  421. else
  422. $replace = $protocols[0] . '://' . $replace;
  423. }
  424. elseif (!$found && $protocols[0] == 'ftp')
  425. $replace = $protocols[0] . '://' . preg_replace('~^(?!ftps?)[^:]+://~', '', $replace);
  426. elseif (!$found)
  427. $replace = $protocols[0] . '://' . $replace;
  428. if ($hasEqualSign && $embeddedUrl)
  429. $replaces[$matches[0][$k]] = '[' . $this_tag . '=' . $replace . ']' . (empty($matches[4][$k]) ? '' : $matches[3][$k] . '[/' . $this_close . ']');
  430. elseif ($hasEqualSign)
  431. $replaces['[' . $matches[1][$k] . '=' . $matches[2][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']';
  432. elseif ($embeddedUrl)
  433. $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']' . $matches[2][$k] . '[/' . $this_close . ']';
  434. else
  435. $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . ']' . $replace . '[/' . $this_close . ']';
  436. }
  437. foreach ($replaces as $k => $v)
  438. {
  439. if ($k == $v)
  440. unset($replaces[$k]);
  441. }
  442. if (!empty($replaces))
  443. $message = strtr($message, $replaces);
  444. }
  445. /**
  446. * This function sends an email to the specified recipient(s).
  447. * It uses the mail_type settings and webmaster_email variable.
  448. *
  449. * @param array $to - the email(s) to send to
  450. * @param string $subject - email subject, expected to have entities, and slashes, but not be parsed
  451. * @param string $message - email body, expected to have slashes, no htmlentities
  452. * @param string $from = null - the address to use for replies
  453. * @param string $message_id = null - if specified, it will be used as local part of the Message-ID header.
  454. * @param bool $send_html = false, whether or not the message is HTML vs. plain text
  455. * @param int $priority = 3
  456. * @param bool $hotmail_fix = null
  457. * @param $is_private
  458. * @return bool, whether ot not the email was sent properly.
  459. */
  460. function sendmail($to, $subject, $message, $from = null, $message_id = null, $send_html = false, $priority = 3, $hotmail_fix = null, $is_private = false)
  461. {
  462. global $webmaster_email, $context, $modSettings, $txt, $scripturl;
  463. global $smcFunc;
  464. // Use sendmail if it's set or if no SMTP server is set.
  465. $use_sendmail = empty($modSettings['mail_type']) || $modSettings['smtp_host'] == '';
  466. // Line breaks need to be \r\n only in windows or for SMTP.
  467. $line_break = $context['server']['is_windows'] || !$use_sendmail ? "\r\n" : "\n";
  468. // So far so good.
  469. $mail_result = true;
  470. // If the recipient list isn't an array, make it one.
  471. $to_array = is_array($to) ? $to : array($to);
  472. // Once upon a time, Hotmail could not interpret non-ASCII mails.
  473. // In honour of those days, it's still called the 'hotmail fix'.
  474. if ($hotmail_fix === null)
  475. {
  476. $hotmail_to = array();
  477. foreach ($to_array as $i => $to_address)
  478. {
  479. if (preg_match('~@(att|comcast|bellsouth)\.[a-zA-Z\.]{2,6}$~i', $to_address) === 1)
  480. {
  481. $hotmail_to[] = $to_address;
  482. $to_array = array_diff($to_array, array($to_address));
  483. }
  484. }
  485. // Call this function recursively for the hotmail addresses.
  486. if (!empty($hotmail_to))
  487. $mail_result = sendmail($hotmail_to, $subject, $message, $from, $message_id, $send_html, $priority, true, $is_private);
  488. // The remaining addresses no longer need the fix.
  489. $hotmail_fix = false;
  490. // No other addresses left? Return instantly.
  491. if (empty($to_array))
  492. return $mail_result;
  493. }
  494. // Get rid of entities.
  495. $subject = un_htmlspecialchars($subject);
  496. // Make the message use the proper line breaks.
  497. $message = str_replace(array("\r", "\n"), array('', $line_break), $message);
  498. // Make sure hotmail mails are sent as HTML so that HTML entities work.
  499. if ($hotmail_fix && !$send_html)
  500. {
  501. $send_html = true;
  502. $message = strtr($message, array($line_break => '<br />' . $line_break));
  503. $message = preg_replace('~(' . preg_quote($scripturl, '~') . '(?:[?/][\w\-_%\.,\?&;=#]+)?)~', '<a href="$1">$1</a>', $message);
  504. }
  505. list (, $from_name) = mimespecialchars(addcslashes($from !== null ? $from : $context['forum_name'], '<>()\'\\"'), true, $hotmail_fix, $line_break);
  506. list (, $subject) = mimespecialchars($subject, true, $hotmail_fix, $line_break);
  507. // Construct the mail headers...
  508. $headers = 'From: "' . $from_name . '" <' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . '>' . $line_break;
  509. $headers .= $from !== null ? 'Reply-To: <' . $from . '>' . $line_break : '';
  510. $headers .= 'Return-Path: ' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . $line_break;
  511. $headers .= 'Date: ' . gmdate('D, d M Y H:i:s') . ' -0000' . $line_break;
  512. if ($message_id !== null && empty($modSettings['mail_no_message_id']))
  513. $headers .= 'Message-ID: <' . md5($scripturl . microtime()) . '-' . $message_id . strstr(empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from'], '@') . '>' . $line_break;
  514. $headers .= 'X-Mailer: SMF' . $line_break;
  515. // Pass this to the integration before we start modifying the output -- it'll make it easier later.
  516. if (in_array(false, call_integration_hook('integrate_outgoing_email', array(&$subject, &$message, &$headers)), true))
  517. return false;
  518. // Save the original message...
  519. $orig_message = $message;
  520. // The mime boundary separates the different alternative versions.
  521. $mime_boundary = 'SMF-' . md5($message . time());
  522. // Using mime, as it allows to send a plain unencoded alternative.
  523. $headers .= 'Mime-Version: 1.0' . $line_break;
  524. $headers .= 'Content-Type: multipart/alternative; boundary="' . $mime_boundary . '"' . $line_break;
  525. $headers .= 'Content-Transfer-Encoding: 7bit' . $line_break;
  526. // Sending HTML? Let's plop in some basic stuff, then.
  527. if ($send_html)
  528. {
  529. $no_html_message = un_htmlspecialchars(strip_tags(strtr($orig_message, array('</title>' => $line_break))));
  530. // But, then, dump it and use a plain one for dinosaur clients.
  531. list(, $plain_message) = mimespecialchars($no_html_message, false, true, $line_break);
  532. $message = $plain_message . $line_break . '--' . $mime_boundary . $line_break;
  533. // This is the plain text version. Even if no one sees it, we need it for spam checkers.
  534. list($charset, $plain_charset_message, $encoding) = mimespecialchars($no_html_message, false, false, $line_break);
  535. $message .= 'Content-Type: text/plain; charset=' . $charset . $line_break;
  536. $message .= 'Content-Transfer-Encoding: ' . $encoding . $line_break . $line_break;
  537. $message .= $plain_charset_message . $line_break . '--' . $mime_boundary . $line_break;
  538. // This is the actual HTML message, prim and proper. If we wanted images, they could be inlined here (with multipart/related, etc.)
  539. list($charset, $html_message, $encoding) = mimespecialchars($orig_message, false, $hotmail_fix, $line_break);
  540. $message .= 'Content-Type: text/html; charset=' . $charset . $line_break;
  541. $message .= 'Content-Transfer-Encoding: ' . ($encoding == '' ? '7bit' : $encoding) . $line_break . $line_break;
  542. $message .= $html_message . $line_break . '--' . $mime_boundary . '--';
  543. }
  544. // Text is good too.
  545. else
  546. {
  547. // Send a plain message first, for the older web clients.
  548. list(, $plain_message) = mimespecialchars($orig_message, false, true, $line_break);
  549. $message = $plain_message . $line_break . '--' . $mime_boundary . $line_break;
  550. // Now add an encoded message using the forum's character set.
  551. list ($charset, $encoded_message, $encoding) = mimespecialchars($orig_message, false, false, $line_break);
  552. $message .= 'Content-Type: text/plain; charset=' . $charset . $line_break;
  553. $message .= 'Content-Transfer-Encoding: ' . $encoding . $line_break . $line_break;
  554. $message .= $encoded_message . $line_break . '--' . $mime_boundary . '--';
  555. }
  556. // Are we using the mail queue, if so this is where we butt in...
  557. if (!empty($modSettings['mail_queue']) && $priority != 0)
  558. return AddMailQueue(false, $to_array, $subject, $message, $headers, $send_html, $priority, $is_private);
  559. // If it's a priority mail, send it now - note though that this should NOT be used for sending many at once.
  560. elseif (!empty($modSettings['mail_queue']) && !empty($modSettings['mail_limit']))
  561. {
  562. list ($last_mail_time, $mails_this_minute) = @explode('|', $modSettings['mail_recent']);
  563. if (empty($mails_this_minute) || time() > $last_mail_time + 60)
  564. $new_queue_stat = time() . '|' . 1;
  565. else
  566. $new_queue_stat = $last_mail_time . '|' . ((int) $mails_this_minute + 1);
  567. updateSettings(array('mail_recent' => $new_queue_stat));
  568. }
  569. // SMTP or sendmail?
  570. if ($use_sendmail)
  571. {
  572. $subject = strtr($subject, array("\r" => '', "\n" => ''));
  573. if (!empty($modSettings['mail_strip_carriage']))
  574. {
  575. $message = strtr($message, array("\r" => ''));
  576. $headers = strtr($headers, array("\r" => ''));
  577. }
  578. foreach ($to_array as $to)
  579. {
  580. if (!mail(strtr($to, array("\r" => '', "\n" => '')), $subject, $message, $headers))
  581. {
  582. log_error(sprintf($txt['mail_send_unable'], $to));
  583. $mail_result = false;
  584. }
  585. // Wait, wait, I'm still sending here!
  586. @set_time_limit(300);
  587. if (function_exists('apache_reset_timeout'))
  588. @apache_reset_timeout();
  589. }
  590. }
  591. else
  592. $mail_result = $mail_result && smtp_mail($to_array, $subject, $message, $headers);
  593. // Everything go smoothly?
  594. return $mail_result;
  595. }
  596. /**
  597. * Add an email to the mail queue.
  598. *
  599. * @param bool $flush = false
  600. * @param array $to_array = array()
  601. * @param string $subject = ''
  602. * @param string $message = ''
  603. * @param string $headers = ''
  604. * @param bool $send_html = false
  605. * @param int $priority = 3
  606. * @param $is_private
  607. * @return bool
  608. */
  609. function AddMailQueue($flush = false, $to_array = array(), $subject = '', $message = '', $headers = '', $send_html = false, $priority = 3, $is_private = false)
  610. {
  611. global $context, $modSettings, $smcFunc;
  612. static $cur_insert = array();
  613. static $cur_insert_len = 0;
  614. if ($cur_insert_len == 0)
  615. $cur_insert = array();
  616. // If we're flushing, make the final inserts - also if we're near the MySQL length limit!
  617. if (($flush || $cur_insert_len > 800000) && !empty($cur_insert))
  618. {
  619. // Only do these once.
  620. $cur_insert_len = 0;
  621. // Dump the data...
  622. $smcFunc['db_insert']('',
  623. '{db_prefix}mail_queue',
  624. array(
  625. 'time_sent' => 'int', 'recipient' => 'string-255', 'body' => 'string-65534', 'subject' => 'string-255',
  626. 'headers' => 'string-65534', 'send_html' => 'int', 'priority' => 'int', 'private' => 'int',
  627. ),
  628. $cur_insert,
  629. array('id_mail')
  630. );
  631. $cur_insert = array();
  632. $context['flush_mail'] = false;
  633. }
  634. // If we're flushing we're done.
  635. if ($flush)
  636. {
  637. $nextSendTime = time() + 10;
  638. $smcFunc['db_query']('', '
  639. UPDATE {db_prefix}settings
  640. SET value = {string:nextSendTime}
  641. WHERE variable = {string:mail_next_send}
  642. AND value = {string:no_outstanding}',
  643. array(
  644. 'nextSendTime' => $nextSendTime,
  645. 'mail_next_send' => 'mail_next_send',
  646. 'no_outstanding' => '0',
  647. )
  648. );
  649. return true;
  650. }
  651. // Ensure we tell obExit to flush.
  652. $context['flush_mail'] = true;
  653. foreach ($to_array as $to)
  654. {
  655. // Will this insert go over MySQL's limit?
  656. $this_insert_len = strlen($to) + strlen($message) + strlen($headers) + 700;
  657. // Insert limit of 1M (just under the safety) is reached?
  658. if ($this_insert_len + $cur_insert_len > 1000000)
  659. {
  660. // Flush out what we have so far.
  661. $smcFunc['db_insert']('',
  662. '{db_prefix}mail_queue',
  663. array(
  664. 'time_sent' => 'int', 'recipient' => 'string-255', 'body' => 'string-65534', 'subject' => 'string-255',
  665. 'headers' => 'string-65534', 'send_html' => 'int', 'priority' => 'int', 'private' => 'int',
  666. ),
  667. $cur_insert,
  668. array('id_mail')
  669. );
  670. // Clear this out.
  671. $cur_insert = array();
  672. $cur_insert_len = 0;
  673. }
  674. // Now add the current insert to the array...
  675. $cur_insert[] = array(time(), (string) $to, (string) $message, (string) $subject, (string) $headers, ($send_html ? 1 : 0), $priority, (int) $is_private);
  676. $cur_insert_len += $this_insert_len;
  677. }
  678. // If they are using SSI there is a good chance obExit will never be called. So lets be nice and flush it for them.
  679. if (SMF === 'SSI')
  680. return AddMailQueue(true);
  681. return true;
  682. }
  683. /**
  684. * Sends an personal message from the specified person to the specified people
  685. * ($from defaults to the user)
  686. *
  687. * @param array $recipients - an array containing the arrays 'to' and 'bcc', both containing id_member's.
  688. * @param string $subject - should have no slashes and no html entities
  689. * @param string $message - should have no slashes and no html entities
  690. * @param bool $store_outbox
  691. * @param array $from - an array with the id, name, and username of the member.
  692. * @param int $pm_head - the ID of the chain being replied to - if any.
  693. * @return array, an array with log entries telling how many recipients were successful and which recipients it failed to send to.
  694. */
  695. function sendpm($recipients, $subject, $message, $store_outbox = false, $from = null, $pm_head = 0)
  696. {
  697. global $scripturl, $txt, $user_info, $language;
  698. global $modSettings, $smcFunc;
  699. // Make sure the PM language file is loaded, we might need something out of it.
  700. loadLanguage('PersonalMessage');
  701. $onBehalf = $from !== null;
  702. // Initialize log array.
  703. $log = array(
  704. 'failed' => array(),
  705. 'sent' => array()
  706. );
  707. if ($from === null)
  708. $from = array(
  709. 'id' => $user_info['id'],
  710. 'name' => $user_info['name'],
  711. 'username' => $user_info['username']
  712. );
  713. // Probably not needed. /me something should be of the typer.
  714. else
  715. $user_info['name'] = $from['name'];
  716. // This is the one that will go in their inbox.
  717. $htmlmessage = $smcFunc['htmlspecialchars']($message, ENT_QUOTES);
  718. $htmlsubject = $smcFunc['htmlspecialchars']($subject);
  719. preparsecode($htmlmessage);
  720. // Integrated PMs
  721. call_integration_hook('integrate_personal_message', array(&$recipients, &$from['username'], &$subject, &$message));
  722. // Get a list of usernames and convert them to IDs.
  723. $usernames = array();
  724. foreach ($recipients as $rec_type => $rec)
  725. {
  726. foreach ($rec as $id => $member)
  727. {
  728. if (!is_numeric($recipients[$rec_type][$id]))
  729. {
  730. $recipients[$rec_type][$id] = $smcFunc['strtolower'](trim(preg_replace('/[<>&"\'=\\\]/', '', $recipients[$rec_type][$id])));
  731. $usernames[$recipients[$rec_type][$id]] = 0;
  732. }
  733. }
  734. }
  735. if (!empty($usernames))
  736. {
  737. $request = $smcFunc['db_query']('pm_find_username', '
  738. SELECT id_member, member_name
  739. FROM {db_prefix}members
  740. WHERE ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(member_name)' : 'member_name') . ' IN ({array_string:usernames})',
  741. array(
  742. 'usernames' => array_keys($usernames),
  743. )
  744. );
  745. while ($row = $smcFunc['db_fetch_assoc']($request))
  746. if (isset($usernames[$smcFunc['strtolower']($row['member_name'])]))
  747. $usernames[$smcFunc['strtolower']($row['member_name'])] = $row['id_member'];
  748. $smcFunc['db_free_result']($request);
  749. // Replace the usernames with IDs. Drop usernames that couldn't be found.
  750. foreach ($recipients as $rec_type => $rec)
  751. foreach ($rec as $id => $member)
  752. {
  753. if (is_numeric($recipients[$rec_type][$id]))
  754. continue;
  755. if (!empty($usernames[$member]))
  756. $recipients[$rec_type][$id] = $usernames[$member];
  757. else
  758. {
  759. $log['failed'][$id] = sprintf($txt['pm_error_user_not_found'], $recipients[$rec_type][$id]);
  760. unset($recipients[$rec_type][$id]);
  761. }
  762. }
  763. }
  764. // Make sure there are no duplicate 'to' members.
  765. $recipients['to'] = array_unique($recipients['to']);
  766. // Only 'bcc' members that aren't already in 'to'.
  767. $recipients['bcc'] = array_diff(array_unique($recipients['bcc']), $recipients['to']);
  768. // Combine 'to' and 'bcc' recipients.
  769. $all_to = array_merge($recipients['to'], $recipients['bcc']);
  770. // Check no-one will want it deleted right away!
  771. $request = $smcFunc['db_query']('', '
  772. SELECT
  773. id_member, criteria, is_or
  774. FROM {db_prefix}pm_rules
  775. WHERE id_member IN ({array_int:to_members})
  776. AND delete_pm = {int:delete_pm}',
  777. array(
  778. 'to_members' => $all_to,
  779. 'delete_pm' => 1,
  780. )
  781. );
  782. $deletes = array();
  783. // Check whether we have to apply anything...
  784. while ($row = $smcFunc['db_fetch_assoc']($request))
  785. {
  786. $criteria = unserialize($row['criteria']);
  787. // Note we don't check the buddy status, cause deletion from buddy = madness!
  788. $delete = false;
  789. foreach ($criteria as $criterium)
  790. {
  791. $match = false;
  792. if (($criterium['t'] == 'mid' && $criterium['v'] == $from['id']) || ($criterium['t'] == 'gid' && in_array($criterium['v'], $user_info['groups'])) || ($criterium['t'] == 'sub' && strpos($subject, $criterium['v']) !== false) || ($criterium['t'] == 'msg' && strpos($message, $criterium['v']) !== false))
  793. $delete = true;
  794. // If we're adding and one criteria don't match then we stop!
  795. elseif (!$row['is_or'])
  796. {
  797. $delete = false;
  798. break;
  799. }
  800. }
  801. if ($delete)
  802. $deletes[$row['id_member']] = 1;
  803. }
  804. $smcFunc['db_free_result']($request);
  805. // Load the membergrounp message limits.
  806. // @todo Consider caching this?
  807. static $message_limit_cache = array();
  808. if (!allowedTo('moderate_forum') && empty($message_limit_cache))
  809. {
  810. $request = $smcFunc['db_query']('', '
  811. SELECT id_group, max_messages
  812. FROM {db_prefix}membergroups',
  813. array(
  814. )
  815. );
  816. while ($row = $smcFunc['db_fetch_assoc']($request))
  817. $message_limit_cache[$row['id_group']] = $row['max_messages'];
  818. $smcFunc['db_free_result']($request);
  819. }
  820. // Load the groups that are allowed to read PMs.
  821. // @todo move into a separate function on $permission.
  822. $allowed_groups = array();
  823. $disallowed_groups = array();
  824. $request = $smcFunc['db_query']('', '
  825. SELECT id_group, add_deny
  826. FROM {db_prefix}permissions
  827. WHERE permission = {string:read_permission}',
  828. array(
  829. 'read_permission' => 'pm_read',
  830. )
  831. );
  832. while ($row = $smcFunc['db_fetch_assoc']($request))
  833. {
  834. if (empty($row['add_deny']))
  835. $disallowed_groups[] = $row['id_group'];
  836. else
  837. $allowed_groups[] = $row['id_group'];
  838. }
  839. $smcFunc['db_free_result']($request);
  840. if (empty($modSettings['permission_enable_deny']))
  841. $disallowed_groups = array();
  842. $request = $smcFunc['db_query']('', '
  843. SELECT
  844. member_name, real_name, id_member, email_address, lngfile,
  845. pm_email_notify, instant_messages,' . (allowedTo('moderate_forum') ? ' 0' : '
  846. (pm_receive_from = {int:admins_only}' . (empty($modSettings['enable_buddylist']) ? '' : ' OR
  847. (pm_receive_from = {int:buddies_only} AND FIND_IN_SET({string:from_id}, buddy_list) = 0) OR
  848. (pm_receive_from = {int:not_on_ignore_list} AND FIND_IN_SET({string:from_id}, pm_ignore_list) != 0)') . ')') . ' AS ignored,
  849. FIND_IN_SET({string:from_id}, buddy_list) != 0 AS is_buddy, is_activated,
  850. additional_groups, id_group, id_post_group
  851. FROM {db_prefix}members
  852. WHERE id_member IN ({array_int:recipients})
  853. ORDER BY lngfile
  854. LIMIT {int:count_recipients}',
  855. array(
  856. 'not_on_ignore_list' => 1,
  857. 'buddies_only' => 2,
  858. 'admins_only' => 3,
  859. 'recipients' => $all_to,
  860. 'count_recipients' => count($all_to),
  861. 'from_id' => $from['id'],
  862. )
  863. );
  864. $notifications = array();
  865. while ($row = $smcFunc['db_fetch_assoc']($request))
  866. {
  867. // Don't do anything for members to be deleted!
  868. if (isset($deletes[$row['id_member']]))
  869. continue;
  870. // We need to know this members groups.
  871. $groups = explode(',', $row['additional_groups']);
  872. $groups[] = $row['id_group'];
  873. $groups[] = $row['id_post_group'];
  874. $message_limit = -1;
  875. // For each group see whether they've gone over their limit - assuming they're not an admin.
  876. if (!in_array(1, $groups))
  877. {
  878. foreach ($groups as $id)
  879. {
  880. if (isset($message_limit_cache[$id]) && $message_limit != 0 && $message_limit < $message_limit_cache[$id])
  881. $message_limit = $message_limit_cache[$id];
  882. }
  883. if ($message_limit > 0 && $message_limit <= $row['instant_messages'])
  884. {
  885. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_data_limit_reached'], $row['real_name']);
  886. unset($all_to[array_search($row['id_member'], $all_to)]);
  887. continue;
  888. }
  889. // Do they have any of the allowed groups?
  890. if (count(array_intersect($allowed_groups, $groups)) == 0 || count(array_intersect($disallowed_groups, $groups)) != 0)
  891. {
  892. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_user_cannot_read'], $row['real_name']);
  893. unset($all_to[array_search($row['id_member'], $all_to)]);
  894. continue;
  895. }
  896. }
  897. // Note that PostgreSQL can return a lowercase t/f for FIND_IN_SET
  898. if (!empty($row['ignored']) && $row['ignored'] != 'f' && $row['id_member'] != $from['id'])
  899. {
  900. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_ignored_by_user'], $row['real_name']);
  901. unset($all_to[array_search($row['id_member'], $all_to)]);
  902. continue;
  903. }
  904. // If the receiving account is banned (>=10) or pending deletion (4), refuse to send the PM.
  905. if ($row['is_activated'] >= 10 || ($row['is_activated'] == 4 && !$user_info['is_admin']))
  906. {
  907. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_user_cannot_read'], $row['real_name']);
  908. unset($all_to[array_search($row['id_member'], $all_to)]);
  909. continue;
  910. }
  911. // Send a notification, if enabled - taking the buddy list into account.
  912. if (!empty($row['email_address']) && ($row['pm_email_notify'] == 1 || ($row['pm_email_notify'] > 1 && (!empty($modSettings['enable_buddylist']) && $row['is_buddy']))) && $row['is_activated'] == 1)
  913. $notifications[empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']][] = $row['email_address'];
  914. $log['sent'][$row['id_member']] = sprintf(isset($txt['pm_successfully_sent']) ? $txt['pm_successfully_sent'] : '', $row['real_name']);
  915. }
  916. $smcFunc['db_free_result']($request);
  917. // Only 'send' the message if there are any recipients left.
  918. if (empty($all_to))
  919. return $log;
  920. // Insert the message itself and then grab the last insert id.
  921. $smcFunc['db_insert']('',
  922. '{db_prefix}personal_messages',
  923. array(
  924. 'id_pm_head' => 'int', 'id_member_from' => 'int', 'deleted_by_sender' => 'int',
  925. 'from_name' => 'string-255', 'msgtime' => 'int', 'subject' => 'string-255', 'body' => 'string-65534',
  926. ),
  927. array(
  928. $pm_head, $from['id'], ($store_outbox ? 0 : 1),
  929. $from['username'], time(), $htmlsubject, $htmlmessage,
  930. ),
  931. array('id_pm')
  932. );
  933. $id_pm = $smcFunc['db_insert_id']('{db_prefix}personal_messages', 'id_pm');
  934. // Add the recipients.
  935. if (!empty($id_pm))
  936. {
  937. // If this is new we need to set it part of it's own conversation.
  938. if (empty($pm_head))
  939. $smcFunc['db_query']('', '
  940. UPDATE {db_prefix}personal_messages
  941. SET id_pm_head = {int:id_pm_head}
  942. WHERE id_pm = {int:id_pm_head}',
  943. array(
  944. 'id_pm_head' => $id_pm,
  945. )
  946. );
  947. // Some people think manually deleting personal_messages is fun... it's not. We protect against it though :)
  948. $smcFunc['db_query']('', '
  949. DELETE FROM {db_prefix}pm_recipients
  950. WHERE id_pm = {int:id_pm}',
  951. array(
  952. 'id_pm' => $id_pm,
  953. )
  954. );
  955. $insertRows = array();
  956. foreach ($all_to as $to)
  957. {
  958. $insertRows[] = array($id_pm, $to, in_array($to, $recipients['bcc']) ? 1 : 0, isset($deletes[$to]) ? 1 : 0, 1);
  959. }
  960. $smcFunc['db_insert']('insert',
  961. '{db_prefix}pm_recipients',
  962. array(
  963. 'id_pm' => 'int', 'id_member' => 'int', 'bcc' => 'int', 'deleted' => 'int', 'is_new' => 'int'
  964. ),
  965. $insertRows,
  966. array('id_pm', 'id_member')
  967. );
  968. }
  969. censorText($message);
  970. censorText($subject);
  971. $message = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc(htmlspecialchars($message), false), array('<br />' => "\n", '</div>' => "\n", '</li>' => "\n", '&#91;' => '[', '&#93;' => ']')))));
  972. foreach ($notifications as $lang => $notification_list)
  973. {
  974. // Make sure to use the right language.
  975. loadLanguage('index+PersonalMessage', $lang, false);
  976. // Replace the right things in the message strings.
  977. $mailsubject = str_replace(array('SUBJECT', 'SENDER'), array($subject, un_htmlspecialchars($from['name'])), $txt['new_pm_subject']);
  978. $mailmessage = str_replace(array('SUBJECT', 'MESSAGE', 'SENDER'), array($subject, $message, un_htmlspecialchars($from['name'])), $txt['pm_email']);
  979. $mailmessage .= "\n\n" . $txt['instant_reply'] . ' ' . $scripturl . '?action=pm;sa=send;f=inbox;pmsg=' . $id_pm . ';quote;u=' . $from['id'];
  980. // Off the notification email goes!
  981. sendmail($notification_list, $mailsubject, $mailmessage, null, 'p' . $id_pm, false, 2, null, true);
  982. }
  983. // Back to what we were on before!
  984. loadLanguage('index+PersonalMessage');
  985. // Add one to their unread and read message counts.
  986. foreach ($all_to as $k => $id)
  987. if (isset($deletes[$id]))
  988. unset($all_to[$k]);
  989. if (!empty($all_to))
  990. updateMemberData($all_to, array('instant_messages' => '+', 'unread_messages' => '+', 'new_pm' => 1));
  991. return $log;
  992. }
  993. /**
  994. * Prepare text strings for sending as email body or header.
  995. * In case there are higher ASCII characters in the given string, this
  996. * function will attempt the transport method 'quoted-printable'.
  997. * Otherwise the transport method '7bit' is used.
  998. *
  999. * @param string $string
  1000. * @param bool $with_charset = true
  1001. * @param bool $hotmail_fix = false, with hotmail_fix set all higher ASCII
  1002. * characters are converted to HTML entities to assure proper display of the mail
  1003. * @param $line_break
  1004. * @param string $custom_charset = null, if set, it uses this character set
  1005. * @return array an array containing the character set, the converted string and the transport method.
  1006. */
  1007. function mimespecialchars($string, $with_charset = true, $hotmail_fix = false, $line_break = "\r\n", $custom_charset = null)
  1008. {
  1009. global $context;
  1010. $charset = $custom_charset !== null ? $custom_charset : $context['character_set'];
  1011. // This is the fun part....
  1012. if (preg_match_all('~&#(\d{3,8});~', $string, $matches) !== 0 && !$hotmail_fix)
  1013. {
  1014. // Let's, for now, assume there are only &#021;'ish characters.
  1015. $simple = true;
  1016. foreach ($matches[1] as $entity)
  1017. if ($entity > 128)
  1018. $simple = false;
  1019. unset($matches);
  1020. if ($simple)
  1021. $string = preg_replace('~&#(\d{3,8});~e', 'chr(\'$1\')', $string);
  1022. else
  1023. {
  1024. // Try to convert the string to UTF-8.
  1025. if (!$context['utf8'] && function_exists('iconv'))
  1026. {
  1027. $newstring = @iconv($context['character_set'], 'UTF-8', $string);
  1028. if ($newstring)
  1029. $string = $newstring;
  1030. }
  1031. $fixchar = create_function('$n', '
  1032. if ($n < 128)
  1033. return chr($n);
  1034. elseif ($n < 2048)
  1035. return chr(192 | $n >> 6) . chr(128 | $n & 63);
  1036. elseif ($n < 65536)
  1037. return chr(224 | $n >> 12) . chr(128 | $n >> 6 & 63) . chr(128 | $n & 63);
  1038. else
  1039. return chr(240 | $n >> 18) . chr(128 | $n >> 12 & 63) . chr(128 | $n >> 6 & 63) . chr(128 | $n & 63);');
  1040. $string = preg_replace('~&#(\d{3,8});~e', '$fixchar(\'$1\')', $string);
  1041. // Unicode, baby.
  1042. $charset = 'UTF-8';
  1043. }
  1044. }
  1045. // Convert all special characters to HTML entities...just for Hotmail :-\
  1046. if ($hotmail_fix && ($context['utf8'] || function_exists('iconv') || $context['character_set'] === 'ISO-8859-1'))
  1047. {
  1048. if (!$context['utf8'] && function_exists('iconv'))
  1049. {
  1050. $newstring = @iconv($context['character_set'], 'UTF-8', $string);
  1051. if ($newstring)
  1052. $string = $newstring;
  1053. }
  1054. $entityConvert = create_function('$c', '
  1055. if (strlen($c) === 1 && ord($c[0]) <= 0x7F)
  1056. return $c;
  1057. elseif (strlen($c) === 2 && ord($c[0]) >= 0xC0 && ord($c[0]) <= 0xDF)
  1058. return "&#" . (((ord($c[0]) ^ 0xC0) << 6) + (ord($c[1]) ^ 0x80)) . ";";
  1059. elseif (strlen($c) === 3 && ord($c[0]) >= 0xE0 && ord($c[0]) <= 0xEF)
  1060. return "&#" . (((ord($c[0]) ^ 0xE0) << 12) + ((ord($c[1]) ^ 0x80) << 6) + (ord($c[2]) ^ 0x80)) . ";";
  1061. elseif (strlen($c) === 4 && ord($c[0]) >= 0xF0 && ord($c[0]) <= 0xF7)
  1062. return "&#" . (((ord($c[0]) ^ 0xF0) << 18) + ((ord($c[1]) ^ 0x80) << 12) + ((ord($c[2]) ^ 0x80) << 6) + (ord($c[3]) ^ 0x80)) . ";";
  1063. else
  1064. return "";');
  1065. // Convert all 'special' characters to HTML entities.
  1066. return array($charset, preg_replace('~([\x80-\x{10FFFF}])~eu', '$entityConvert(\'\1\')', $string), '7bit');
  1067. }
  1068. // We don't need to mess with the subject line if no special characters were in it..
  1069. elseif (!$hotmail_fix && preg_match('~([^\x09\x0A\x0D\x20-\x7F])~', $string) === 1)
  1070. {
  1071. // Base64 encode.
  1072. $string = base64_encode($string);
  1073. // Show the characterset and the transfer-encoding for header strings.
  1074. if ($with_charset)
  1075. $string = '=?' . $charset . '?B?' . $string . '?=';
  1076. // Break it up in lines (mail body).
  1077. else
  1078. $string = chunk_split($string, 76, $line_break);
  1079. return array($charset, $string, 'base64');
  1080. }
  1081. else
  1082. return array($charset, $string, '7bit');
  1083. }
  1084. // Send an email via SMTP.
  1085. /**
  1086. * Sends mail, like mail() but over SMTP.
  1087. * It expects no slashes or entities.
  1088. * @internal
  1089. *
  1090. * @param array $mail_to_array - array of strings (email addresses)
  1091. * @param string $subject, email subject
  1092. * @param string $message, email message
  1093. * @param string $headers
  1094. * @return bool, whether it sent or not.
  1095. */
  1096. function smtp_mail($mail_to_array, $subject, $message, $headers)
  1097. {
  1098. global $modSettings, $webmaster_email, $txt;
  1099. $modSettings['smtp_host'] = trim($modSettings['smtp_host']);
  1100. // Try POP3 before SMTP?
  1101. // @todo There's no interface for this yet.
  1102. if ($modSettings['mail_type'] == 2 && $modSettings['smtp_username'] != '' && $modSettings['smtp_password'] != '')
  1103. {
  1104. $socket = fsockopen($modSettings['smtp_host'], 110, $errno, $errstr, 2);
  1105. if (!$socket && (substr($modSettings['smtp_host'], 0, 5) == 'smtp.' || substr($modSettings['smtp_host'], 0, 11) == 'ssl://smtp.'))
  1106. $socket = fsockopen(strtr($modSettings['smtp_host'], array('smtp.' => 'pop.')), 110, $errno, $errstr, 2);
  1107. if ($socket)
  1108. {
  1109. fgets($socket, 256);
  1110. fputs($socket, 'USER ' . $modSettings['smtp_username'] . "\r\n");
  1111. fgets($socket, 256);
  1112. fputs($socket, 'PASS ' . base64_decode($modSettings['smtp_password']) . "\r\n");
  1113. fgets($socket, 256);
  1114. fputs($socket, 'QUIT' . "\r\n");
  1115. fclose($socket);
  1116. }
  1117. }
  1118. // Try to connect to the SMTP server... if it doesn't exist, only wait three seconds.
  1119. if (!$socket = fsockopen($modSettings['smtp_host'], empty($modSettings['smtp_port']) ? 25 : $modSettings['smtp_port'], $errno, $errstr, 3))
  1120. {
  1121. // Maybe we can still save this? The port might be wrong.
  1122. if (substr($modSettings['smtp_host'], 0, 4) == 'ssl:' && (empty($modSettings['smtp_port']) || $modSettings['smtp_port'] == 25))
  1123. {
  1124. if ($socket = fsockopen($modSettings['smtp_host'], 465, $errno, $errstr, 3))
  1125. log_error($txt['smtp_port_ssl']);
  1126. }
  1127. // Unable to connect! Don't show any error message, but just log one and try to continue anyway.
  1128. if (!$socket)
  1129. {
  1130. log_error($txt['smtp_no_connect'] . ': ' . $errno . ' : ' . $errstr);
  1131. return false;
  1132. }
  1133. }
  1134. // Wait for a response of 220, without "-" continuer.
  1135. if (!server_parse(null, $socket, '220'))
  1136. return false;
  1137. if ($modSettings['mail_type'] == 1 && $modSettings['smtp_username'] != '' && $modSettings['smtp_password'] != '')
  1138. {
  1139. // @todo These should send the CURRENT server's name, not the mail server's!
  1140. // EHLO could be understood to mean encrypted hello...
  1141. if (server_parse('EHLO ' . $modSettings['smtp_host'], $socket, null) == '250')
  1142. {
  1143. if (!server_parse('AUTH LOGIN', $socket, '334'))
  1144. return false;
  1145. // Send the username and password, encoded.
  1146. if (!server_parse(base64_encode($modSettings['smtp_username']), $socket, '334'))
  1147. return false;
  1148. // The password is already encoded ;)
  1149. if (!server_parse($modSettings['smtp_password'], $socket, '235'))
  1150. return false;
  1151. }
  1152. elseif (!server_parse('HELO ' . $modSettings['smtp_host'], $socket, '250'))
  1153. return false;
  1154. }
  1155. else
  1156. {
  1157. // Just say "helo".
  1158. if (!server_parse('HELO ' . $modSettings['smtp_host'], $socket, '250'))
  1159. return false;
  1160. }
  1161. // Fix the message for any lines beginning with a period! (the first is ignored, you see.)
  1162. $message = strtr($message, array("\r\n" . '.' => "\r\n" . '..'));
  1163. // !! Theoretically, we should be able to just loop the RCPT TO.
  1164. $mail_to_array = array_values($mail_to_array);
  1165. foreach ($mail_to_array as $i => $mail_to)
  1166. {
  1167. // Reset the connection to send another email.
  1168. if ($i != 0)
  1169. {
  1170. if (!server_parse('RSET', $socket, '250'))
  1171. return false;
  1172. }
  1173. // From, to, and then start the data...
  1174. if (!server_parse('MAIL FROM: <' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . '>', $socket, '250'))
  1175. return false;
  1176. if (!server_parse('RCPT TO: <' . $mail_to . '>', $socket, '250'))
  1177. return false;
  1178. if (!server_parse('DATA', $socket, '354'))
  1179. return false;
  1180. fputs($socket, 'Subject: ' . $subject . "\r\n");
  1181. if (strlen($mail_to) > 0)
  1182. fputs($socket, 'To: <' . $mail_to . '>' . "\r\n");
  1183. fputs($socket, $headers . "\r\n\r\n");
  1184. fputs($socket, $message . "\r\n");
  1185. // Send a ., or in other words "end of data".
  1186. if (!server_parse('.', $socket, '250'))
  1187. return false;
  1188. // Almost done, almost done... don't stop me just yet!
  1189. @set_time_limit(300);
  1190. if (function_exists('apache_reset_timeout'))
  1191. @apache_reset_timeout();
  1192. }
  1193. fputs($socket, 'QUIT' . "\r\n");
  1194. fclose($socket);
  1195. return true;
  1196. }
  1197. /**
  1198. * Parse a message to the SMTP server.
  1199. * Sends the specified message to the server, and checks for the
  1200. * expected response.
  1201. * @internal
  1202. *
  1203. * @param string $message - the message to send
  1204. * @param resource $socket - socket to send on
  1205. * @param string $response - the expected response code
  1206. * @return whether it responded as such.
  1207. */
  1208. function server_parse($message, $socket, $response)
  1209. {
  1210. global $txt;
  1211. if ($message !== null)
  1212. fputs($socket, $message . "\r\n");
  1213. // No response yet.
  1214. $server_response = '';
  1215. while (substr($server_response, 3, 1) != ' ')
  1216. if (!($server_response = fgets($socket, 256)))
  1217. {
  1218. // @todo Change this message to reflect that it may mean bad user/password/server issues/etc.
  1219. log_error($txt['smtp_bad_response']);
  1220. return false;
  1221. }
  1222. if ($response === null)
  1223. return substr($server_response, 0, 3);
  1224. if (substr($server_response, 0, 3) != $response)
  1225. {
  1226. log_error($txt['smtp_error'] . $server_response);
  1227. return false;
  1228. }
  1229. return true;
  1230. }
  1231. /**
  1232. * Spell checks the post for typos ;).
  1233. * It uses the pspell library, which MUST be installed.
  1234. * It has problems with internationalization.
  1235. * It is accessed via ?action=spellcheck.
  1236. */
  1237. function SpellCheck()
  1238. {
  1239. global $txt, $context, $smcFunc;
  1240. // A list of "words" we know about but pspell doesn't.
  1241. $known_words = array('smf', 'php', 'mysql', 'www', 'gif', 'jpeg', 'png', 'http', 'smfisawesome', 'grandia', 'terranigma', 'rpgs');
  1242. loadLanguage('Post');
  1243. loadTemplate('Post');
  1244. // Okay, this looks funny, but it actually fixes a weird bug.
  1245. ob_start();
  1246. $old = error_reporting(0);
  1247. // See, first, some windows machines don't load pspell properly on the first try. Dumb, but this is a workaround.
  1248. pspell_new('en');
  1249. // Next, the dictionary in question may not exist. So, we try it... but...
  1250. $pspell_link = pspell_new($txt['lang_dictionary'], $txt['lang_spelling'], '', strtr($context['character_set'], array('iso-' => 'iso', 'ISO-' => 'iso')), PSPELL_FAST | PSPELL_RUN_TOGETHER);
  1251. // Most people don't have anything but English installed... So we use English as a last resort.
  1252. if (!$pspell_link)
  1253. $pspell_link = pspell_new('en', '', '', '', PSPELL_FAST | PSPELL_RUN_TOGETHER);
  1254. error_reporting($old);
  1255. ob_end_clean();
  1256. if (!isset($_POST['spellstring']) || !$pspell_link)
  1257. die;
  1258. // Construct a bit of Javascript code.
  1259. $context['spell_js'] = '
  1260. var txt = {"done": "' . $txt['spellcheck_done'] . '"};
  1261. var mispstr = window.opener.document.forms[spell_formname][spell_fieldname].value;
  1262. var misps = Array(';
  1263. // Get all the words (Javascript already separated them).
  1264. $alphas = explode("\n", strtr($_POST['spellstring'], array("\r" => '')));
  1265. $found_words = false;
  1266. for ($i = 0, $n = count($alphas); $i < $n; $i++)
  1267. {
  1268. // Words are sent like 'word|offset_begin|offset_end'.
  1269. $check_word = explode('|', $alphas[$i]);
  1270. // If the word is a known word, or spelled right...
  1271. if (in_array($smcFunc['strtolower']($check_word[0]), $known_words) || pspell_check($pspell_link, $check_word[0]) || !isset($check_word[2]))
  1272. continue;
  1273. // Find the word, and move up the "last occurance" to here.
  1274. $found_words = true;
  1275. // Add on the javascript for this misspelling.
  1276. $context['spell_js'] .= '
  1277. new misp("' . strtr($check_word[0], array('\\' => '\\\\', '"' => '\\"', '<' => '', '&gt;' => '')) . '", ' . (int) $check_word[1] . ', ' . (int) $check_word[2] . ', [';
  1278. // If there are suggestions, add them in...
  1279. $suggestions = pspell_suggest($pspell_link, $check_word[0]);
  1280. if (!empty($suggestions))
  1281. {
  1282. // But first check they aren't going to be censored - no naughty words!
  1283. foreach ($suggestions as $k => $word)
  1284. if ($suggestions[$k] != censorText($word))
  1285. unset($suggestions[$k]);
  1286. if (!empty($suggestions))
  1287. $context['spell_js'] .= '"' . implode('", "', $suggestions) . '"';
  1288. }
  1289. $context['spell_js'] .= ']),';
  1290. }
  1291. // If words were found, take off the last comma.
  1292. if ($found_words)
  1293. $context['spell_js'] = substr($context['spell_js'], 0, -1);
  1294. $context['spell_js'] .= '
  1295. );';
  1296. // And instruct the template system to just show the spellcheck sub template.
  1297. $context['template_layers'] = array();
  1298. $context['sub_template'] = 'spellcheck';
  1299. }
  1300. /**
  1301. * Sends a notification to members who have elected to receive emails
  1302. * when things happen to a topic, such as replies are posted.
  1303. * The function automatically finds the subject and its board, and
  1304. * checks permissions for each member who is "signed up" for notifications.
  1305. * It will not send 'reply' notifications more than once in a row.
  1306. *
  1307. * @param array $topics - represents the topics the action is happening to.
  1308. * @param string $type - can be any of reply, sticky, lock, unlock, remove,
  1309. * move, merge, and split. An appropriate message will be sent for each.
  1310. * @param array $exclude = array() - members in the exclude array will not be
  1311. * processed for the topic with the same key.
  1312. * @param array $members_only = array() - are the only ones that will be sent the notification if they have it on.
  1313. * @uses Post language file
  1314. */
  1315. function sendNotifications($topics, $type, $exclude = array(), $members_only = array())
  1316. {
  1317. global $txt, $scripturl, $language, $user_info;
  1318. global $modSettings, $sourcedir, $context, $smcFunc;
  1319. // Can't do it if there's no topics.
  1320. if (empty($topics))
  1321. return;
  1322. // It must be an array - it must!
  1323. if (!is_array($topics))
  1324. $topics = array($topics);
  1325. // Get the subject and body...
  1326. $result = $smcFunc['db_query']('', '
  1327. SELECT mf.subject, ml.body, ml.id_member, t.id_last_msg, t.id_topic,
  1328. IFNULL(mem.real_name, ml.poster_name) AS poster_name
  1329. FROM {db_prefix}topics AS t
  1330. INNER JOIN {db_prefix}messages AS mf ON (mf.id_msg = t.id_first_msg)
  1331. INNER JOIN {db_prefix}messages AS ml ON (ml.id_msg = t.id_last_msg)
  1332. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = ml.id_member)
  1333. WHERE t.id_topic IN ({array_int:topic_list})
  1334. LIMIT 1',
  1335. array(
  1336. 'topic_list' => $topics,
  1337. )
  1338. );
  1339. $topicData = array();
  1340. while ($row = $smcFunc['db_fetch_assoc']($result))
  1341. {
  1342. // Clean it up.
  1343. censorText($row['subject']);
  1344. censorText($row['body']);
  1345. $row['subject'] = un_htmlspecialchars($row['subject']);
  1346. $row['body'] = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc($row['body'], false, $row['id_last_msg']), array('<br />' => "\n", '</div>' => "\n", '</li>' => "\n", '&#91;' => '[', '&#93;' => ']')))));
  1347. $topicData[$row['id_topic']] = array(
  1348. 'subject' => $row['subject'],
  1349. 'body' => $row['body'],
  1350. 'last_id' => $row['id_last_msg'],
  1351. 'topic' => $row['id_topic'],
  1352. 'name' => $user_info['name'],
  1353. 'exclude' => '',
  1354. );
  1355. }
  1356. $smcFunc['db_free_result']($result);
  1357. // Work out any exclusions...
  1358. foreach ($topics as $key => $id)
  1359. if (isset($topicData[$id]) && !empty($exclude[$key]))
  1360. $topicData[$id]['exclude'] = (int) $exclude[$key];
  1361. // Nada?
  1362. if (empty($topicData))
  1363. trigger_error('sendNotifications(): topics not found', E_USER_NOTICE);
  1364. $topics = array_keys($topicData);
  1365. // Just in case they've gone walkies.
  1366. if (empty($topics))
  1367. return;
  1368. // Insert all of these items into the digest log for those who want notifications later.
  1369. $digest_insert = array();
  1370. foreach ($topicData as $id => $data)
  1371. $digest_insert[] = array($data['topic'], $data['last_id'], $type, (int) $data['exclude']);
  1372. $smcFunc['db_insert']('',
  1373. '{db_prefix}log_digest',
  1374. array(
  1375. 'id_topic' => 'int', 'id_msg' => 'int', 'note_type' => 'string', 'exclude' => 'int',
  1376. ),
  1377. $digest_insert,
  1378. array()
  1379. );
  1380. // Find the members with notification on for this topic.
  1381. $members = $smcFunc['db_query']('', '
  1382. SELECT
  1383. mem.id_member, mem.email_address, mem.notify_regularity, mem.notify_types, mem.notify_send_body, mem.lngfile,
  1384. ln.sent, mem.id_group, mem.additional_groups, b.member_groups, mem.id_post_group, t.id_member_started,
  1385. ln.id_topic
  1386. FROM {db_prefix}log_notify AS ln
  1387. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = ln.id_member)
  1388. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = ln.id_topic)
  1389. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  1390. WHERE ln.id_topic IN ({array_int:topic_list})
  1391. AND mem.notify_types < {int:notify_types}
  1392. AND mem.notify_regularity < {int:notify_regularity}
  1393. AND mem.is_activated = {int:is_activated}
  1394. AND ln.id_member != {int:current_member}' .
  1395. (empty($members_only) ? '' : ' AND ln.id_member IN ({array_int:members_only})') . '
  1396. ORDER BY mem.lngfile',
  1397. array(
  1398. 'current_member' => $user_info['id'],
  1399. 'topic_list' => $topics,
  1400. 'notify_types' => $type == 'reply' ? '4' : '3',
  1401. 'notify_regularity' => 2,
  1402. 'is_activated' => 1,
  1403. 'members_only' => is_array($members_only) ? $members_only : array($members_only),
  1404. )
  1405. );
  1406. $sent = 0;
  1407. $current_language = '';
  1408. while ($row = $smcFunc['db_fetch_assoc']($members))
  1409. {
  1410. // Don't do the excluded...
  1411. if ($topicData[$row['id_topic']]['exclude'] == $row['id_member'])
  1412. continue;
  1413. // Easier to check this here... if they aren't the topic poster do they really want to know?
  1414. if ($type != 'reply' && $row['notify_types'] == 2 && $row['id_member'] != $row['id_member_started'])
  1415. continue;
  1416. if ($row['id_group'] != 1)
  1417. {
  1418. $allowed = explode(',', $row['member_groups']);
  1419. $row['additional_groups'] = explode(',', $row['additional_groups']);
  1420. $row['additional_groups'][] = $row['id_group'];
  1421. $row['additional_groups'][] = $row['id_post_group'];
  1422. if (count(array_intersect($allowed, $row['additional_groups'])) == 0)
  1423. continue;
  1424. }
  1425. $needed_language = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile'];
  1426. if (empty($current_language) || $current_language != $needed_language)
  1427. $current_language = loadLanguage('Post', $needed_language, false);
  1428. $message_type = 'notification_' . $type;
  1429. $replacements = array(
  1430. 'TOPICSUBJECT' => $topicData[$row['id_topic']]['subject'],
  1431. 'POSTERNAME' => un_htmlspecialchars($topicData[$row['id_topic']]['name']),
  1432. 'TOPICLINK' => $scripturl . '?topic=' . $row['id_topic'] . '.new;topicseen#new',
  1433. 'UNSUBSCRIBELINK' => $scripturl . '?action=notify;topic=' . $row['id_topic'] . '.0',
  1434. );
  1435. if ($type == 'remove')
  1436. unset($replacements['TOPICLINK'], $replacements['UNSUBSCRIBELINK']);
  1437. // Do they want the body of the message sent too?
  1438. if (!empty($row['notify_send_body']) && $type == 'reply' && empty($modSettings['disallow_sendBody']))
  1439. {
  1440. $message_type .= '_body';
  1441. $replacements['MESSAGE'] = $topicData[$row['id_topic']]['body'];
  1442. }
  1443. if (!empty($row['notify_regularity']) && $type == 'reply')
  1444. $message_type .= '_once';
  1445. // Send only if once is off or it's on and it hasn't been sent.
  1446. if ($type != 'reply' || empty($row['notify_regularity']) || empty($row['sent']))
  1447. {
  1448. $emaildata = loadEmailTemplate($message_type, $replacements, $needed_language);
  1449. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, 'm' . $topicData[$row['id_topic']]['last_id']);
  1450. $sent++;
  1451. }
  1452. }
  1453. $smcFunc['db_free_result']($members);
  1454. if (isset($current_language) && $current_language != $user_info['language'])
  1455. loadLanguage('Post');
  1456. // Sent!
  1457. if ($type == 'reply' && !empty($sent))
  1458. $smcFunc['db_query']('', '
  1459. UPDATE {db_prefix}log_notify
  1460. SET sent = {int:is_sent}
  1461. WHERE id_topic IN ({array_int:topic_list})
  1462. AND id_member != {int:current_member}',
  1463. array(
  1464. 'current_member' => $user_info['id'],
  1465. 'topic_list' => $topics,
  1466. 'is_sent' => 1,
  1467. )
  1468. );
  1469. // For approvals we need to unsend the exclusions (This *is* the quickest way!)
  1470. if (!empty($sent) && !empty($exclude))
  1471. {
  1472. foreach ($topicData as $id => $data)
  1473. if ($data['exclude'])
  1474. $smcFunc['db_query']('', '
  1475. UPDATE {db_prefix}log_notify
  1476. SET sent = {int:not_sent}
  1477. WHERE id_topic = {int:id_topic}
  1478. AND id_member = {int:id_member}',
  1479. array(
  1480. 'not_sent' => 0,
  1481. 'id_topic' => $id,
  1482. 'id_member' => $data['exclude'],
  1483. )
  1484. );
  1485. }
  1486. }
  1487. /**
  1488. * Create a post, either as new topic (id_topic = 0) or in an existing one.
  1489. * The input parameters of this function assume:
  1490. * - Strings have been escaped.
  1491. * - Integers have been cast to integer.
  1492. * - Mandatory parameters are set.
  1493. *
  1494. * @param array $msgOptions
  1495. * @param array $topicOptions
  1496. * @param array $posterOptions
  1497. */
  1498. function createPost(&$msgOptions, &$topicOptions, &$posterOptions)
  1499. {
  1500. global $user_info, $txt, $modSettings, $smcFunc, $context;
  1501. // Set optional parameters to the default value.
  1502. $msgOptions['icon'] = empty($msgOptions['icon']) ? 'xx' : $msgOptions['icon'];
  1503. $msgOptions['smileys_enabled'] = !empty($msgOptions['smileys_enabled']);
  1504. $msgOptions['attachments'] = empty($msgOptions['attachments']) ? array() : $msgOptions['attachments'];
  1505. $msgOptions['approved'] = isset($msgOptions['approved']) ? (int) $msgOptions['approved'] : 1;
  1506. $topicOptions['id'] = empty($topicOptions['id']) ? 0 : (int) $topicOptions['id'];
  1507. $topicOptions['poll'] = isset($topicOptions['poll']) ? (int) $topicOptions['poll'] : null;
  1508. $topicOptions['lock_mode'] = isset($topicOptions['lock_mode']) ? $topicOptions['lock_mode'] : null;
  1509. $topicOptions['sticky_mode'] = isset($topicOptions['sticky_mode']) ? $topicOptions['sticky_mode'] : null;
  1510. $posterOptions['id'] = empty($posterOptions['id']) ? 0 : (int) $posterOptions['id'];
  1511. $posterOptions['ip'] = empty($posterOptions['ip']) ? $user_info['ip'] : $posterOptions['ip'];
  1512. // We need to know if the topic is approved. If we're told that's great - if not find out.
  1513. if (!$modSettings['postmod_active'])
  1514. $topicOptions['is_approved'] = true;
  1515. elseif (!empty($topicOptions['id']) && !isset($topicOptions['is_approved']))
  1516. {
  1517. $request = $smcFunc['db_query']('', '
  1518. SELECT approved
  1519. FROM {db_prefix}topics
  1520. WHERE id_topic = {int:id_topic}
  1521. LIMIT 1',
  1522. array(
  1523. 'id_topic' => $topicOptions['id'],
  1524. )
  1525. );
  1526. list ($topicOptions['is_approved']) = $smcFunc['db_fetch_row']($request);
  1527. $smcFunc['db_free_result']($request);
  1528. }
  1529. // If nothing was filled in as name/e-mail address, try the member table.
  1530. if (!isset($posterOptions['name']) || $posterOptions['name'] == '' || (empty($posterOptions['email']) && !empty($posterOptions['id'])))
  1531. {
  1532. if (empty($posterOptions['id']))
  1533. {
  1534. $posterOptions['id'] = 0;
  1535. $posterOptions['name'] = $txt['guest_title'];
  1536. $posterOptions['email'] = '';
  1537. }
  1538. elseif ($posterOptions['id'] != $user_info['id'])
  1539. {
  1540. $request = $smcFunc['db_query']('', '
  1541. SELECT member_name, email_address
  1542. FROM {db_prefix}members
  1543. WHERE id_member = {int:id_member}
  1544. LIMIT 1',
  1545. array(
  1546. 'id_member' => $posterOptions['id'],
  1547. )
  1548. );
  1549. // Couldn't find the current poster?
  1550. if ($smcFunc['db_num_rows']($request) == 0)
  1551. {
  1552. trigger_error('createPost(): Invalid member id ' . $posterOptions['id'], E_USER_NOTICE);
  1553. $posterOptions['id'] = 0;
  1554. $posterOptions['name'] = $txt['guest_title'];
  1555. $posterOptions['email'] = '';
  1556. }
  1557. else
  1558. list ($posterOptions['name'], $posterOptions['email']) = $smcFunc['db_fetch_row']($request);
  1559. $smcFunc['db_free_result']($request);
  1560. }
  1561. else
  1562. {
  1563. $posterOptions['name'] = $user_info['name'];
  1564. $posterOptions['email'] = $user_info['email'];
  1565. }
  1566. }
  1567. // It's do or die time: forget any user aborts!
  1568. $previous_ignore_user_abort = ignore_user_abort(true);
  1569. $new_topic = empty($topicOptions['id']);
  1570. // Insert the post.
  1571. $smcFunc['db_insert']('',
  1572. '{db_prefix}messages',
  1573. array(
  1574. 'id_board' => 'int', 'id_topic' => 'int', 'id_member' => 'int', 'subject' => 'string-255', 'body' => (!empty($modSettings['max_messageLength']) && $modSettings['max_messageLength'] > 65534 ? 'string-' . $modSettings['max_messageLength'] : 'string-65534'),
  1575. 'poster_name' => 'string-255', 'poster_email' => 'string-255', 'poster_time' => 'int', 'poster_ip' => 'string-255',
  1576. 'smileys_enabled' => 'int', 'modified_name' => 'string', 'icon' => 'string-16', 'approved' => 'int',
  1577. ),
  1578. array(
  1579. $topicOptions['board'], $topicOptions['id'], $posterOptions['id'], $msgOptions['subject'], $msgOptions['body'],
  1580. $posterOptions['name'], $posterOptions['email'], time(), $posterOptions['ip'],
  1581. $msgOptions['smileys_enabled'] ? 1 : 0, '', $msgOptions['icon'], $msgOptions['approved'],
  1582. ),
  1583. array('id_msg')
  1584. );
  1585. $msgOptions['id'] = $smcFunc['db_insert_id']('{db_prefix}messages', 'id_msg');
  1586. // Something went wrong creating the message...
  1587. if (empty($msgOptions['id']))
  1588. return false;
  1589. // Fix the attachments.
  1590. if (!empty($msgOptions['attachments']))
  1591. $smcFunc['db_query']('', '
  1592. UPDATE {db_prefix}attachments
  1593. SET id_msg = {int:id_msg}
  1594. WHERE id_attach IN ({array_int:attachment_list})',
  1595. array(
  1596. 'attachment_list' => $msgOptions['attachments'],
  1597. 'id_msg' => $msgOptions['id'],
  1598. )
  1599. );
  1600. // Insert a new topic (if the topicID was left empty.)
  1601. if ($new_topic)
  1602. {
  1603. $smcFunc['db_insert']('',
  1604. '{db_prefix}topics',
  1605. array(
  1606. 'id_board' => 'int', 'id_member_started' => 'int', 'id_member_updated' => 'int', 'id_first_msg' => 'int',
  1607. 'id_last_msg' => 'int', 'locked' => 'int', 'is_sticky' => 'int', 'num_views' => 'int',
  1608. 'id_poll' => 'int', 'unapproved_posts' => 'int', 'approved' => 'int',
  1609. ),
  1610. array(
  1611. $topicOptions['board'], $posterOptions['id'], $posterOptions['id'], $msgOptions['id'],
  1612. $msgOptions['id'], $topicOptions['lock_mode'] === null ? 0 : $topicOptions['lock_mode'], $topicOptions['sticky_mode'] === null ? 0 : $topicOptions['sticky_mode'], 0,
  1613. $topicOptions['poll'] === null ? 0 : $topicOptions['poll'], $msgOptions['approved'] ? 0 : 1, $msgOptions['approved'],
  1614. ),
  1615. array('id_topic')
  1616. );
  1617. $topicOptions['id'] = $smcFunc['db_insert_id']('{db_prefix}topics', 'id_topic');
  1618. // The topic couldn't be created for some reason.
  1619. if (empty($topicOptions['id']))
  1620. {
  1621. // We should delete the post that did work, though...
  1622. $smcFunc['db_query']('', '
  1623. DELETE FROM {db_prefix}messages
  1624. WHERE id_msg = {int:id_msg}',
  1625. array(
  1626. 'id_msg' => $msgOptions['id'],
  1627. )
  1628. );
  1629. return false;
  1630. }
  1631. // Fix the message with the topic.
  1632. $smcFunc['db_query']('', '
  1633. UPDATE {db_prefix}messages
  1634. SET id_topic = {int:id_topic}
  1635. WHERE id_msg = {int:id_msg}',
  1636. array(
  1637. 'id_topic' => $topicOptions['id'],
  1638. 'id_msg' => $msgOptions['id'],
  1639. )
  1640. );
  1641. // There's been a new topic AND a new post today.
  1642. trackStats(array('topics' => '+', 'posts' => '+'));
  1643. updateStats('topic', true);
  1644. updateStats('subject', $topicOptions['id'], $msgOptions['subject']);
  1645. // What if we want to export new topics out to a CMS?
  1646. call_integration_hook('integrate_create_topic', array($msgOptions, $topicOptions, $posterOptions));
  1647. }
  1648. // The topic already exists, it only needs a little updating.
  1649. else
  1650. {
  1651. $countChange = $msgOptions['approved'] ? 'num_replies = num_replies + 1' : 'unapproved_posts = unapproved_posts + 1';
  1652. // Update the number of replies and the lock/sticky status.
  1653. $smcFunc['db_query']('', '
  1654. UPDATE {db_prefix}topics
  1655. SET
  1656. ' . ($msgOptions['approved'] ? 'id_member_updated = {int:poster_id}, id_last_msg = {int:id_msg},' : '') . '
  1657. ' . $countChange . ($topicOptions['lock_mode'] === null ? '' : ',
  1658. locked = {int:locked}') . ($topicOptions['sticky_mode'] === null ? '' : ',
  1659. is_sticky = {int:is_sticky}') . '
  1660. WHERE id_topic = {int:id_topic}',
  1661. array(
  1662. 'poster_id' => $posterOptions['id'],
  1663. 'id_msg' => $msgOptions['id'],
  1664. 'locked' => $topicOptions['lock_mode'],
  1665. 'is_sticky' => $topicOptions['sticky_mode'],
  1666. 'id_topic' => $topicOptions['id'],
  1667. )
  1668. );
  1669. // One new post has been added today.
  1670. trackStats(array('posts' => '+'));
  1671. }
  1672. // Creating is modifying...in a way.
  1673. // @todo Why not set id_msg_modified on the insert?
  1674. $smcFunc['db_query']('', '
  1675. UPDATE {db_prefix}messages
  1676. SET id_msg_modified = {int:id_msg}
  1677. WHERE id_msg = {int:id_msg}',
  1678. array(
  1679. 'id_msg' => $msgOptions['id'],
  1680. )
  1681. );
  1682. // Increase the number of posts and topics on the board.
  1683. if ($msgOptions['approved'])
  1684. $smcFunc['db_query']('', '
  1685. UPDATE {db_prefix}boards
  1686. SET num_posts = num_posts + 1' . ($new_topic ? ', num_topics = num_topics + 1' : '') . '
  1687. WHERE id_board = {int:id_board}',
  1688. array(
  1689. 'id_board' => $topicOptions['board'],
  1690. )
  1691. );
  1692. else
  1693. {
  1694. $smcFunc['db_query']('', '
  1695. UPDATE {db_prefix}boards
  1696. SET unapproved_posts = unapproved_posts + 1' . ($new_topic ? ', unapproved_topics = unapproved_topics + 1' : '') . '
  1697. WHERE id_board = {int:id_board}',
  1698. array(
  1699. 'id_board' => $topicOptions['board'],
  1700. )
  1701. );
  1702. // Add to the approval queue too.
  1703. $smcFunc['db_insert']('',
  1704. '{db_prefix}approval_queue',
  1705. array(
  1706. 'id_msg' => 'int',
  1707. ),
  1708. array(
  1709. $msgOptions['id'],
  1710. ),
  1711. array()
  1712. );
  1713. }
  1714. // Mark inserted topic as read (only for the user calling this function).
  1715. if (!empty($topicOptions['mark_as_read']) && !$user_info['is_guest'])
  1716. {
  1717. // Since it's likely they *read* it before replying, let's try an UPDATE first.
  1718. if (!$new_topic)
  1719. {
  1720. $smcFunc['db_query']('', '
  1721. UPDATE {db_prefix}log_topics
  1722. SET id_msg = {int:id_msg}
  1723. WHERE id_member = {int:current_member}
  1724. AND id_topic = {int:id_topic}',
  1725. array(
  1726. 'current_member' => $posterOptions['id'],
  1727. 'id_msg' => $msgOptions['id'],
  1728. 'id_topic' => $topicOptions['id'],
  1729. )
  1730. );
  1731. $flag = $smcFunc['db_affected_rows']() != 0;
  1732. }
  1733. if (empty($flag))
  1734. {
  1735. $smcFunc['db_insert']('ignore',
  1736. '{db_prefix}log_topics',
  1737. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  1738. array($topicOptions['id'], $posterOptions['id'], $msgOptions['id']),
  1739. array('id_topic', 'id_member')
  1740. );
  1741. }
  1742. }
  1743. // If there's a custom search index, it needs updating...
  1744. if (!empty($modSettings['search_custom_index_config']))
  1745. {
  1746. $customIndexSettings = unserialize($modSettings['search_custom_index_config']);
  1747. $inserts = array();
  1748. foreach (text2words($msgOptions['body'], $customIndexSettings['bytes_per_word'], true) as $word)
  1749. $inserts[] = array($word, $msgOptions['id']);
  1750. if (!empty($inserts))
  1751. $smcFunc['db_insert']('ignore',
  1752. '{db_prefix}log_search_words',
  1753. array('id_word' => 'int', 'id_msg' => 'int'),
  1754. $inserts,
  1755. array('id_word', 'id_msg')
  1756. );
  1757. }
  1758. // Increase the post counter for the user that created the post.
  1759. if (!empty($posterOptions['update_post_count']) && !empty($posterOptions['id']) && $msgOptions['approved'])
  1760. {
  1761. // Are you the one that happened to create this post?
  1762. if ($user_info['id'] == $posterOptions['id'])
  1763. $user_info['posts']++;
  1764. updateMemberData($posterOptions['id'], array('posts' => '+'));
  1765. }
  1766. // They've posted, so they can make the view count go up one if they really want. (this is to keep views >= replies...)
  1767. $_SESSION['last_read_topic'] = 0;
  1768. // Better safe than sorry.
  1769. if (isset($_SESSION['topicseen_cache'][$topicOptions['board']]))
  1770. $_SESSION['topicseen_cache'][$topicOptions['board']]--;
  1771. // Update all the stats so everyone knows about this new topic and message.
  1772. updateStats('message', true, $msgOptions['id']);
  1773. // Update the last message on the board assuming it's approved AND the topic is.
  1774. if ($msgOptions['approved'])
  1775. updateLastMessages($topicOptions['board'], $new_topic || !empty($topicOptions['is_approved']) ? $msgOptions['id'] : 0);
  1776. // Alright, done now... we can abort now, I guess... at least this much is done.
  1777. ignore_user_abort($previous_ignore_user_abort);
  1778. // Success.
  1779. return true;
  1780. }
  1781. /**
  1782. * Create an attachment, with the given array of parameters.
  1783. * - Adds any addtional or missing parameters to $attachmentOptions.
  1784. * - Renames the temporary file.
  1785. * - Creates a thumbnail if the file is an image and the option enabled.
  1786. *
  1787. * @param array $attachmentOptions
  1788. */
  1789. function createAttachment(&$attachmentOptions)
  1790. {
  1791. global $modSettings, $sourcedir, $smcFunc, $context;
  1792. global $txt, $boarddir;
  1793. require_once($sourcedir . '/Subs-Graphics.php');
  1794. if (!empty($modSettings['currentAttachmentUploadDir']))
  1795. $id_folder = $modSettings['currentAttachmentUploadDir'];
  1796. else
  1797. $id_folder = 1;
  1798. // These are the only valid image types for SMF.
  1799. $validImageTypes = array(
  1800. 1 => 'gif',
  1801. 2 => 'jpeg',
  1802. 3 => 'png',
  1803. 5 => 'psd',
  1804. 6 => 'bmp',
  1805. 7 => 'tiff',
  1806. 8 => 'tiff',
  1807. 9 => 'jpeg',
  1808. 14 => 'iff'
  1809. );
  1810. // If this is an image we need to set a few additional parameters.
  1811. $size = @getimagesize($attachmentOptions['tmp_name']);
  1812. list ($attachmentOptions['width'], $attachmentOptions['height']) = $size;
  1813. // If it's an image get the mime type right.
  1814. if (empty($attachmentOptions['mime_type']) && $attachmentOptions['width'])
  1815. {
  1816. // Got a proper mime type?
  1817. if (!empty($size['mime']))
  1818. $attachmentOptions['mime_type'] = $size['mime'];
  1819. // Otherwise a valid one?
  1820. elseif (isset($validImageTypes[$size[2]]))
  1821. $attachmentOptions['mime_type'] = 'image/' . $validImageTypes[$size[2]];
  1822. }
  1823. // Get the hash if no hash has been given yet.
  1824. if (empty($attachmentOptions['file_hash']))
  1825. $attachmentOptions['file_hash'] = getAttachmentFilename($attachmentOptions['name'], false, null, true);
  1826. // Assuming no-one set the extension let's take a look at it.
  1827. if (empty($attachmentOptions['fileext']))
  1828. {
  1829. $attachmentOptions['fileext'] = strtolower(strrpos($attachmentOptions['name'], '.') !== false ? substr($attachmentOptions['name'], strrpos($attachmentOptions['name'], '.') + 1) : '');
  1830. if (strlen($attachmentOptions['fileext']) > 8 || '.' . $attachmentOptions['fileext'] == $attachmentOptions['name'])
  1831. $attachmentOptions['fileext'] = '';
  1832. }
  1833. $smcFunc['db_insert']('',
  1834. '{db_prefix}attachments',
  1835. array(
  1836. 'id_folder' => 'int', 'id_msg' => 'int', 'filename' => 'string-255', 'file_hash' => 'string-40', 'fileext' => 'string-8',
  1837. 'size' => 'int', 'width' => 'int', 'height' => 'int',
  1838. 'mime_type' => 'string-20', 'approved' => 'int',
  1839. ),
  1840. array(
  1841. $id_folder, (int) $attachmentOptions['post'], $attachmentOptions['name'], $attachmentOptions['file_hash'], $attachmentOptions['fileext'],
  1842. (int) $attachmentOptions['size'], (empty($attachmentOptions['width']) ? 0 : (int) $attachmentOptions['width']), (empty($attachmentOptions['height']) ? '0' : (int) $attachmentOptions['height']),
  1843. (!empty($attachmentOptions['mime_type']) ? $attachmentOptions['mime_type'] : ''), (int) $attachmentOptions['approved'],
  1844. ),
  1845. array('id_attach')
  1846. );
  1847. $attachmentOptions['id'] = $smcFunc['db_insert_id']('{db_prefix}attachments', 'id_attach');
  1848. // @todo Add an error here maybe?
  1849. if (empty($attachmentOptions['id']))
  1850. return false;
  1851. // Now that we have the attach id, let's rename this sucker and finish up.
  1852. $attachmentOptions['destination'] = getAttachmentFilename(basename($attachmentOptions['name']), $attachmentOptions['id'], $id_folder, false, $attachmentOptions['file_hash']);
  1853. rename($attachmentOptions['tmp_name'], $attachmentOptions['destination']);
  1854. // If it's not approved then add to the approval queue.
  1855. if (!$attachmentOptions['approved'])
  1856. $smcFunc['db_insert']('',
  1857. '{db_prefix}approval_queue',
  1858. array(
  1859. 'id_attach' => 'int', 'id_msg' => 'int',
  1860. ),
  1861. array(
  1862. $attachmentOptions['id'], (int) $attachmentOptions['post'],
  1863. ),
  1864. array()
  1865. );
  1866. if (empty($modSettings['attachmentThumbnails']) || (empty($attachmentOptions['width']) && empty($attachmentOptions['height'])))
  1867. return true;
  1868. // Like thumbnails, do we?
  1869. if (!empty($modSettings['attachmentThumbWidth']) && !empty($modSettings['attachmentThumbHeight']) && ($attachmentOptions['width'] > $modSettings['attachmentThumbWidth'] || $attachmentOptions['height'] > $modSettings['attachmentThumbHeight']))
  1870. {
  1871. if (createThumbnail($attachmentOptions['destination'], $modSettings['attachmentThumbWidth'], $modSettings['attachmentThumbHeight']))
  1872. {
  1873. // Figure out how big we actually made it.
  1874. $size = @getimagesize($attachmentOptions['destination'] . '_thumb');
  1875. list ($thumb_width, $thumb_height) = $size;
  1876. if (!empty($size['mime']))
  1877. $thumb_mime = $size['mime'];
  1878. elseif (isset($validImageTypes[$size[2]]))
  1879. $thumb_mime = 'image/' . $validImageTypes[$size[2]];
  1880. // Lord only knows how this happened...
  1881. else
  1882. $thumb_mime = '';
  1883. $thumb_filename = $attachmentOptions['name'] . '_thumb';
  1884. $thumb_size = filesize($attachmentOptions['destination'] . '_thumb');
  1885. $thumb_file_hash = getAttachmentFilename($thumb_filename, false, null, true);
  1886. // To the database we go!
  1887. $smcFunc['db_insert']('',
  1888. '{db_prefix}attachments',
  1889. array(
  1890. 'id_folder' => 'int', 'id_msg' => 'int', 'attachment_type' => 'int', 'filename' => 'string-255', 'file_hash' => 'string-40', 'fileext' => 'string-8',
  1891. 'size' => 'int', 'width' => 'int', 'height' => 'int', 'mime_type' => 'string-20', 'approved' => 'int',
  1892. ),
  1893. array(
  1894. $id_folder, (int) $attachmentOptions['post'], 3, $thumb_filename, $thumb_file_hash, $attachmentOptions['fileext'],
  1895. $thumb_size, $thumb_width, $thumb_height, $thumb_mime, (int) $attachmentOptions['approved'],
  1896. ),
  1897. array('id_attach')
  1898. );
  1899. $attachmentOptions['thumb'] = $smcFunc['db_insert_id']('{db_prefix}attachments', 'id_attach');
  1900. if (!empty($attachmentOptions['thumb']))
  1901. {
  1902. $smcFunc['db_query']('', '
  1903. UPDATE {db_prefix}attachments
  1904. SET id_thumb = {int:id_thumb}
  1905. WHERE id_attach = {int:id_attach}',
  1906. array(
  1907. 'id_thumb' => $attachmentOptions['thumb'],
  1908. 'id_attach' => $attachmentOptions['id'],
  1909. )
  1910. );
  1911. rename($attachmentOptions['destination'] . '_thumb', getAttachmentFilename($thumb_filename, $attachmentOptions['thumb'], $id_folder, false, $thumb_file_hash));
  1912. }
  1913. }
  1914. }
  1915. return true;
  1916. }
  1917. /**
  1918. * Performs various checks on an uploaded file.
  1919. * - Requires that $_SESSION['temp_attachments'][$attachID] be properly populated.
  1920. *
  1921. * @param $attachID
  1922. */
  1923. function attachmentChecks($attachID)
  1924. {
  1925. global $modSettings, $context, $sourcedir, $smcFunc;
  1926. // No data or missing data .... Not necessarily needed, but in case a mod author missed something.
  1927. if ( empty($_SESSION['temp_attachments'][$attachID]))
  1928. $errror = '$_SESSION[\'temp_attachments\'][$attachID]';
  1929. elseif (empty($attachID))
  1930. $errror = '$attachID';
  1931. elseif (empty($context['attachments']))
  1932. $errror = '$context[\'attachments\']';
  1933. elseif (empty($context['attach_dir']))
  1934. $errror = '$context[\'attach_dir\']';
  1935. // Let's get their attention.
  1936. if (!empty($error))
  1937. fatal_lang_error('attach_check_nag', 'debug', array($error));
  1938. // These are the only valid image types for SMF.
  1939. $validImageTypes = array(
  1940. 1 => 'gif',
  1941. 2 => 'jpeg',
  1942. 3 => 'png',
  1943. 5 => 'psd',
  1944. 6 => 'bmp',
  1945. 7 => 'tiff',
  1946. 8 => 'tiff',
  1947. 9 => 'jpeg',
  1948. 14 => 'iff'
  1949. );
  1950. // Just in case this slipped by the first checks, we stop it here and now
  1951. if ($_SESSION['temp_attachments'][$attachID]['size'] == 0)
  1952. {
  1953. $_SESSION['temp_attachments'][$attachID]['errors'][] = 'attach_0_byte_file';
  1954. return false;
  1955. }
  1956. // First, the dreaded security check. Sorry folks, but this can't be avoided
  1957. $size = @getimagesize($_SESSION['temp_attachments'][$attachID]['tmp_name']);
  1958. if (isset($validImageTypes[$size[2]]))
  1959. {
  1960. require_once($sourcedir . '/Subs-Graphics.php');
  1961. if (!checkImageContents($_SESSION['temp_attachments'][$attachID]['tmp_name'], !empty($modSettings['attachment_image_paranoid'])))
  1962. {
  1963. // It's bad. Last chance, maybe we can re-encode it?
  1964. if (empty($modSettings['attachment_image_reencode']) || (!reencodeImage($_SESSION['temp_attachments'][$attachID]['tmp_name'], $size[2])))
  1965. {
  1966. // Nothing to do: not allowed or not successful re-encoding it.
  1967. $_SESSION['temp_attachments'][$attachID]['errors'][] = 'bad_attachment';
  1968. return false;
  1969. }
  1970. // Success! However, successes usually come for a price:
  1971. // we might get a new format for our image...
  1972. $old_format = $size[2];
  1973. $size = @getimagesize($attachmentOptions['tmp_name']);
  1974. if (!(empty($size)) && ($size[2] != $old_format))
  1975. {
  1976. if (isset($validImageTypes[$size[2]]))
  1977. $_SESSION['temp_attachments'][$attachID]['type'] = 'image/' . $validImageTypes[$size[2]];
  1978. }
  1979. }
  1980. }
  1981. if (!empty($modSettings['attachmentDirSizeLimit']))
  1982. {
  1983. // Check the folder size if it hasn't been done already.
  1984. if (!isset($context['dir_size']))
  1985. {
  1986. $request = $smcFunc['db_query']('', '
  1987. SELECT SUM(size)
  1988. FROM {db_prefix}attachments',
  1989. array(
  1990. )
  1991. );
  1992. list ($context['dir_size']) = $smcFunc['db_fetch_row']($request);
  1993. $smcFunc['db_free_result']($request);
  1994. }
  1995. $context['dir_size'] += $_SESSION['temp_attachments'][$attachID]['size'];
  1996. // Soon to be too big - warn the admins...
  1997. if (empty($modSettings['attachment_full_notified']) && $modSettings['attachmentDirSizeLimit'] > 4000 && $context['dir_size'] > ($modSettings['attachmentDirSizeLimit'] - 2000) * 1024)
  1998. {
  1999. require_once($sourcedir . '/Subs-Admin.php');
  2000. emailAdmins('admin_attachments_full');
  2001. updateSettings(array('attachment_full_notified' => 1));
  2002. }
  2003. // Too big! Maybe you could zip it or something...
  2004. if ($context['dir_size'] > $modSettings['attachmentDirSizeLimit'] * 1024)
  2005. $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space';
  2006. }
  2007. // Is the file too big?
  2008. $context['attachments']['total_size'] += $_SESSION['temp_attachments'][$attachID]['size'];
  2009. if (!empty($modSettings['attachmentSizeLimit']) && $_SESSION['temp_attachments'][$attachID]['size'] > $modSettings['attachmentSizeLimit'] * 1024)
  2010. $_SESSION['temp_attachments'][$attachID]['errors'][] = array('file_too_big', array(comma_format($modSettings['attachmentSizeLimit'], 0)));
  2011. // Check the total upload size for this post...
  2012. if (!empty($modSettings['attachmentPostLimit']) && $context['attachments']['total_size'] > $modSettings['attachmentPostLimit'] * 1024)
  2013. $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attach_max_total_file_size', array(comma_format($modSettings['attachmentPostLimit'], 0), comma_format($modSettings['attachmentPostLimit'] - (($context['attachments']['total_size'] - $_SESSION['temp_attachments'][$attachID]['size']) / 1024), 0)));
  2014. // Have we reached the maximum number of files we are allowed?
  2015. $context['attachments']['quantity']++;
  2016. // Set a max limit if none exists
  2017. if (empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] >= 50)
  2018. $modSettings['attachmentNumPerPostLimit'] = 50;
  2019. if (!empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] > $modSettings['attachmentNumPerPostLimit'])
  2020. $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attachments_limit_per_post', array($modSettings['attachmentNumPerPostLimit']));
  2021. // File extension check
  2022. if (!empty($modSettings['attachmentCheckExtensions']))
  2023. {
  2024. $allowed = explode(',', strtolower($modSettings['attachmentExtensions']));
  2025. foreach ($allowed as $k => $dummy)
  2026. $allowed[$k] = trim($dummy);
  2027. if (!in_array(strtolower(substr(strrchr($_SESSION['temp_attachments'][$attachID]['name'], '.'), 1)), $allowed))
  2028. {
  2029. $allowed_extensions = strtr(strtolower($modSettings['attachmentExtensions']), array(',' => ', '));
  2030. $_SESSION['temp_attachments'][$attachID]['errors'][] = array('cant_upload_type', array($allowed_extensions));
  2031. }
  2032. }
  2033. // back up to the previous one if there's been an error.
  2034. if (!empty($_SESSION['temp_attachments'][$attachID]['errors']))
  2035. {
  2036. $context['dir_size'] -= $_SESSION['temp_attachments'][$attachID]['size'];
  2037. $context['attachments']['total_size'] -= $_SESSION['temp_attachments'][$attachID]['size'];
  2038. $context['attachments']['quantity']--;
  2039. return false;
  2040. }
  2041. return true;
  2042. }
  2043. /**
  2044. * Modifying a post...
  2045. *
  2046. * @param array &$msgOptions
  2047. * @param array &$topicOptions
  2048. * @param array &$posterOptions
  2049. */
  2050. function modifyPost(&$msgOptions, &$topicOptions, &$posterOptions)
  2051. {
  2052. global $user_info, $modSettings, $smcFunc, $context;
  2053. $topicOptions['poll'] = isset($topicOptions['poll']) ? (int) $topicOptions['poll'] : null;
  2054. $topicOptions['lock_mode'] = isset($topicOptions['lock_mode']) ? $topicOptions['lock_mode'] : null;
  2055. $topicOptions['sticky_mode'] = isset($topicOptions['sticky_mode']) ? $topicOptions['sticky_mode'] : null;
  2056. // This is longer than it has to be, but makes it so we only set/change what we have to.
  2057. $messages_columns = array();
  2058. if (isset($posterOptions['name']))
  2059. $messages_columns['poster_name'] = $posterOptions['name'];
  2060. if (isset($posterOptions['email']))
  2061. $messages_columns['poster_email'] = $posterOptions['email'];
  2062. if (isset($msgOptions['icon']))
  2063. $messages_columns['icon'] = $msgOptions['icon'];
  2064. if (isset($msgOptions['subject']))
  2065. $messages_columns['subject'] = $msgOptions['subject'];
  2066. if (isset($msgOptions['body']))
  2067. {
  2068. $messages_columns['body'] = $msgOptions['body'];
  2069. // using a custom search index, then lets get the old message so we can update our index as needed
  2070. if (!empty($modSettings['search_custom_index_config']))
  2071. {
  2072. $request = $smcFunc['db_query']('', '
  2073. SELECT body
  2074. FROM {db_prefix}messages
  2075. WHERE id_msg = {int:id_msg}',
  2076. array(
  2077. 'id_msg' => $msgOptions['id'],
  2078. )
  2079. );
  2080. list ($msgOptions['old_body']) = $smcFunc['db_fetch_row']($request);
  2081. $smcFunc['db_free_result']($request);
  2082. }
  2083. }
  2084. if (!empty($msgOptions['modify_time']))
  2085. {
  2086. $messages_columns['modified_time'] = $msgOptions['modify_time'];
  2087. $messages_columns['modified_name'] = $msgOptions['modify_name'];
  2088. $messages_columns['id_msg_modified'] = $modSettings['maxMsgID'];
  2089. }
  2090. if (isset($msgOptions['smileys_enabled']))
  2091. $messages_columns['smileys_enabled'] = empty($msgOptions['smileys_enabled']) ? 0 : 1;
  2092. // Which columns need to be ints?
  2093. $messageInts = array('modified_time', 'id_msg_modified', 'smileys_enabled');
  2094. $update_parameters = array(
  2095. 'id_msg' => $msgOptions['id'],
  2096. );
  2097. foreach ($messages_columns as $var => $val)
  2098. {
  2099. $messages_columns[$var] = $var . ' = {' . (in_array($var, $messageInts) ? 'int' : 'string') . ':var_' . $var . '}';
  2100. $update_parameters['var_' . $var] = $val;
  2101. }
  2102. // Nothing to do?
  2103. if (empty($messages_columns))
  2104. return true;
  2105. // Change the post.
  2106. $smcFunc['db_query']('', '
  2107. UPDATE {db_prefix}messages
  2108. SET ' . implode(', ', $messages_columns) . '
  2109. WHERE id_msg = {int:id_msg}',
  2110. $update_parameters
  2111. );
  2112. // Lock and or sticky the post.
  2113. if ($topicOptions['sticky_mode'] !== null || $topicOptions['lock_mode'] !== null || $topicOptions['poll'] !== null)
  2114. {
  2115. $smcFunc['db_query']('', '
  2116. UPDATE {db_prefix}topics
  2117. SET
  2118. is_sticky = {raw:is_sticky},
  2119. locked = {raw:locked},
  2120. id_poll = {raw:id_poll}
  2121. WHERE id_topic = {int:id_topic}',
  2122. array(
  2123. 'is_sticky' => $topicOptions['sticky_mode'] === null ? 'is_sticky' : (int) $topicOptions['sticky_mode'],
  2124. 'locked' => $topicOptions['lock_mode'] === null ? 'locked' : (int) $topicOptions['lock_mode'],
  2125. 'id_poll' => $topicOptions['poll'] === null ? 'id_poll' : (int) $topicOptions['poll'],
  2126. 'id_topic' => $topicOptions['id'],
  2127. )
  2128. );
  2129. }
  2130. // Mark the edited post as read.
  2131. if (!empty($topicOptions['mark_as_read']) && !$user_info['is_guest'])
  2132. {
  2133. // Since it's likely they *read* it before editing, let's try an UPDATE first.
  2134. $smcFunc['db_query']('', '
  2135. UPDATE {db_prefix}log_topics
  2136. SET id_msg = {int:id_msg}
  2137. WHERE id_member = {int:current_member}
  2138. AND id_topic = {int:id_topic}',
  2139. array(
  2140. 'current_member' => $user_info['id'],
  2141. 'id_msg' => $modSettings['maxMsgID'],
  2142. 'id_topic' => $topicOptions['id'],
  2143. )
  2144. );
  2145. $flag = $smcFunc['db_affected_rows']() != 0;
  2146. if (empty($flag))
  2147. {
  2148. $smcFunc['db_insert']('ignore',
  2149. '{db_prefix}log_topics',
  2150. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  2151. array($topicOptions['id'], $user_info['id'], $modSettings['maxMsgID']),
  2152. array('id_topic', 'id_member')
  2153. );
  2154. }
  2155. }
  2156. // If there's a custom search index, it needs to be modified...
  2157. if (isset($msgOptions['body']) && !empty($modSettings['search_custom_index_config']))
  2158. {
  2159. $customIndexSettings = unserialize($modSettings['search_custom_index_config']);
  2160. $stopwords = empty($modSettings['search_stopwords']) ? array() : explode(',', $modSettings['search_stopwords']);
  2161. $old_body = isset($msgOptions['old_body']) ? $msgOptions['old_body'] : '';
  2162. $old_index = text2words($old_body, $customIndexSettings['bytes_per_word'], true);
  2163. $new_index = text2words($msgOptions['body'], $customIndexSettings['bytes_per_word'], true);
  2164. // Calculate the words to be added and removed from the index.
  2165. $removed_words = array_diff(array_diff($old_index, $new_index), $stopwords);
  2166. $inserted_words = array_diff(array_diff($new_index, $old_index), $stopwords);
  2167. // Delete the removed words AND the added ones to avoid key constraints.
  2168. if (!empty($removed_words))
  2169. {
  2170. $removed_words = array_merge($removed_words, $inserted_words);
  2171. $smcFunc['db_query']('', '
  2172. DELETE FROM {db_prefix}log_search_words
  2173. WHERE id_msg = {int:id_msg}
  2174. AND id_word IN ({array_int:removed_words})',
  2175. array(
  2176. 'removed_words' => $removed_words,
  2177. 'id_msg' => $msgOptions['id'],
  2178. )
  2179. );
  2180. }
  2181. // Add the new words to be indexed.
  2182. if (!empty($inserted_words))
  2183. {
  2184. $inserts = array();
  2185. foreach ($inserted_words as $word)
  2186. $inserts[] = array($word, $msgOptions['id']);
  2187. $smcFunc['db_insert']('insert',
  2188. '{db_prefix}log_search_words',
  2189. array('id_word' => 'string', 'id_msg' => 'int'),
  2190. $inserts,
  2191. array('id_word', 'id_msg')
  2192. );
  2193. }
  2194. }
  2195. if (isset($msgOptions['subject']))
  2196. {
  2197. // Only update the subject if this was the first message in the topic.
  2198. $request = $smcFunc['db_query']('', '
  2199. SELECT id_topic
  2200. FROM {db_prefix}topics
  2201. WHERE id_first_msg = {int:id_first_msg}
  2202. LIMIT 1',
  2203. array(
  2204. 'id_first_msg' => $msgOptions['id'],
  2205. )
  2206. );
  2207. if ($smcFunc['db_num_rows']($request) == 1)
  2208. updateStats('subject', $topicOptions['id'], $msgOptions['subject']);
  2209. $smcFunc['db_free_result']($request);
  2210. }
  2211. // Finally, if we are setting the approved state we need to do much more work :(
  2212. if ($modSettings['postmod_active'] && isset($msgOptions['approved']))
  2213. approvePosts($msgOptions['id'], $msgOptions['approved']);
  2214. return true;
  2215. }
  2216. /**
  2217. * Approve (or not) some posts... without permission checks...
  2218. *
  2219. * @param array $msgs - array of message ids
  2220. * @param bool $approve = true
  2221. */
  2222. function approvePosts($msgs, $approve = true)
  2223. {
  2224. global $sourcedir, $smcFunc;
  2225. if (!is_array($msgs))
  2226. $msgs = array($msgs);
  2227. if (empty($msgs))
  2228. return false;
  2229. // May as well start at the beginning, working out *what* we need to change.
  2230. $request = $smcFunc['db_query']('', '
  2231. SELECT m.id_msg, m.approved, m.id_topic, m.id_board, t.id_first_msg, t.id_last_msg,
  2232. m.body, m.subject, IFNULL(mem.real_name, m.poster_name) AS poster_name, m.id_member,
  2233. t.approved AS topic_approved, b.count_posts
  2234. FROM {db_prefix}messages AS m
  2235. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic)
  2236. INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board)
  2237. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
  2238. WHERE m.id_msg IN ({array_int:message_list})
  2239. AND m.approved = {int:approved_state}',
  2240. array(
  2241. 'message_list' => $msgs,
  2242. 'approved_state' => $approve ? 0 : 1,
  2243. )
  2244. );
  2245. $msgs = array();
  2246. $topics = array();
  2247. $topic_changes = array();
  2248. $board_changes = array();
  2249. $notification_topics = array();
  2250. $notification_posts = array();
  2251. $member_post_changes = array();
  2252. while ($row = $smcFunc['db_fetch_assoc']($request))
  2253. {
  2254. // Easy...
  2255. $msgs[] = $row['id_msg'];
  2256. $topics[] = $row['id_topic'];
  2257. // Ensure our change array exists already.
  2258. if (!isset($topic_changes[$row['id_topic']]))
  2259. $topic_changes[$row['id_topic']] = array(
  2260. 'id_last_msg' => $row['id_last_msg'],
  2261. 'approved' => $row['topic_approved'],
  2262. 'replies' => 0,
  2263. 'unapproved_posts' => 0,
  2264. );
  2265. if (!isset($board_changes[$row['id_board']]))
  2266. $board_changes[$row['id_board']] = array(
  2267. 'posts' => 0,
  2268. 'topics' => 0,
  2269. 'unapproved_posts' => 0,
  2270. 'unapproved_topics' => 0,
  2271. );
  2272. // If it's the first message then the topic state changes!
  2273. if ($row['id_msg'] == $row['id_first_msg'])
  2274. {
  2275. $topic_changes[$row['id_topic']]['approved'] = $approve ? 1 : 0;
  2276. $board_changes[$row['id_board']]['unapproved_topics'] += $approve ? -1 : 1;
  2277. $board_changes[$row['id_board']]['topics'] += $approve ? 1 : -1;
  2278. // Note we need to ensure we announce this topic!
  2279. $notification_topics[] = array(
  2280. 'body' => $row['body'],
  2281. 'subject' => $row['subject'],
  2282. 'name' => $row['poster_name'],
  2283. 'board' => $row['id_board'],
  2284. 'topic' => $row['id_topic'],
  2285. 'msg' => $row['id_first_msg'],
  2286. 'poster' => $row['id_member'],
  2287. );
  2288. }
  2289. else
  2290. {
  2291. $topic_changes[$row['id_topic']]['replies'] += $approve ? 1 : -1;
  2292. // This will be a post... but don't notify unless it's not followed by approved ones.
  2293. if ($row['id_msg'] > $row['id_last_msg'])
  2294. $notification_posts[$row['id_topic']][] = array(
  2295. 'id' => $row['id_msg'],
  2296. 'body' => $row['body'],
  2297. 'subject' => $row['subject'],
  2298. 'name' => $row['poster_name'],
  2299. 'topic' => $row['id_topic'],
  2300. );
  2301. }
  2302. // If this is being approved and id_msg is higher than the current id_last_msg then it changes.
  2303. if ($approve && $row['id_msg'] > $topic_changes[$row['id_topic']]['id_last_msg'])
  2304. $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_msg'];
  2305. // If this is being unapproved, and it's equal to the id_last_msg we need to find a new one!
  2306. elseif (!$approve)
  2307. // Default to the first message and then we'll override in a bit ;)
  2308. $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_first_msg'];
  2309. $topic_changes[$row['id_topic']]['unapproved_posts'] += $approve ? -1 : 1;
  2310. $board_changes[$row['id_board']]['unapproved_posts'] += $approve ? -1 : 1;
  2311. $board_changes[$row['id_board']]['posts'] += $approve ? 1 : -1;
  2312. // Post count for the user?
  2313. if ($row['id_member'] && empty($row['count_posts']))
  2314. $member_post_changes[$row['id_member']] = isset($member_post_changes[$row['id_member']]) ? $member_post_changes[$row['id_member']] + 1 : 1;
  2315. }
  2316. $smcFunc['db_free_result']($request);
  2317. if (empty($msgs))
  2318. return;
  2319. // Now we have the differences make the changes, first the easy one.
  2320. $smcFunc['db_query']('', '
  2321. UPDATE {db_prefix}messages
  2322. SET approved = {int:approved_state}
  2323. WHERE id_msg IN ({array_int:message_list})',
  2324. array(
  2325. 'message_list' => $msgs,
  2326. 'approved_state' => $approve ? 1 : 0,
  2327. )
  2328. );
  2329. // If we were unapproving find the last msg in the topics...
  2330. if (!$approve)
  2331. {
  2332. $request = $smcFunc['db_query']('', '
  2333. SELECT id_topic, MAX(id_msg) AS id_last_msg
  2334. FROM {db_prefix}messages
  2335. WHERE id_topic IN ({array_int:topic_list})
  2336. AND approved = {int:approved}
  2337. GROUP BY id_topic',
  2338. array(
  2339. 'topic_list' => $topics,
  2340. 'approved' => 1,
  2341. )
  2342. );
  2343. while ($row = $smcFunc['db_fetch_assoc']($request))
  2344. $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_last_msg'];
  2345. $smcFunc['db_free_result']($request);
  2346. }
  2347. // ... next the topics...
  2348. foreach ($topic_changes as $id => $changes)
  2349. $smcFunc['db_query']('', '
  2350. UPDATE {db_prefix}topics
  2351. SET approved = {int:approved}, unapproved_posts = unapproved_posts + {int:unapproved_posts},
  2352. num_replies = num_replies + {int:num_replies}, id_last_msg = {int:id_last_msg}
  2353. WHERE id_topic = {int:id_topic}',
  2354. array(
  2355. 'approved' => $changes['approved'],
  2356. 'unapproved_posts' => $changes['unapproved_posts'],
  2357. 'num_replies' => $changes['replies'],
  2358. 'id_last_msg' => $changes['id_last_msg'],
  2359. 'id_topic' => $id,
  2360. )
  2361. );
  2362. // ... finally the boards...
  2363. foreach ($board_changes as $id => $changes)
  2364. $smcFunc['db_query']('', '
  2365. UPDATE {db_prefix}boards
  2366. SET num_posts = num_posts + {int:num_posts}, unapproved_posts = unapproved_posts + {int:unapproved_posts},
  2367. num_topics = num_topics + {int:num_topics}, unapproved_topics = unapproved_topics + {int:unapproved_topics}
  2368. WHERE id_board = {int:id_board}',
  2369. array(
  2370. 'num_posts' => $changes['posts'],
  2371. 'unapproved_posts' => $changes['unapproved_posts'],
  2372. 'num_topics' => $changes['topics'],
  2373. 'unapproved_topics' => $changes['unapproved_topics'],
  2374. 'id_board' => $id,
  2375. )
  2376. );
  2377. // Finally, least importantly, notifications!
  2378. if ($approve)
  2379. {
  2380. if (!empty($notification_topics))
  2381. {
  2382. require_once($sourcedir . '/Post.php');
  2383. notifyMembersBoard($notification_topics);
  2384. }
  2385. if (!empty($notification_posts))
  2386. sendApprovalNotifications($notification_posts);
  2387. $smcFunc['db_query']('', '
  2388. DELETE FROM {db_prefix}approval_queue
  2389. WHERE id_msg IN ({array_int:message_list})
  2390. AND id_attach = {int:id_attach}',
  2391. array(
  2392. 'message_list' => $msgs,
  2393. 'id_attach' => 0,
  2394. )
  2395. );
  2396. }
  2397. // If unapproving add to the approval queue!
  2398. else
  2399. {
  2400. $msgInserts = array();
  2401. foreach ($msgs as $msg)
  2402. $msgInserts[] = array($msg);
  2403. $smcFunc['db_insert']('ignore',
  2404. '{db_prefix}approval_queue',
  2405. array('id_msg' => 'int'),
  2406. $msgInserts,
  2407. array('id_msg')
  2408. );
  2409. }
  2410. // Update the last messages on the boards...
  2411. updateLastMessages(array_keys($board_changes));
  2412. // Post count for the members?
  2413. if (!empty($member_post_changes))
  2414. foreach ($member_post_changes as $id_member => $count_change)
  2415. updateMemberData($id_member, array('posts' => 'posts ' . ($approve ? '+' : '-') . ' ' . $count_change));
  2416. return true;
  2417. }
  2418. /**
  2419. * Approve topics?
  2420. * @todo shouldn't this be in topic
  2421. *
  2422. * @param array $topics, array of topics ids
  2423. * @param bool $approve = true
  2424. */
  2425. function approveTopics($topics, $approve = true)
  2426. {
  2427. global $smcFunc;
  2428. if (!is_array($topics))
  2429. $topics = array($topics);
  2430. if (empty($topics))
  2431. return false;
  2432. $approve_type = $approve ? 0 : 1;
  2433. // Just get the messages to be approved and pass through...
  2434. $request = $smcFunc['db_query']('', '
  2435. SELECT id_msg
  2436. FROM {db_prefix}messages
  2437. WHERE id_topic IN ({array_int:topic_list})
  2438. AND approved = {int:approve_type}',
  2439. array(
  2440. 'topic_list' => $topics,
  2441. 'approve_type' => $approve_type,
  2442. )
  2443. );
  2444. $msgs = array();
  2445. while ($row = $smcFunc['db_fetch_assoc']($request))
  2446. $msgs[] = $row['id_msg'];
  2447. $smcFunc['db_free_result']($request);
  2448. return approvePosts($msgs, $approve);
  2449. }
  2450. /**
  2451. * A special function for handling the hell which is sending approval notifications.
  2452. *
  2453. * @param $topicData
  2454. */
  2455. function sendApprovalNotifications(&$topicData)
  2456. {
  2457. global $txt, $scripturl, $language, $user_info;
  2458. global $modSettings, $sourcedir, $context, $smcFunc;
  2459. // Clean up the data...
  2460. if (!is_array($topicData) || empty($topicData))
  2461. return;
  2462. $topics = array();
  2463. $digest_insert = array();
  2464. foreach ($topicData as $topic => $msgs)
  2465. foreach ($msgs as $msgKey => $msg)
  2466. {
  2467. censorText($topicData[$topic][$msgKey]['subject']);
  2468. censorText($topicData[$topic][$msgKey]['body']);
  2469. $topicData[$topic][$msgKey]['subject'] = un_htmlspecialchars($topicData[$topic][$msgKey]['subject']);
  2470. $topicData[$topic][$msgKey]['body'] = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc($topicData[$topic][$msgKey]['body'], false), array('<br />' => "\n", '</div>' => "\n", '</li>' => "\n", '&#91;' => '[', '&#93;' => ']')))));
  2471. $topics[] = $msg['id'];
  2472. $digest_insert[] = array($msg['topic'], $msg['id'], 'reply', $user_info['id']);
  2473. }
  2474. // These need to go into the digest too...
  2475. $smcFunc['db_insert']('',
  2476. '{db_prefix}log_digest',
  2477. array(
  2478. 'id_topic' => 'int', 'id_msg' => 'int', 'note_type' => 'string', 'exclude' => 'int',
  2479. ),
  2480. $digest_insert,
  2481. array()
  2482. );
  2483. // Find everyone who needs to know about this.
  2484. $members = $smcFunc['db_query']('', '
  2485. SELECT
  2486. mem.id_member, mem.email_address, mem.notify_regularity, mem.notify_types, mem.notify_send_body, mem.lngfile,
  2487. ln.sent, mem.id_group, mem.additional_groups, b.member_groups, mem.id_post_group, t.id_member_started,
  2488. ln.id_topic
  2489. FROM {db_prefix}log_notify AS ln
  2490. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = ln.id_member)
  2491. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = ln.id_topic)
  2492. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  2493. WHERE ln.id_topic IN ({array_int:topic_list})
  2494. AND mem.is_activated = {int:is_activated}
  2495. AND mem.notify_types < {int:notify_types}
  2496. AND mem.notify_regularity < {int:notify_regularity}
  2497. GROUP BY mem.id_member, ln.id_topic, mem.email_address, mem.notify_regularity, mem.notify_types, mem.notify_send_body, mem.lngfile, ln.sent, mem.id_group, mem.additional_groups, b.member_groups, mem.id_post_group, t.id_member_started
  2498. ORDER BY mem.lngfile',
  2499. array(
  2500. 'topic_list' => $topics,
  2501. 'is_activated' => 1,
  2502. 'notify_types' => 4,
  2503. 'notify_regularity' => 2,
  2504. )
  2505. );
  2506. $sent = 0;
  2507. $current_language = $user_info['language'];
  2508. while ($row = $smcFunc['db_fetch_assoc']($members))
  2509. {
  2510. if ($row['id_group'] != 1)
  2511. {
  2512. $allowed = explode(',', $row['member_groups']);
  2513. $row['additional_groups'] = explode(',', $row['additional_groups']);
  2514. $row['additional_groups'][] = $row['id_group'];
  2515. $row['additional_groups'][] = $row['id_post_group'];
  2516. if (count(array_intersect($allowed, $row['additional_groups'])) == 0)
  2517. continue;
  2518. }
  2519. $needed_language = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile'];
  2520. if (empty($current_language) || $current_language != $needed_language)
  2521. $current_language = loadLanguage('Post', $needed_language, false);
  2522. $sent_this_time = false;
  2523. // Now loop through all the messages to send.
  2524. foreach ($topicData[$row['id_topic']] as $msg)
  2525. {
  2526. $replacements = array(
  2527. 'TOPICSUBJECT' => $topicData[$row['id_topic']]['subject'],
  2528. 'POSTERNAME' => un_htmlspecialchars($topicData[$row['id_topic']]['name']),
  2529. 'TOPICLINK' => $scripturl . '?topic=' . $row['id_topic'] . '.new;topicseen#new',
  2530. 'UNSUBSCRIBELINK' => $scripturl . '?action=notify;topic=' . $row['id_topic'] . '.0',
  2531. );
  2532. $message_type = 'notification_reply';
  2533. // Do they want the body of the message sent too?
  2534. if (!empty($row['notify_send_body']) && empty($modSettings['disallow_sendBody']))
  2535. {
  2536. $message_type .= '_body';
  2537. $replacements['BODY'] = $topicData[$row['id_topic']]['body'];
  2538. }
  2539. if (!empty($row['notify_regularity']))
  2540. $message_type .= '_once';
  2541. // Send only if once is off or it's on and it hasn't been sent.
  2542. if (empty($row['notify_regularity']) || (empty($row['sent']) && !$sent_this_time))
  2543. {
  2544. $emaildata = loadEmailTemplate($message_type, $replacements, $needed_language);
  2545. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, 'm' . $topicData[$row['id_topic']]['last_id']);
  2546. $sent++;
  2547. }
  2548. $sent_this_time = true;
  2549. }
  2550. }
  2551. $smcFunc['db_free_result']($members);
  2552. if (isset($current_language) && $current_language != $user_info['language'])
  2553. loadLanguage('Post');
  2554. // Sent!
  2555. if (!empty($sent))
  2556. $smcFunc['db_query']('', '
  2557. UPDATE {db_prefix}log_notify
  2558. SET sent = {int:is_sent}
  2559. WHERE id_topic IN ({array_int:topic_list})
  2560. AND id_member != {int:current_member}',
  2561. array(
  2562. 'current_member' => $user_info['id'],
  2563. 'topic_list' => $topics,
  2564. 'is_sent' => 1,
  2565. )
  2566. );
  2567. }
  2568. /**
  2569. * Takes an array of board IDs and updates their last messages.
  2570. * If the board has a parent, that parent board is also automatically
  2571. * updated.
  2572. * The columns updated are id_last_msg and last_updated.
  2573. * Note that id_last_msg should always be updated using this function,
  2574. * and is not automatically updated upon other changes.
  2575. *
  2576. * @param array $setboards
  2577. * @param int $id_msg = 0
  2578. */
  2579. function updateLastMessages($setboards, $id_msg = 0)
  2580. {
  2581. global $board_info, $board, $modSettings, $smcFunc;
  2582. // Please - let's be sane.
  2583. if (empty($setboards))
  2584. return false;
  2585. if (!is_array($setboards))
  2586. $setboards = array($setboards);
  2587. // If we don't know the id_msg we need to find it.
  2588. if (!$id_msg)
  2589. {
  2590. // Find the latest message on this board (highest id_msg.)
  2591. $request = $smcFunc['db_query']('', '
  2592. SELECT id_board, MAX(id_last_msg) AS id_msg
  2593. FROM {db_prefix}topics
  2594. WHERE id_board IN ({array_int:board_list})
  2595. AND approved = {int:approved}
  2596. GROUP BY id_board',
  2597. array(
  2598. 'board_list' => $setboards,
  2599. 'approved' => 1,
  2600. )
  2601. );
  2602. $lastMsg = array();
  2603. while ($row = $smcFunc['db_fetch_assoc']($request))
  2604. $lastMsg[$row['id_board']] = $row['id_msg'];
  2605. $smcFunc['db_free_result']($request);
  2606. }
  2607. else
  2608. {
  2609. // Just to note - there should only be one board passed if we are doing this.
  2610. foreach ($setboards as $id_board)
  2611. $lastMsg[$id_board] = $id_msg;
  2612. }
  2613. $parent_boards = array();
  2614. // Keep track of last modified dates.
  2615. $lastModified = $lastMsg;
  2616. // Get all the child boards for the parents, if they have some...
  2617. foreach ($setboards as $id_board)
  2618. {
  2619. if (!isset($lastMsg[$id_board]))
  2620. {
  2621. $lastMsg[$id_board] = 0;
  2622. $lastModified[$id_board] = 0;
  2623. }
  2624. if (!empty($board) && $id_board == $board)
  2625. $parents = $board_info['parent_boards'];
  2626. else
  2627. $parents = getBoardParents($id_board);
  2628. // Ignore any parents on the top child level.
  2629. // @todo Why?
  2630. foreach ($parents as $id => $parent)
  2631. {
  2632. if ($parent['level'] != 0)
  2633. {
  2634. // If we're already doing this one as a board, is this a higher last modified?
  2635. if (isset($lastModified[$id]) && $lastModified[$id_board] > $lastModified[$id])
  2636. $lastModified[$id] = $lastModified[$id_board];
  2637. elseif (!isset($lastModified[$id]) && (!isset($parent_boards[$id]) || $parent_boards[$id] < $lastModified[$id_board]))
  2638. $parent_boards[$id] = $lastModified[$id_board];
  2639. }
  2640. }
  2641. }
  2642. // Note to help understand what is happening here. For parents we update the timestamp of the last message for determining
  2643. // whether there are child boards which have not been read. For the boards themselves we update both this and id_last_msg.
  2644. $board_updates = array();
  2645. $parent_updates = array();
  2646. // Finally, to save on queries make the changes...
  2647. foreach ($parent_boards as $id => $msg)
  2648. {
  2649. if (!isset($parent_updates[$msg]))
  2650. $parent_updates[$msg] = array($id);
  2651. else
  2652. $parent_updates[$msg][] = $id;
  2653. }
  2654. foreach ($lastMsg as $id => $msg)
  2655. {
  2656. if (!isset($board_updates[$msg . '-' . $lastModified[$id]]))
  2657. $board_updates[$msg . '-' . $lastModified[$id]] = array(
  2658. 'id' => $msg,
  2659. 'updated' => $lastModified[$id],
  2660. 'boards' => array($id)
  2661. );
  2662. else
  2663. $board_updates[$msg . '-' . $lastModified[$id]]['boards'][] = $id;
  2664. }
  2665. // Now commit the changes!
  2666. foreach ($parent_updates as $id_msg => $boards)
  2667. {
  2668. $smcFunc['db_query']('', '
  2669. UPDATE {db_prefix}boards
  2670. SET id_msg_updated = {int:id_msg_updated}
  2671. WHERE id_board IN ({array_int:board_list})
  2672. AND id_msg_updated < {int:id_msg_updated}',
  2673. array(
  2674. 'board_list' => $boards,
  2675. 'id_msg_updated' => $id_msg,
  2676. )
  2677. );
  2678. }
  2679. foreach ($board_updates as $board_data)
  2680. {
  2681. $smcFunc['db_query']('', '
  2682. UPDATE {db_prefix}boards
  2683. SET id_last_msg = {int:id_last_msg}, id_msg_updated = {int:id_msg_updated}
  2684. WHERE id_board IN ({array_int:board_list})',
  2685. array(
  2686. 'board_list' => $board_data['boards'],
  2687. 'id_last_msg' => $board_data['id'],
  2688. 'id_msg_updated' => $board_data['updated'],
  2689. )
  2690. );
  2691. }
  2692. }
  2693. /**
  2694. * This simple function gets a list of all administrators and sends them an email
  2695. * to let them know a new member has joined.
  2696. * Called by registerMember() function in Subs-Members.php.
  2697. * Email is sent to all groups that have the moderate_forum permission.
  2698. * The language set by each member is being used (if available).
  2699. *
  2700. * @param string $type, types supported are 'approval', 'activation', and 'standard'.
  2701. * @param int $memberID
  2702. * @param string $member_name = null
  2703. * @uses the Login language file.
  2704. */
  2705. function adminNotify($type, $memberID, $member_name = null)
  2706. {
  2707. global $txt, $modSettings, $language, $scripturl, $user_info, $context, $smcFunc;
  2708. // If the setting isn't enabled then just exit.
  2709. if (empty($modSettings['notify_new_registration']))
  2710. return;
  2711. if ($member_name == null)
  2712. {
  2713. // Get the new user's name....
  2714. $request = $smcFunc['db_query']('', '
  2715. SELECT real_name
  2716. FROM {db_prefix}members
  2717. WHERE id_member = {int:id_member}
  2718. LIMIT 1',
  2719. array(
  2720. 'id_member' => $memberID,
  2721. )
  2722. );
  2723. list ($member_name) = $smcFunc['db_fetch_row']($request);
  2724. $smcFunc['db_free_result']($request);
  2725. }
  2726. $toNotify = array();
  2727. $groups = array();
  2728. // All membergroups who can approve members.
  2729. $request = $smcFunc['db_query']('', '
  2730. SELECT id_group
  2731. FROM {db_prefix}permissions
  2732. WHERE permission = {string:moderate_forum}
  2733. AND add_deny = {int:add_deny}
  2734. AND id_group != {int:id_group}',
  2735. array(
  2736. 'add_deny' => 1,
  2737. 'id_group' => 0,
  2738. 'moderate_forum' => 'moderate_forum',
  2739. )
  2740. );
  2741. while ($row = $smcFunc['db_fetch_assoc']($request))
  2742. $groups[] = $row['id_group'];
  2743. $smcFunc['db_free_result']($request);
  2744. // Add administrators too...
  2745. $groups[] = 1;
  2746. $groups = array_unique($groups);
  2747. // Get a list of all members who have ability to approve accounts - these are the people who we inform.
  2748. $request = $smcFunc['db_query']('', '
  2749. SELECT id_member, lngfile, email_address
  2750. FROM {db_prefix}members
  2751. WHERE (id_group IN ({array_int:group_list}) OR FIND_IN_SET({raw:group_array_implode}, additional_groups) != 0)
  2752. AND notify_types != {int:notify_types}
  2753. ORDER BY lngfile',
  2754. array(
  2755. 'group_list' => $groups,
  2756. 'notify_types' => 4,
  2757. 'group_array_implode' => implode(', additional_groups) != 0 OR FIND_IN_SET(', $groups),
  2758. )
  2759. );
  2760. $current_language = $user_info['language'];
  2761. while ($row = $smcFunc['db_fetch_assoc']($request))
  2762. {
  2763. $replacements = array(
  2764. 'USERNAME' => $member_name,
  2765. 'PROFILELINK' => $scripturl . '?action=profile;u=' . $memberID
  2766. );
  2767. $emailtype = 'admin_notify';
  2768. // If they need to be approved add more info...
  2769. if ($type == 'approval')
  2770. {
  2771. $replacements['APPROVALLINK'] = $scripturl . '?action=admin;area=viewmembers;sa=browse;type=approve';
  2772. $emailtype .= '_approval';
  2773. }
  2774. $emaildata = loadEmailTemplate($emailtype, $replacements, empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']);
  2775. // And do the actual sending...
  2776. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  2777. }
  2778. $smcFunc['db_free_result']($request);
  2779. if (isset($current_language) && $current_language != $user_info['language'])
  2780. loadLanguage('Login');
  2781. }
  2782. /**
  2783. * Load a template from EmailTemplates language file.
  2784. *
  2785. * @param string $template
  2786. * @param array $replacements = array()
  2787. * @param string $lang = ''
  2788. * @param bool $loadLang = true
  2789. */
  2790. function loadEmailTemplate($template, $replacements = array(), $lang = '', $loadLang = true)
  2791. {
  2792. global $txt, $mbname, $scripturl, $settings, $user_info;
  2793. // First things first, load up the email templates language file, if we need to.
  2794. if ($loadLang)
  2795. loadLanguage('EmailTemplates', $lang);
  2796. if (!isset($txt[$template . '_subject']) || !isset($txt[$template . '_body']))
  2797. fatal_lang_error('email_no_template', 'template', array($template));
  2798. $ret = array(
  2799. 'subject' => $txt[$template . '_subject'],
  2800. 'body' => $txt[$template . '_body'],
  2801. );
  2802. // Add in the default replacements.
  2803. $replacements += array(
  2804. 'FORUMNAME' => $mbname,
  2805. 'SCRIPTURL' => $scripturl,
  2806. 'THEMEURL' => $settings['theme_url'],
  2807. 'IMAGESURL' => $settings['images_url'],
  2808. 'DEFAULT_THEMEURL' => $settings['default_theme_url'],
  2809. 'REGARDS' => $txt['regards_team'],
  2810. );
  2811. // Split the replacements up into two arrays, for use with str_replace
  2812. $find = array();
  2813. $replace = array();
  2814. foreach ($replacements as $f => $r)
  2815. {
  2816. $find[] = '{' . $f . '}';
  2817. $replace[] = $r;
  2818. }
  2819. // Do the variable replacements.
  2820. $ret['subject'] = str_replace($find, $replace, $ret['subject']);
  2821. $ret['body'] = str_replace($find, $replace, $ret['body']);
  2822. // Now deal with the {USER.variable} items.
  2823. $ret['subject'] = preg_replace_callback('~{USER.([^}]+)}~', 'user_info_callback', $ret['subject']);
  2824. $ret['body'] = preg_replace_callback('~{USER.([^}]+)}~', 'user_info_callback', $ret['body']);
  2825. // Finally return the email to the caller so they can send it out.
  2826. return $ret;
  2827. }
  2828. function user_info_callback($matches)
  2829. {
  2830. global $user_info;
  2831. if (empty($matches[1]))
  2832. return '';
  2833. $use_ref = true;
  2834. $ref = &$user_info;
  2835. foreach (explode('.', $matches[1]) as $index)
  2836. {
  2837. if ($use_ref && isset($ref[$index]))
  2838. $ref = &$ref[$index];
  2839. else
  2840. {
  2841. $use_ref = false;
  2842. break;
  2843. }
  2844. }
  2845. return $use_ref ? $ref : $matches[0];
  2846. }
  2847. ?>