PersonalMessage.php 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119
  1. <?php
  2. /**
  3. * This file is mainly meant for controlling the actions related to personal
  4. * messages. It allows viewing, sending, deleting, and marking personal
  5. * messages. For compatibility reasons, they are often called "instant messages".
  6. *
  7. * Simple Machines Forum (SMF)
  8. *
  9. * @package SMF
  10. * @author Simple Machines http://www.simplemachines.org
  11. * @copyright 2014 Simple Machines and individual contributors
  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('No direct access...');
  18. /**
  19. * This helps organize things...
  20. * @todo this should be a simple dispatcher....
  21. */
  22. function MessageMain()
  23. {
  24. global $txt, $scripturl, $sourcedir, $context, $user_info, $user_settings, $smcFunc, $modSettings;
  25. // No guests!
  26. is_not_guest();
  27. // You're not supposed to be here at all, if you can't even read PMs.
  28. isAllowedTo('pm_read');
  29. // This file contains the basic functions for sending a PM.
  30. require_once($sourcedir . '/Subs-Post.php');
  31. loadLanguage('PersonalMessage+Drafts');
  32. if (WIRELESS && WIRELESS_PROTOCOL == 'wap')
  33. fatal_lang_error('wireless_error_notyet', false);
  34. elseif (WIRELESS)
  35. $context['sub_template'] = WIRELESS_PROTOCOL . '_pm';
  36. elseif (!isset($_REQUEST['xml']))
  37. loadTemplate('PersonalMessage');
  38. // Load up the members maximum message capacity.
  39. if ($user_info['is_admin'])
  40. $context['message_limit'] = 0;
  41. elseif (($context['message_limit'] = cache_get_data('msgLimit:' . $user_info['id'], 360)) === null)
  42. {
  43. // @todo Why do we do this? It seems like if they have any limit we should use it.
  44. $request = $smcFunc['db_query']('', '
  45. SELECT MAX(max_messages) AS top_limit, MIN(max_messages) AS bottom_limit
  46. FROM {db_prefix}membergroups
  47. WHERE id_group IN ({array_int:users_groups})',
  48. array(
  49. 'users_groups' => $user_info['groups'],
  50. )
  51. );
  52. list ($maxMessage, $minMessage) = $smcFunc['db_fetch_row']($request);
  53. $smcFunc['db_free_result']($request);
  54. $context['message_limit'] = $minMessage == 0 ? 0 : $maxMessage;
  55. // Save us doing it again!
  56. cache_put_data('msgLimit:' . $user_info['id'], $context['message_limit'], 360);
  57. }
  58. // Prepare the context for the capacity bar.
  59. if (!empty($context['message_limit']))
  60. {
  61. $bar = ($user_info['messages'] * 100) / $context['message_limit'];
  62. $context['limit_bar'] = array(
  63. 'messages' => $user_info['messages'],
  64. 'allowed' => $context['message_limit'],
  65. 'percent' => $bar,
  66. 'bar' => min(100, (int) $bar),
  67. 'text' => sprintf($txt['pm_currently_using'], $user_info['messages'], round($bar, 1)),
  68. );
  69. }
  70. // a previous message was sent successfully? show a small indication.
  71. if (isset($_GET['done']) && ($_GET['done'] == 'sent'))
  72. $context['pm_sent'] = true;
  73. $context['labels'] = array();
  74. // Load the label data.
  75. if ($user_settings['new_pm'] || ($context['labels'] = cache_get_data('labelCounts:' . $user_info['id'], 720)) === null)
  76. {
  77. // Looks like we need to reseek!
  78. // Inbox "label"
  79. $context['labels'][-1] = array(
  80. 'id' => -1,
  81. 'name' => $txt['pm_msg_label_inbox'],
  82. 'messages' => 0,
  83. 'unread_messages' => 0,
  84. );
  85. // First get the inbox counts
  86. $result = $smcFunc['db_query']('', '
  87. SELECT COUNT(*) AS total, SUM(is_read) AS num_read
  88. FROM {db_prefix}pm_recipients
  89. WHERE id_member = {int:current_member}
  90. AND in_inbox = {int:in_inbox}
  91. AND deleted = {int:not_deleted}',
  92. array(
  93. 'current_member' => $user_info['id'],
  94. 'in_inbox' => 1,
  95. 'not_deleted' => 0,
  96. )
  97. );
  98. while ($row = $smcFunc['db_fetch_assoc']($result))
  99. {
  100. $context['labels'][-1]['messages'] = $row['total'];
  101. $context['labels'][-1]['unread_messages'] = $row['total'] - $row['num_read'];
  102. }
  103. $smcFunc['db_free_result']($result);
  104. // Now load info about all the other labels
  105. $result = $smcFunc['db_query']('', '
  106. SELECT l.id_label, l.name, IFNULL(SUM(pr.is_read), 0) AS num_read, IFNULL(COUNT(pr.id_pm), 0) AS total
  107. FROM {db_prefix}pm_labels AS l
  108. LEFT JOIN {db_prefix}pm_labeled_messages AS pl ON (pl.id_label = l.id_label)
  109. LEFT JOIN {db_prefix}pm_recipients AS pr ON (pr.id_pm = pl.id_pm)
  110. WHERE l.id_member = {int:current_member}
  111. GROUP BY l.id_label',
  112. array(
  113. 'current_member' => $user_info['id'],
  114. )
  115. );
  116. while ($row = $smcFunc['db_fetch_assoc']($result))
  117. {
  118. $context['labels'][$row['id_label']] = array(
  119. 'id' => $row['id_label'],
  120. 'name' => $row['name'],
  121. 'messages' => $row['total'],
  122. 'unread_messages' => $row['total'] - $row['num_read']
  123. );
  124. }
  125. $smcFunc['db_free_result']($result);
  126. // Store it please!
  127. cache_put_data('labelCounts:' . $user_info['id'], $context['labels'], 720);
  128. }
  129. // Now we have the labels, and assuming we have unsorted mail, apply our rules!
  130. if ($user_settings['new_pm'])
  131. {
  132. ApplyRules();
  133. updateMemberData($user_info['id'], array('new_pm' => 0));
  134. $smcFunc['db_query']('', '
  135. UPDATE {db_prefix}pm_recipients
  136. SET is_new = {int:not_new}
  137. WHERE id_member = {int:current_member}',
  138. array(
  139. 'current_member' => $user_info['id'],
  140. 'not_new' => 0,
  141. )
  142. );
  143. }
  144. // This determines if we have more labels than just the standard inbox.
  145. $context['currently_using_labels'] = count($context['labels']) > 1 ? 1 : 0;
  146. // Some stuff for the labels...
  147. $context['current_label_id'] = isset($_REQUEST['l']) && isset($context['labels'][$_REQUEST['l']]) ? (int) $_REQUEST['l'] : -1;
  148. $context['current_label'] = &$context['labels'][$context['current_label_id']]['name'];
  149. $context['folder'] = !isset($_REQUEST['f']) || $_REQUEST['f'] != 'sent' ? 'inbox' : 'sent';
  150. // This is convenient. Do you know how annoying it is to do this every time?!
  151. $context['current_label_redirect'] = 'action=pm;f=' . $context['folder'] . (isset($_GET['start']) ? ';start=' . $_GET['start'] : '') . (isset($_REQUEST['l']) ? ';l=' . $_REQUEST['l'] : '');
  152. $context['can_issue_warning'] = allowedTo('issue_warning') && $modSettings['warning_settings'][0] == 1;
  153. // Are PM drafts enabled?
  154. $context['drafts_pm_save'] = !empty($modSettings['drafts_pm_enabled']) && allowedTo('pm_draft');
  155. $context['drafts_autosave'] = !empty($context['drafts_pm_save']) && !empty($modSettings['drafts_autosave_enabled']) && allowedTo('pm_autosave_draft');
  156. // Build the linktree for all the actions...
  157. $context['linktree'][] = array(
  158. 'url' => $scripturl . '?action=pm',
  159. 'name' => $txt['personal_messages']
  160. );
  161. // Preferences...
  162. $context['display_mode'] = WIRELESS ? 0 : $user_settings['pm_prefs'] & 3;
  163. $subActions = array(
  164. 'popup' => 'MessagePopup',
  165. 'addbuddy' => 'WirelessAddBuddy',
  166. 'manlabels' => 'ManageLabels',
  167. 'manrules' => 'ManageRules',
  168. 'pmactions' => 'MessageActionsApply',
  169. 'prune' => 'MessagePrune',
  170. 'removeall' => 'MessageKillAllQuery',
  171. 'removeall2' => 'MessageKillAll',
  172. 'report' => 'ReportMessage',
  173. 'search' => 'MessageSearch',
  174. 'search2' => 'MessageSearch2',
  175. 'send' => 'MessagePost',
  176. 'send2' => 'MessagePost2',
  177. 'settings' => 'MessageSettings',
  178. 'showpmdrafts' => 'MessageDrafts',
  179. );
  180. if (!isset($_REQUEST['sa']) || !isset($subActions[$_REQUEST['sa']]))
  181. {
  182. $_REQUEST['sa'] = '';
  183. MessageFolder();
  184. }
  185. else
  186. {
  187. if (!isset($_REQUEST['xml']) && $_REQUEST['sa'] != 'popup')
  188. messageIndexBar($_REQUEST['sa']);
  189. $subActions[$_REQUEST['sa']]();
  190. }
  191. }
  192. /**
  193. * A menu to easily access different areas of the PM section
  194. *
  195. * @param string $area
  196. */
  197. function messageIndexBar($area)
  198. {
  199. global $txt, $context, $scripturl, $sourcedir, $sc, $modSettings, $user_info;
  200. $pm_areas = array(
  201. 'folders' => array(
  202. 'title' => $txt['pm_messages'],
  203. 'areas' => array(
  204. 'send' => array(
  205. 'label' => $txt['new_message'],
  206. 'custom_url' => $scripturl . '?action=pm;sa=send',
  207. 'permission' => allowedTo('pm_send'),
  208. ),
  209. 'inbox' => array(
  210. 'label' => $txt['inbox'],
  211. 'custom_url' => $scripturl . '?action=pm',
  212. ),
  213. 'sent' => array(
  214. 'label' => $txt['sent_items'],
  215. 'custom_url' => $scripturl . '?action=pm;f=sent',
  216. ),
  217. 'drafts' => array(
  218. 'label' => $txt['drafts_show'],
  219. 'custom_url' => $scripturl . '?action=pm;sa=showpmdrafts',
  220. 'permission' => allowedTo('pm_draft'),
  221. 'enabled' => !empty($modSettings['drafts_pm_enabled']),
  222. ),
  223. ),
  224. ),
  225. 'labels' => array(
  226. 'title' => $txt['pm_labels'],
  227. 'areas' => array(),
  228. ),
  229. 'actions' => array(
  230. 'title' => $txt['pm_actions'],
  231. 'areas' => array(
  232. 'search' => array(
  233. 'label' => $txt['pm_search_bar_title'],
  234. 'custom_url' => $scripturl . '?action=pm;sa=search',
  235. ),
  236. 'prune' => array(
  237. 'label' => $txt['pm_prune'],
  238. 'custom_url' => $scripturl . '?action=pm;sa=prune'
  239. ),
  240. ),
  241. ),
  242. 'pref' => array(
  243. 'title' => $txt['pm_preferences'],
  244. 'areas' => array(
  245. 'manlabels' => array(
  246. 'label' => $txt['pm_manage_labels'],
  247. 'custom_url' => $scripturl . '?action=pm;sa=manlabels',
  248. ),
  249. 'manrules' => array(
  250. 'label' => $txt['pm_manage_rules'],
  251. 'custom_url' => $scripturl . '?action=pm;sa=manrules',
  252. ),
  253. 'settings' => array(
  254. 'label' => $txt['pm_settings'],
  255. 'custom_url' => $scripturl . '?action=pm;sa=settings',
  256. ),
  257. ),
  258. ),
  259. );
  260. // Handle labels.
  261. if (empty($context['currently_using_labels']))
  262. unset($pm_areas['labels']);
  263. else
  264. {
  265. // Note we send labels by id as it will have less problems in the querystring.
  266. $unread_in_labels = 0;
  267. foreach ($context['labels'] as $label)
  268. {
  269. if ($label['id'] == -1)
  270. continue;
  271. // Count the amount of unread items in labels.
  272. $unread_in_labels += $label['unread_messages'];
  273. // Add the label to the menu.
  274. $pm_areas['labels']['areas']['label' . $label['id']] = array(
  275. 'label' => $label['name'] . (!empty($label['unread_messages']) ? ' <span class="amt">' . $label['unread_messages'] . '</span>' : ''),
  276. 'custom_url' => $scripturl . '?action=pm;l=' . $label['id'],
  277. 'unread_messages' => $label['unread_messages'],
  278. 'messages' => $label['messages'],
  279. );
  280. }
  281. if (!empty($unread_in_labels))
  282. $pm_areas['labels']['title'] .= ' <span class="amt">' . $unread_in_labels . '</span>';
  283. }
  284. $pm_areas['folders']['areas']['inbox']['unread_messages'] = &$context['labels'][-1]['unread_messages'];
  285. $pm_areas['folders']['areas']['inbox']['messages'] = &$context['labels'][-1]['messages'];
  286. if (!empty($context['labels'][-1]['unread_messages']))
  287. {
  288. $pm_areas['folders']['areas']['inbox']['label'] .= ' <span class="amt">' . $context['labels'][-1]['unread_messages'] . '</span>';
  289. $pm_areas['folders']['title'] .= ' <span class="amt">' . $context['labels'][-1]['unread_messages'] . '</span>';
  290. }
  291. // Do we have a limit on the amount of messages we can keep?
  292. if (!empty($context['message_limit']))
  293. {
  294. $bar = round(($user_info['messages'] * 100) / $context['message_limit'], 1);
  295. $context['limit_bar'] = array(
  296. 'messages' => $user_info['messages'],
  297. 'allowed' => $context['message_limit'],
  298. 'percent' => $bar,
  299. 'bar' => $bar > 100 ? 100 : (int) $bar,
  300. 'text' => sprintf($txt['pm_currently_using'], $user_info['messages'], $bar)
  301. );
  302. }
  303. require_once($sourcedir . '/Subs-Menu.php');
  304. // What page is this, again?
  305. $current_page = $scripturl . '?action=pm' . (!empty($_REQUEST['sa']) ? ';sa=' . $_REQUEST['sa'] : '') . (!empty($context['folder']) ? ';f=' . $context['folder'] : '') . (!empty($context['current_label_id']) ? ';l=' . $context['current_label_id'] : '');
  306. // Set a few options for the menu.
  307. $menuOptions = array(
  308. 'current_area' => $area,
  309. 'disable_url_session_check' => true,
  310. );
  311. // Actually create the menu!
  312. $pm_include_data = createMenu($pm_areas, $menuOptions);
  313. unset($pm_areas);
  314. // No menu means no access.
  315. if (!$pm_include_data && (!$user_info['is_guest'] || validateSession()))
  316. fatal_lang_error('no_access', false);
  317. // Make a note of the Unique ID for this menu.
  318. $context['pm_menu_id'] = $context['max_menu_id'];
  319. $context['pm_menu_name'] = 'menu_data_' . $context['pm_menu_id'];
  320. // Set the selected item.
  321. $current_area = $pm_include_data['current_area'];
  322. $context['menu_item_selected'] = $current_area;
  323. // Set the template for this area and add the profile layer.
  324. if (!WIRELESS && !isset($_REQUEST['xml']))
  325. $context['template_layers'][] = 'pm';
  326. }
  327. /**
  328. * The popup for when we ask for the popup from the user.
  329. */
  330. function MessagePopup()
  331. {
  332. global $context, $modSettings, $smcFunc, $memberContext, $scripturl, $user_settings, $db_show_debug;
  333. // We do not want to output debug information here.
  334. $db_show_debug = false;
  335. // We only want to output our little layer here.
  336. $context['template_layers'] = array();
  337. $context['sub_template'] = 'pm_popup';
  338. $context['can_send_pm'] = allowedTo('pm_send');
  339. $context['can_draft'] = allowedTo('pm_draft') && !empty($modSettings['drafts_pm_enabled']);
  340. // So are we loading stuff?
  341. $request = $smcFunc['db_query']('', '
  342. SELECT id_pm
  343. FROM {db_prefix}pm_recipients AS pmr
  344. WHERE pmr.id_member = {int:current_member}
  345. AND is_read = {int:not_read}
  346. ORDER BY id_pm',
  347. array(
  348. 'current_member' => $context['user']['id'],
  349. 'not_read' => 0,
  350. )
  351. );
  352. $pms = array();
  353. while ($row = $smcFunc['db_fetch_row']($request))
  354. $pms[] = $row[0];
  355. $smcFunc['db_free_result']($request);
  356. if (!empty($pms))
  357. {
  358. // Just quickly, it's possible that the number of PMs can get out of sync.
  359. $count_unread = count($pms);
  360. if ($count_unread != $user_settings['unread_messages'])
  361. {
  362. updateMemberData($context['user']['id'], array('unread_messages' => $count_unread));
  363. $context['user']['unread_messages'] = count($pms);
  364. }
  365. // Now, actually fetch me some PMs. Make sure we track the senders, got some work to do for them.
  366. $senders = array();
  367. $request = $smcFunc['db_query']('', '
  368. SELECT pm.id_pm, pm.id_pm_head, IFNULL(mem.id_member, pm.id_member_from) AS id_member_from,
  369. IFNULL(mem.real_name, pm.from_name) AS member_from, pm.msgtime AS timestamp, pm.subject
  370. FROM {db_prefix}personal_messages AS pm
  371. LEFT JOIN {db_prefix}members AS mem ON (pm.id_member_from = mem.id_member)
  372. WHERE pm.id_pm IN ({array_int:id_pms})',
  373. array(
  374. 'id_pms' => $pms,
  375. )
  376. );
  377. while ($row = $smcFunc['db_fetch_assoc']($request))
  378. {
  379. if (!empty($row['id_member_from']))
  380. $senders[] = $row['id_member_from'];
  381. $row['replied_to_you'] = $row['id_pm'] != $row['id_pm_head'];
  382. $row['time'] = timeformat($row['timestamp']);
  383. $row['pm_link'] = '<a href="' . $scripturl . '?action=pm;f=inbox;pmsg=' . $row['id_pm'] . '">' . $row['subject'] . '</a>';
  384. $context['unread_pms'][$row['id_pm']] = $row;
  385. }
  386. $smcFunc['db_free_result']($request);
  387. if (!empty($senders))
  388. {
  389. $senders = loadMemberData($senders);
  390. foreach ($senders as $member)
  391. loadMemberContext($member);
  392. }
  393. // Having loaded everyone, attach them to the PMs.
  394. foreach ($context['unread_pms'] as $id_pm => $details)
  395. if (!empty($memberContext[$details['id_member_from']]))
  396. $context['unread_pms'][$id_pm]['member'] = &$memberContext[$details['id_member_from']];
  397. }
  398. }
  399. /**
  400. * A folder, ie. inbox/sent etc.
  401. */
  402. function MessageFolder()
  403. {
  404. global $txt, $scripturl, $modSettings, $context, $subjects_request;
  405. global $messages_request, $user_info, $recipients, $options, $smcFunc, $memberContext, $user_settings;
  406. // Changing view?
  407. if (isset($_GET['view']))
  408. {
  409. $context['display_mode'] = $context['display_mode'] > 1 ? 0 : $context['display_mode'] + 1;
  410. updateMemberData($user_info['id'], array('pm_prefs' => ($user_settings['pm_prefs'] & 252) | $context['display_mode']));
  411. }
  412. // Make sure the starting location is valid.
  413. if (isset($_GET['start']) && $_GET['start'] != 'new')
  414. $_GET['start'] = (int) $_GET['start'];
  415. elseif (!isset($_GET['start']) && !empty($options['view_newest_pm_first']))
  416. $_GET['start'] = 0;
  417. else
  418. $_GET['start'] = 'new';
  419. // Set up some basic theme stuff.
  420. $context['from_or_to'] = $context['folder'] != 'sent' ? 'from' : 'to';
  421. $context['get_pmessage'] = 'prepareMessageContext';
  422. $context['signature_enabled'] = substr($modSettings['signature_settings'], 0, 1) == 1;
  423. $context['disabled_fields'] = isset($modSettings['disabled_profile_fields']) ? array_flip(explode(',', $modSettings['disabled_profile_fields'])) : array();
  424. $labelJoin = '';
  425. $labelQuery = '';
  426. $labelQuery2 = '';
  427. // SMF logic: If you're viewing a label, it's still the inbox
  428. if ($context['folder'] == 'inbox' && $context['current_label_id'] == -1)
  429. {
  430. $labelQuery = '
  431. AND pmr.in_inbox = 1';
  432. }
  433. elseif ($context['folder'] != 'sent')
  434. {
  435. $labelJoin = '
  436. INNER JOIN {db_prefix}pm_labeled_messages AS pl ON (pl.id_pm = pm.id_pm)';
  437. $labelQuery2 = '
  438. AND pl.id_label = ' . $context['current_label_id'];
  439. }
  440. // Set the index bar correct!
  441. messageIndexBar($context['current_label_id'] == -1 ? $context['folder'] : 'label' . $context['current_label_id']);
  442. // Sorting the folder.
  443. $sort_methods = array(
  444. 'date' => 'pm.id_pm',
  445. 'name' => 'IFNULL(mem.real_name, \'\')',
  446. 'subject' => 'pm.subject',
  447. );
  448. // They didn't pick one, use the forum default.
  449. if (!isset($_GET['sort']) || !isset($sort_methods[$_GET['sort']]))
  450. {
  451. $context['sort_by'] = 'date';
  452. $_GET['sort'] = 'pm.id_pm';
  453. // An overriding setting?
  454. $descending = !empty($options['view_newest_pm_first']);
  455. }
  456. // Otherwise use the defaults: ascending, by date.
  457. else
  458. {
  459. $context['sort_by'] = $_GET['sort'];
  460. $_GET['sort'] = $sort_methods[$_GET['sort']];
  461. $descending = isset($_GET['desc']);
  462. }
  463. $context['sort_direction'] = $descending ? 'down' : 'up';
  464. // Set the text to resemble the current folder.
  465. $pmbox = $context['folder'] != 'sent' ? $txt['inbox'] : $txt['sent_items'];
  466. $txt['delete_all'] = str_replace('PMBOX', $pmbox, $txt['delete_all']);
  467. // Now, build the link tree!
  468. if ($context['current_label_id'] == -1)
  469. $context['linktree'][] = array(
  470. 'url' => $scripturl . '?action=pm;f=' . $context['folder'],
  471. 'name' => $pmbox
  472. );
  473. // Build it further for a label.
  474. if ($context['current_label_id'] != -1)
  475. $context['linktree'][] = array(
  476. 'url' => $scripturl . '?action=pm;f=' . $context['folder'] . ';l=' . $context['current_label_id'],
  477. 'name' => $txt['pm_current_label'] . ': ' . $context['current_label']
  478. );
  479. // Figure out how many messages there are.
  480. if ($context['folder'] == 'sent')
  481. $request = $smcFunc['db_query']('', '
  482. SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ')
  483. FROM {db_prefix}personal_messages AS pm
  484. WHERE pm.id_member_from = {int:current_member}
  485. AND pm.deleted_by_sender = {int:not_deleted}',
  486. array(
  487. 'current_member' => $user_info['id'],
  488. 'not_deleted' => 0,
  489. )
  490. );
  491. else
  492. $request = $smcFunc['db_query']('', '
  493. SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ')
  494. FROM {db_prefix}pm_recipients AS pmr' . ($context['display_mode'] == 2 ? '
  495. INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)' : '') . $labelJoin . '
  496. WHERE pmr.id_member = {int:current_member}
  497. AND pmr.deleted = {int:not_deleted}' . $labelQuery . $labelQuery2,
  498. array(
  499. 'current_member' => $user_info['id'],
  500. 'not_deleted' => 0,
  501. )
  502. );
  503. list ($max_messages) = $smcFunc['db_fetch_row']($request);
  504. $smcFunc['db_free_result']($request);
  505. // Only show the button if there are messages to delete.
  506. $context['show_delete'] = $max_messages > 0;
  507. // Start on the last page.
  508. if (!is_numeric($_GET['start']) || $_GET['start'] >= $max_messages)
  509. $_GET['start'] = ($max_messages - 1) - (($max_messages - 1) % $modSettings['defaultMaxMessages']);
  510. elseif ($_GET['start'] < 0)
  511. $_GET['start'] = 0;
  512. // ... but wait - what if we want to start from a specific message?
  513. if (isset($_GET['pmid']))
  514. {
  515. $pmID = (int) $_GET['pmid'];
  516. // Make sure you have access to this PM.
  517. if (!isAccessiblePM($pmID, $context['folder'] == 'sent' ? 'outbox' : 'inbox'))
  518. fatal_lang_error('no_access', false);
  519. $context['current_pm'] = $pmID;
  520. // With only one page of PM's we're gonna want page 1.
  521. if ($max_messages <= $modSettings['defaultMaxMessages'])
  522. $_GET['start'] = 0;
  523. // If we pass kstart we assume we're in the right place.
  524. elseif (!isset($_GET['kstart']))
  525. {
  526. if ($context['folder'] == 'sent')
  527. $request = $smcFunc['db_query']('', '
  528. SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ')
  529. FROM {db_prefix}personal_messages
  530. WHERE id_member_from = {int:current_member}
  531. AND deleted_by_sender = {int:not_deleted}
  532. AND id_pm ' . ($descending ? '>' : '<') . ' {int:id_pm}',
  533. array(
  534. 'current_member' => $user_info['id'],
  535. 'not_deleted' => 0,
  536. 'id_pm' => $pmID,
  537. )
  538. );
  539. else
  540. $request = $smcFunc['db_query']('', '
  541. SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ')
  542. FROM {db_prefix}pm_recipients AS pmr' . ($context['display_mode'] == 2 ? '
  543. INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)' : '') . $labelJoin . '
  544. WHERE pmr.id_member = {int:current_member}
  545. AND pmr.deleted = {int:not_deleted}' . $labelQuery . $labelQuery2 . '
  546. AND pmr.id_pm ' . ($descending ? '>' : '<') . ' {int:id_pm}',
  547. array(
  548. 'current_member' => $user_info['id'],
  549. 'not_deleted' => 0,
  550. 'id_pm' => $pmID,
  551. )
  552. );
  553. list ($_GET['start']) = $smcFunc['db_fetch_row']($request);
  554. $smcFunc['db_free_result']($request);
  555. // To stop the page index's being abnormal, start the page on the page the message would normally be located on...
  556. $_GET['start'] = $modSettings['defaultMaxMessages'] * (int) ($_GET['start'] / $modSettings['defaultMaxMessages']);
  557. }
  558. }
  559. // Sanitize and validate pmsg variable if set.
  560. if (isset($_GET['pmsg']))
  561. {
  562. $pmsg = (int) $_GET['pmsg'];
  563. if (!isAccessiblePM($pmsg, $context['folder'] == 'sent' ? 'outbox' : 'inbox'))
  564. fatal_lang_error('no_access', false);
  565. }
  566. // Set up the page index.
  567. $context['page_index'] = constructPageIndex($scripturl . '?action=pm;f=' . $context['folder'] . (isset($_REQUEST['l']) ? ';l=' . (int) $_REQUEST['l'] : '') . ';sort=' . $context['sort_by'] . ($descending ? ';desc' : ''), $_GET['start'], $max_messages, $modSettings['defaultMaxMessages']);
  568. $context['start'] = $_GET['start'];
  569. // Determine the navigation context (especially useful for the wireless template).
  570. $context['links'] = array(
  571. 'first' => $_GET['start'] >= $modSettings['defaultMaxMessages'] ? $scripturl . '?action=pm;start=0' : '',
  572. 'prev' => $_GET['start'] >= $modSettings['defaultMaxMessages'] ? $scripturl . '?action=pm;start=' . ($_GET['start'] - $modSettings['defaultMaxMessages']) : '',
  573. 'next' => $_GET['start'] + $modSettings['defaultMaxMessages'] < $max_messages ? $scripturl . '?action=pm;start=' . ($_GET['start'] + $modSettings['defaultMaxMessages']) : '',
  574. 'last' => $_GET['start'] + $modSettings['defaultMaxMessages'] < $max_messages ? $scripturl . '?action=pm;start=' . (floor(($max_messages - 1) / $modSettings['defaultMaxMessages']) * $modSettings['defaultMaxMessages']) : '',
  575. 'up' => $scripturl,
  576. );
  577. $context['page_info'] = array(
  578. 'current_page' => $_GET['start'] / $modSettings['defaultMaxMessages'] + 1,
  579. 'num_pages' => floor(($max_messages - 1) / $modSettings['defaultMaxMessages']) + 1
  580. );
  581. // First work out what messages we need to see - if grouped is a little trickier...
  582. if ($context['display_mode'] == 2)
  583. {
  584. if ($context['folder'] != 'sent' && $context['folder'] != 'inbox')
  585. {
  586. $labelJoin = '
  587. INNER JOIN {db_prefix}pm_labeled_messages AS pl ON (pl.id_pm = pm.id_pm)';
  588. $labelQuery = '';
  589. $labelQuery2 = '
  590. AND pl.id_label = ' . $context['current_label_id'];
  591. }
  592. // On a non-default sort due to PostgreSQL we have to do a harder sort.
  593. if ($smcFunc['db_title'] == 'PostgreSQL' && $_GET['sort'] != 'pm.id_pm')
  594. {
  595. $sub_request = $smcFunc['db_query']('', '
  596. SELECT MAX({raw:sort}) AS sort_param, pm.id_pm_head
  597. FROM {db_prefix}personal_messages AS pm' . ($context['folder'] == 'sent' ? ($context['sort_by'] == 'name' ? '
  598. LEFT JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)' : '') : '
  599. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm
  600. AND pmr.id_member = {int:current_member}
  601. AND pmr.deleted = {int:not_deleted}
  602. ' . $labelQuery . ')') . $labelJoin . ($context['sort_by'] == 'name' ? ( '
  603. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = {raw:id_member})') : '') . '
  604. WHERE ' . ($context['folder'] == 'sent' ? 'pm.id_member_from = {int:current_member}
  605. AND pm.deleted_by_sender = {int:not_deleted}' : '1=1') . (empty($pmsg) ? '' : '
  606. AND pm.id_pm = {int:id_pm}') . $labelQuery2 . '
  607. GROUP BY pm.id_pm_head
  608. ORDER BY sort_param' . ($descending ? ' DESC' : ' ASC') . (empty($pmsg) ? '
  609. LIMIT ' . $_GET['start'] . ', ' . $modSettings['defaultMaxMessages'] : ''),
  610. array(
  611. 'current_member' => $user_info['id'],
  612. 'not_deleted' => 0,
  613. 'id_member' => $context['folder'] == 'sent' ? 'pmr.id_member' : 'pm.id_member_from',
  614. 'id_pm' => isset($pmsg) ? $pmsg : '0',
  615. 'sort' => $_GET['sort'],
  616. )
  617. );
  618. $sub_pms = array();
  619. while ($row = $smcFunc['db_fetch_assoc']($sub_request))
  620. $sub_pms[$row['id_pm_head']] = $row['sort_param'];
  621. $smcFunc['db_free_result']($sub_request);
  622. $request = $smcFunc['db_query']('', '
  623. SELECT pm.id_pm AS id_pm, pm.id_pm_head
  624. FROM {db_prefix}personal_messages AS pm' . ($context['folder'] == 'sent' ? ($context['sort_by'] == 'name' ? '
  625. LEFT JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)' : '') : '
  626. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm
  627. AND pmr.id_member = {int:current_member}
  628. AND pmr.deleted = {int:not_deleted}
  629. ' . $labelQuery . ')') . $labelJoin . ($context['sort_by'] == 'name' ? ( '
  630. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = {raw:id_member})') : '') . '
  631. WHERE ' . (empty($sub_pms) ? '0=1' : 'pm.id_pm IN ({array_int:pm_list})') . $labelQuery2 . '
  632. ORDER BY ' . ($_GET['sort'] == 'pm.id_pm' && $context['folder'] != 'sent' ? 'id_pm' : '{raw:sort}') . ($descending ? ' DESC' : ' ASC') . (empty($pmsg) ? '
  633. LIMIT ' . $_GET['start'] . ', ' . $modSettings['defaultMaxMessages'] : ''),
  634. array(
  635. 'current_member' => $user_info['id'],
  636. 'pm_list' => array_keys($sub_pms),
  637. 'not_deleted' => 0,
  638. 'sort' => $_GET['sort'],
  639. 'id_member' => $context['folder'] == 'sent' ? 'pmr.id_member' : 'pm.id_member_from',
  640. )
  641. );
  642. }
  643. else
  644. {
  645. $request = $smcFunc['db_query']('pm_conversation_list', '
  646. SELECT MAX(pm.id_pm) AS id_pm, pm.id_pm_head
  647. FROM {db_prefix}personal_messages AS pm' . ($context['folder'] == 'sent' ? ($context['sort_by'] == 'name' ? '
  648. LEFT JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)' : '') : '
  649. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm
  650. AND pmr.id_member = {int:current_member}
  651. AND pmr.deleted = {int:deleted_by}
  652. ' . $labelQuery . ')') . $labelJoin . ($context['sort_by'] == 'name' ? ( '
  653. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = {raw:pm_member})') : '') . '
  654. WHERE ' . ($context['folder'] == 'sent' ? 'pm.id_member_from = {int:current_member}
  655. AND pm.deleted_by_sender = {int:deleted_by}' : '1=1') . (empty($pmsg) ? '' : '
  656. AND pm.id_pm = {int:pmsg}') . $labelQuery2 . '
  657. GROUP BY pm.id_pm_head
  658. ORDER BY ' . ($_GET['sort'] == 'pm.id_pm' && $context['folder'] != 'sent' ? 'id_pm' : '{raw:sort}') . ($descending ? ' DESC' : ' ASC') . (empty($_GET['pmsg']) ? '
  659. LIMIT ' . $_GET['start'] . ', ' . $modSettings['defaultMaxMessages'] : ''),
  660. array(
  661. 'current_member' => $user_info['id'],
  662. 'deleted_by' => 0,
  663. 'sort' => $_GET['sort'],
  664. 'pm_member' => $context['folder'] == 'sent' ? 'pmr.id_member' : 'pm.id_member_from',
  665. 'pmsg' => isset($pmsg) ? (int) $pmsg : 0,
  666. )
  667. );
  668. }
  669. }
  670. // This is kinda simple!
  671. else
  672. {
  673. // @todo SLOW This query uses a filesort. (inbox only.)
  674. $request = $smcFunc['db_query']('', '
  675. SELECT pm.id_pm, pm.id_pm_head, pm.id_member_from
  676. FROM {db_prefix}personal_messages AS pm' . ($context['folder'] == 'sent' ? '' . ($context['sort_by'] == 'name' ? '
  677. LEFT JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)' : '') : '
  678. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm
  679. AND pmr.id_member = {int:current_member}
  680. AND pmr.deleted = {int:is_deleted}
  681. ' . $labelQuery . ')') . $labelJoin . ($context['sort_by'] == 'name' ? ( '
  682. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = {raw:pm_member})') : '') . '
  683. WHERE ' . ($context['folder'] == 'sent' ? 'pm.id_member_from = {raw:current_member}
  684. AND pm.deleted_by_sender = {int:is_deleted}' : '1=1') . (empty($pmsg) ? '' : '
  685. AND pm.id_pm = {int:pmsg}') . $labelQuery2 . '
  686. ORDER BY ' . ($_GET['sort'] == 'pm.id_pm' && $context['folder'] != 'sent' ? 'pmr.id_pm' : '{raw:sort}') . ($descending ? ' DESC' : ' ASC') . (empty($pmsg) ? '
  687. LIMIT ' . $_GET['start'] . ', ' . $modSettings['defaultMaxMessages'] : ''),
  688. array(
  689. 'current_member' => $user_info['id'],
  690. 'is_deleted' => 0,
  691. 'sort' => $_GET['sort'],
  692. 'pm_member' => $context['folder'] == 'sent' ? 'pmr.id_member' : 'pm.id_member_from',
  693. 'pmsg' => isset($pmsg) ? (int) $pmsg : 0,
  694. )
  695. );
  696. }
  697. // Load the id_pms and initialize recipients.
  698. $pms = array();
  699. $lastData = array();
  700. $posters = $context['folder'] == 'sent' ? array($user_info['id']) : array();
  701. $recipients = array();
  702. while ($row = $smcFunc['db_fetch_assoc']($request))
  703. {
  704. if (!isset($recipients[$row['id_pm']]))
  705. {
  706. if (isset($row['id_member_from']))
  707. $posters[$row['id_pm']] = $row['id_member_from'];
  708. $pms[$row['id_pm']] = $row['id_pm'];
  709. $recipients[$row['id_pm']] = array(
  710. 'to' => array(),
  711. 'bcc' => array()
  712. );
  713. }
  714. // Keep track of the last message so we know what the head is without another query!
  715. if ((empty($pmID) && (empty($options['view_newest_pm_first']) || !isset($lastData))) || empty($lastData) || (!empty($pmID) && $pmID == $row['id_pm']))
  716. $lastData = array(
  717. 'id' => $row['id_pm'],
  718. 'head' => $row['id_pm_head'],
  719. );
  720. }
  721. $smcFunc['db_free_result']($request);
  722. // Make sure that we have been given a correct head pm id!
  723. if ($context['display_mode'] == 2 && !empty($pmID) && $pmID != $lastData['id'])
  724. fatal_lang_error('no_access', false);
  725. if (!empty($pms))
  726. {
  727. // Select the correct current message.
  728. if (empty($pmID))
  729. $context['current_pm'] = $lastData['id'];
  730. // This is a list of the pm's that are used for "full" display.
  731. if ($context['display_mode'] == 0)
  732. $display_pms = $pms;
  733. else
  734. $display_pms = array($context['current_pm']);
  735. // At this point we know the main id_pm's. But - if we are looking at conversations we need the others!
  736. if ($context['display_mode'] == 2)
  737. {
  738. $request = $smcFunc['db_query']('', '
  739. SELECT pm.id_pm, pm.id_member_from, pm.deleted_by_sender, pmr.id_member, pmr.deleted
  740. FROM {db_prefix}personal_messages AS pm
  741. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)
  742. WHERE pm.id_pm_head = {int:id_pm_head}
  743. AND ((pm.id_member_from = {int:current_member} AND pm.deleted_by_sender = {int:not_deleted})
  744. OR (pmr.id_member = {int:current_member} AND pmr.deleted = {int:not_deleted}))
  745. ORDER BY pm.id_pm',
  746. array(
  747. 'current_member' => $user_info['id'],
  748. 'id_pm_head' => $lastData['head'],
  749. 'not_deleted' => 0,
  750. )
  751. );
  752. while ($row = $smcFunc['db_fetch_assoc']($request))
  753. {
  754. // This is, frankly, a joke. We will put in a workaround for people sending to themselves - yawn!
  755. if ($context['folder'] == 'sent' && $row['id_member_from'] == $user_info['id'] && $row['deleted_by_sender'] == 1)
  756. continue;
  757. elseif ($row['id_member'] == $user_info['id'] & $row['deleted'] == 1)
  758. continue;
  759. if (!isset($recipients[$row['id_pm']]))
  760. $recipients[$row['id_pm']] = array(
  761. 'to' => array(),
  762. 'bcc' => array()
  763. );
  764. $display_pms[] = $row['id_pm'];
  765. $posters[$row['id_pm']] = $row['id_member_from'];
  766. }
  767. $smcFunc['db_free_result']($request);
  768. }
  769. // This is pretty much EVERY pm!
  770. $all_pms = array_merge($pms, $display_pms);
  771. $all_pms = array_unique($all_pms);
  772. // Get recipients (don't include bcc-recipients for your inbox, you're not supposed to know :P).
  773. $request = $smcFunc['db_query']('', '
  774. SELECT pmr.id_pm, mem_to.id_member AS id_member_to, mem_to.real_name AS to_name, pmr.bcc, pmr.in_inbox, pmr.is_read
  775. FROM {db_prefix}pm_recipients AS pmr
  776. LEFT JOIN {db_prefix}members AS mem_to ON (mem_to.id_member = pmr.id_member)
  777. WHERE pmr.id_pm IN ({array_int:pm_list})',
  778. array(
  779. 'pm_list' => $all_pms,
  780. )
  781. );
  782. $context['message_labels'] = array();
  783. $context['message_replied'] = array();
  784. $context['message_unread'] = array();
  785. while ($row = $smcFunc['db_fetch_assoc']($request))
  786. {
  787. if ($context['folder'] == 'sent' || empty($row['bcc']))
  788. $recipients[$row['id_pm']][empty($row['bcc']) ? 'to' : 'bcc'][] = empty($row['id_member_to']) ? $txt['guest_title'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . '">' . $row['to_name'] . '</a>';
  789. if ($row['id_member_to'] == $user_info['id'] && $context['folder'] != 'sent')
  790. {
  791. $context['message_replied'][$row['id_pm']] = $row['is_read'] & 2;
  792. $context['message_unread'][$row['id_pm']] = $row['is_read'] == 0;
  793. // Get the labels for this PM
  794. $request2 = $smcFunc['db_query']('', '
  795. SELECT id_label
  796. FROM {db_prefix}pm_labeled_messages
  797. WHERE id_pm = {int:current_pm}',
  798. array(
  799. 'current_pm' => $row['id_pm'],
  800. )
  801. );
  802. while($row2 = $smcFunc['db_fetch_assoc']($request2))
  803. {
  804. $l_id = $row2['id_label'];
  805. if (isset($context['labels'][$l_id]))
  806. $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']);
  807. }
  808. $smcFunc['db_free_result']($request2);
  809. // Is this in the inbox as well?
  810. if ($row['in_inbox'] == 1)
  811. {
  812. $context['message_labels'][$row['id_pm']][-1] = array('id' => -1, 'name' => $context['labels'][-1]['name']);
  813. }
  814. }
  815. }
  816. $smcFunc['db_free_result']($request);
  817. // Make sure we don't load unnecessary data.
  818. if ($context['display_mode'] == 1)
  819. {
  820. foreach ($posters as $k => $v)
  821. if (!in_array($k, $display_pms))
  822. unset($posters[$k]);
  823. }
  824. // Load any users....
  825. $posters = array_unique($posters);
  826. if (!empty($posters))
  827. loadMemberData($posters);
  828. // If we're on grouped/restricted view get a restricted list of messages.
  829. if ($context['display_mode'] != 0)
  830. {
  831. // Get the order right.
  832. $orderBy = array();
  833. foreach (array_reverse($pms) as $pm)
  834. $orderBy[] = 'pm.id_pm = ' . $pm;
  835. // Seperate query for these bits!
  836. $subjects_request = $smcFunc['db_query']('', '
  837. SELECT pm.id_pm, pm.subject, IFNULL(pm.id_member_from, 0) AS id_member_from, pm.msgtime, IFNULL(mem.real_name, pm.from_name) AS from_name,
  838. mem.id_member
  839. FROM {db_prefix}personal_messages AS pm
  840. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = pm.id_member_from)
  841. WHERE pm.id_pm IN ({array_int:pm_list})
  842. ORDER BY ' . implode(', ', $orderBy) . '
  843. LIMIT ' . count($pms),
  844. array(
  845. 'pm_list' => $pms,
  846. )
  847. );
  848. }
  849. // Execute the query!
  850. $messages_request = $smcFunc['db_query']('', '
  851. SELECT pm.id_pm, pm.subject, pm.id_member_from, pm.body, pm.msgtime, pm.from_name
  852. FROM {db_prefix}personal_messages AS pm' . ($context['folder'] == 'sent' ? '
  853. LEFT JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)' : '') . ($context['sort_by'] == 'name' ? '
  854. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = {raw:id_member})' : '') . '
  855. WHERE pm.id_pm IN ({array_int:display_pms})' . ($context['folder'] == 'sent' ? '
  856. GROUP BY pm.id_pm, pm.subject, pm.id_member_from, pm.body, pm.msgtime, pm.from_name' : '') . '
  857. ORDER BY ' . ($context['display_mode'] == 2 ? 'pm.id_pm' : $_GET['sort']) . ($descending ? ' DESC' : ' ASC') . '
  858. LIMIT ' . count($display_pms),
  859. array(
  860. 'display_pms' => $display_pms,
  861. 'id_member' => $context['folder'] == 'sent' ? 'pmr.id_member' : 'pm.id_member_from',
  862. )
  863. );
  864. // Build the conversation button array.
  865. if ($context['display_mode'] == 2)
  866. {
  867. $context['conversation_buttons'] = array(
  868. 'delete' => array('text' => 'delete_conversation', 'image' => 'delete.png', 'lang' => true, 'url' => $scripturl . '?action=pm;sa=pmactions;pm_actions[' . $context['current_pm'] . ']=delete;conversation;f=' . $context['folder'] . ';start=' . $context['start'] . ($context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '') . ';' . $context['session_var'] . '=' . $context['session_id'], 'custom' => 'onclick="return confirm(\'' . addslashes($txt['remove_conversation']) . '?\');"'),
  869. );
  870. // Allow mods to add additional buttons here
  871. call_integration_hook('integrate_conversation_buttons');
  872. }
  873. }
  874. else
  875. $messages_request = false;
  876. $context['can_send_pm'] = allowedTo('pm_send');
  877. $context['can_send_email'] = allowedTo('send_email_to_members');
  878. if (!WIRELESS)
  879. $context['sub_template'] = 'folder';
  880. $context['page_title'] = $txt['pm_inbox'];
  881. // Finally mark the relevant messages as read.
  882. if ($context['folder'] != 'sent' && !empty($context['labels'][(int) $context['current_label_id']]['unread_messages']))
  883. {
  884. // If the display mode is "old sk00l" do them all...
  885. if ($context['display_mode'] == 0)
  886. markMessages(null, $context['current_label_id']);
  887. // Otherwise do just the current one!
  888. elseif (!empty($context['current_pm']))
  889. markMessages($display_pms, $context['current_label_id']);
  890. }
  891. }
  892. /**
  893. * Get a personal message for the theme. (used to save memory.)
  894. *
  895. * @param $type
  896. * @param $reset
  897. */
  898. function prepareMessageContext($type = 'subject', $reset = false)
  899. {
  900. global $txt, $scripturl, $modSettings, $settings, $context, $messages_request, $memberContext, $recipients, $smcFunc;
  901. global $user_info, $subjects_request;
  902. // Count the current message number....
  903. static $counter = null;
  904. if ($counter === null || $reset)
  905. $counter = $context['start'];
  906. static $temp_pm_selected = null;
  907. if ($temp_pm_selected === null)
  908. {
  909. $temp_pm_selected = isset($_SESSION['pm_selected']) ? $_SESSION['pm_selected'] : array();
  910. $_SESSION['pm_selected'] = array();
  911. }
  912. // If we're in non-boring view do something exciting!
  913. if ($context['display_mode'] != 0 && $subjects_request && $type == 'subject')
  914. {
  915. $subject = $smcFunc['db_fetch_assoc']($subjects_request);
  916. if (!$subject)
  917. {
  918. $smcFunc['db_free_result']($subjects_request);
  919. return false;
  920. }
  921. $subject['subject'] = $subject['subject'] == '' ? $txt['no_subject'] : $subject['subject'];
  922. censorText($subject['subject']);
  923. $output = array(
  924. 'id' => $subject['id_pm'],
  925. 'member' => array(
  926. 'id' => $subject['id_member_from'],
  927. 'name' => $subject['from_name'],
  928. 'link' => ($subject['id_member_from'] != 0) ? '<a href="' . $scripturl . '?action=profile;u=' . $subject['id_member_from'] . '">' . $subject['from_name'] . '</a>' : $subject['from_name'],
  929. ),
  930. 'recipients' => &$recipients[$subject['id_pm']],
  931. 'subject' => $subject['subject'],
  932. 'time' => timeformat($subject['msgtime']),
  933. 'timestamp' => forum_time(true, $subject['msgtime']),
  934. 'number_recipients' => count($recipients[$subject['id_pm']]['to']),
  935. 'labels' => &$context['message_labels'][$subject['id_pm']],
  936. 'fully_labeled' => count($context['message_labels'][$subject['id_pm']]) == count($context['labels']),
  937. 'is_replied_to' => &$context['message_replied'][$subject['id_pm']],
  938. 'is_unread' => &$context['message_unread'][$subject['id_pm']],
  939. 'is_selected' => !empty($temp_pm_selected) && in_array($subject['id_pm'], $temp_pm_selected),
  940. );
  941. return $output;
  942. }
  943. // Bail if it's false, ie. no messages.
  944. if ($messages_request == false)
  945. return false;
  946. // Reset the data?
  947. if ($reset == true)
  948. return @$smcFunc['db_data_seek']($messages_request, 0);
  949. // Get the next one... bail if anything goes wrong.
  950. $message = $smcFunc['db_fetch_assoc']($messages_request);
  951. if (!$message)
  952. {
  953. if ($type != 'subject')
  954. $smcFunc['db_free_result']($messages_request);
  955. return false;
  956. }
  957. // Use '(no subject)' if none was specified.
  958. $message['subject'] = $message['subject'] == '' ? $txt['no_subject'] : $message['subject'];
  959. // Load the message's information - if it's not there, load the guest information.
  960. if (!loadMemberContext($message['id_member_from'], true))
  961. {
  962. $memberContext[$message['id_member_from']]['name'] = $message['from_name'];
  963. $memberContext[$message['id_member_from']]['id'] = 0;
  964. // Sometimes the forum sends messages itself (Warnings are an example) - in this case don't label it from a guest.
  965. $memberContext[$message['id_member_from']]['group'] = $message['from_name'] == $context['forum_name'] ? '' : $txt['guest_title'];
  966. $memberContext[$message['id_member_from']]['link'] = $message['from_name'];
  967. $memberContext[$message['id_member_from']]['email'] = '';
  968. $memberContext[$message['id_member_from']]['show_email'] = showEmailAddress(true, 0);
  969. $memberContext[$message['id_member_from']]['is_guest'] = true;
  970. }
  971. else
  972. {
  973. $memberContext[$message['id_member_from']]['can_view_profile'] = allowedTo('profile_view') || ($message['id_member_from'] == $user_info['id'] && !$user_info['is_guest']);
  974. $memberContext[$message['id_member_from']]['can_see_warning'] = !isset($context['disabled_fields']['warning_status']) && $memberContext[$message['id_member_from']]['warning_status'] && ($context['user']['can_mod'] || (!empty($modSettings['warning_show']) && ($modSettings['warning_show'] > 1 || $message['id_member_from'] == $user_info['id'])));
  975. }
  976. $memberContext[$message['id_member_from']]['show_profile_buttons'] = $settings['show_profile_buttons'] && (!empty($memberContext[$message['id_member_from']]['can_view_profile']) || (!empty($memberContext[$message['id_member_from']]['website']['url']) && !isset($context['disabled_fields']['website'])) || (in_array($memberContext[$message['id_member_from']]['show_email'], array('yes', 'yes_permission_override', 'no_through_forum'))) || $context['can_send_pm']);
  977. // Censor all the important text...
  978. censorText($message['body']);
  979. censorText($message['subject']);
  980. // Run UBBC interpreter on the message.
  981. $message['body'] = parse_bbc($message['body'], true, 'pm' . $message['id_pm']);
  982. // Send the array.
  983. $output = array(
  984. 'alternate' => $counter % 2,
  985. 'id' => $message['id_pm'],
  986. 'member' => &$memberContext[$message['id_member_from']],
  987. 'subject' => $message['subject'],
  988. 'time' => timeformat($message['msgtime']),
  989. 'timestamp' => forum_time(true, $message['msgtime']),
  990. 'counter' => $counter,
  991. 'body' => $message['body'],
  992. 'recipients' => &$recipients[$message['id_pm']],
  993. 'number_recipients' => count($recipients[$message['id_pm']]['to']),
  994. 'labels' => &$context['message_labels'][$message['id_pm']],
  995. 'fully_labeled' => count($context['message_labels'][$message['id_pm']]) == count($context['labels']),
  996. 'is_replied_to' => &$context['message_replied'][$message['id_pm']],
  997. 'is_unread' => &$context['message_unread'][$message['id_pm']],
  998. 'is_selected' => !empty($temp_pm_selected) && in_array($message['id_pm'], $temp_pm_selected),
  999. 'is_message_author' => $message['id_member_from'] == $user_info['id'],
  1000. 'can_report' => !empty($modSettings['enableReportPM']),
  1001. 'can_see_ip' => allowedTo('moderate_forum') || ($message['id_member_from'] == $user_info['id'] && !empty($user_info['id'])),
  1002. );
  1003. $counter++;
  1004. return $output;
  1005. }
  1006. /**
  1007. * Allows to search through personal messages.
  1008. */
  1009. function MessageSearch()
  1010. {
  1011. global $context, $txt, $scripturl, $modSettings, $smcFunc;
  1012. if (isset($_REQUEST['params']))
  1013. {
  1014. $temp_params = explode('|"|', base64_decode(strtr($_REQUEST['params'], array(' ' => '+'))));
  1015. $context['search_params'] = array();
  1016. foreach ($temp_params as $i => $data)
  1017. {
  1018. @list ($k, $v) = explode('|\'|', $data);
  1019. $context['search_params'][$k] = $v;
  1020. }
  1021. }
  1022. if (isset($_REQUEST['search']))
  1023. $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']);
  1024. if (isset($context['search_params']['search']))
  1025. $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']);
  1026. if (isset($context['search_params']['userspec']))
  1027. $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']);
  1028. if (!empty($context['search_params']['searchtype']))
  1029. $context['search_params']['searchtype'] = 2;
  1030. if (!empty($context['search_params']['minage']))
  1031. $context['search_params']['minage'] = (int) $context['search_params']['minage'];
  1032. if (!empty($context['search_params']['maxage']))
  1033. $context['search_params']['maxage'] = (int) $context['search_params']['maxage'];
  1034. $context['search_params']['subject_only'] = !empty($context['search_params']['subject_only']);
  1035. $context['search_params']['show_complete'] = !empty($context['search_params']['show_complete']);
  1036. // Create the array of labels to be searched.
  1037. $context['search_labels'] = array();
  1038. $searchedLabels = isset($context['search_params']['labels']) && $context['search_params']['labels'] != '' ? explode(',', $context['search_params']['labels']) : array();
  1039. foreach ($context['labels'] as $label)
  1040. {
  1041. $context['search_labels'][] = array(
  1042. 'id' => $label['id'],
  1043. 'name' => $label['name'],
  1044. 'checked' => !empty($searchedLabels) ? in_array($label['id'], $searchedLabels) : true,
  1045. );
  1046. }
  1047. // Are all the labels checked?
  1048. $context['check_all'] = empty($searchedLabels) || count($context['search_labels']) == count($searchedLabels);
  1049. // Load the error text strings if there were errors in the search.
  1050. if (!empty($context['search_errors']))
  1051. {
  1052. loadLanguage('Errors');
  1053. $context['search_errors']['messages'] = array();
  1054. foreach ($context['search_errors'] as $search_error => $dummy)
  1055. {
  1056. if ($search_error == 'messages')
  1057. continue;
  1058. $context['search_errors']['messages'][] = $txt['error_' . $search_error];
  1059. }
  1060. }
  1061. $context['page_title'] = $txt['pm_search_title'];
  1062. $context['sub_template'] = 'search';
  1063. $context['linktree'][] = array(
  1064. 'url' => $scripturl . '?action=pm;sa=search',
  1065. 'name' => $txt['pm_search_bar_title'],
  1066. );
  1067. }
  1068. /**
  1069. * Actually do the search of personal messages.
  1070. */
  1071. function MessageSearch2()
  1072. {
  1073. global $scripturl, $modSettings, $user_info, $context, $txt;
  1074. global $memberContext, $smcFunc;
  1075. if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search'])
  1076. fatal_lang_error('loadavg_search_disabled', false);
  1077. /**
  1078. * @todo For the moment force the folder to the inbox.
  1079. * @todo Maybe set the inbox based on a cookie or theme setting?
  1080. */
  1081. $context['folder'] = 'inbox';
  1082. // Some useful general permissions.
  1083. $context['can_send_pm'] = allowedTo('pm_send');
  1084. // Some hardcoded veriables that can be tweaked if required.
  1085. $maxMembersToSearch = 500;
  1086. // Extract all the search parameters.
  1087. $search_params = array();
  1088. if (isset($_REQUEST['params']))
  1089. {
  1090. $temp_params = explode('|"|', base64_decode(strtr($_REQUEST['params'], array(' ' => '+'))));
  1091. foreach ($temp_params as $i => $data)
  1092. {
  1093. @list ($k, $v) = explode('|\'|', $data);
  1094. $search_params[$k] = $v;
  1095. }
  1096. }
  1097. $context['start'] = isset($_GET['start']) ? (int) $_GET['start'] : 0;
  1098. // Store whether simple search was used (needed if the user wants to do another query).
  1099. if (!isset($search_params['advanced']))
  1100. $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1;
  1101. // 1 => 'allwords' (default, don't set as param) / 2 => 'anywords'.
  1102. if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2))
  1103. $search_params['searchtype'] = 2;
  1104. // Minimum age of messages. Default to zero (don't set param in that case).
  1105. if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0))
  1106. $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage'];
  1107. // Maximum age of messages. Default to infinite (9999 days: param not set).
  1108. if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] != 9999))
  1109. $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage'];
  1110. $search_params['subject_only'] = !empty($search_params['subject_only']) || !empty($_REQUEST['subject_only']);
  1111. $search_params['show_complete'] = !empty($search_params['show_complete']) || !empty($_REQUEST['show_complete']);
  1112. // Default the user name to a wildcard matching every user (*).
  1113. if (!empty($search_params['user_spec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*'))
  1114. $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec'];
  1115. // This will be full of all kinds of parameters!
  1116. $searchq_parameters = array();
  1117. // If there's no specific user, then don't mention it in the main query.
  1118. if (empty($search_params['userspec']))
  1119. $userQuery = '';
  1120. else
  1121. {
  1122. $userString = strtr($smcFunc['htmlspecialchars']($search_params['userspec'], ENT_QUOTES), array('&quot;' => '"'));
  1123. $userString = strtr($userString, array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_'));
  1124. preg_match_all('~"([^"]+)"~', $userString, $matches);
  1125. $possible_users = array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $userString)));
  1126. for ($k = 0, $n = count($possible_users); $k < $n; $k++)
  1127. {
  1128. $possible_users[$k] = trim($possible_users[$k]);
  1129. if (strlen($possible_users[$k]) == 0)
  1130. unset($possible_users[$k]);
  1131. }
  1132. if (!empty($possible_users))
  1133. {
  1134. // We need to bring this into the query and do it nice and cleanly.
  1135. $where_params = array();
  1136. $where_clause = array();
  1137. foreach ($possible_users as $k => $v)
  1138. {
  1139. $where_params['name_' . $k] = $v;
  1140. $where_clause[] = '{raw:real_name} LIKE {string:name_' . $k . '}';
  1141. if (!isset($where_params['real_name']))
  1142. $where_params['real_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(real_name)' : 'real_name';
  1143. }
  1144. // Who matches those criteria?
  1145. // @todo This doesn't support sent item searching.
  1146. $request = $smcFunc['db_query']('', '
  1147. SELECT id_member
  1148. FROM {db_prefix}members
  1149. WHERE ' . implode(' OR ', $where_clause),
  1150. $where_params
  1151. );
  1152. // Simply do nothing if there're too many members matching the criteria.
  1153. if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch)
  1154. $userQuery = '';
  1155. elseif ($smcFunc['db_num_rows']($request) == 0)
  1156. {
  1157. $userQuery = 'AND pm.id_member_from = 0 AND ({raw:pm_from_name} LIKE {raw:guest_user_name_implode})';
  1158. $searchq_parameters['guest_user_name_implode'] = '\'' . implode('\' OR ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name') . ' LIKE \'', $possible_users) . '\'';
  1159. $searchq_parameters['pm_from_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name';
  1160. }
  1161. else
  1162. {
  1163. $memberlist = array();
  1164. while ($row = $smcFunc['db_fetch_assoc']($request))
  1165. $memberlist[] = $row['id_member'];
  1166. $userQuery = 'AND (pm.id_member_from IN ({array_int:member_list}) OR (pm.id_member_from = 0 AND ({raw:pm_from_name} LIKE {raw:guest_user_name_implode})))';
  1167. $searchq_parameters['guest_user_name_implode'] = '\'' . implode('\' OR ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name') . ' LIKE \'', $possible_users) . '\'';
  1168. $searchq_parameters['member_list'] = $memberlist;
  1169. $searchq_parameters['pm_from_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name';
  1170. }
  1171. $smcFunc['db_free_result']($request);
  1172. }
  1173. else
  1174. $userQuery = '';
  1175. }
  1176. // Setup the sorting variables...
  1177. // @todo Add more in here!
  1178. $sort_columns = array(
  1179. 'pm.id_pm',
  1180. );
  1181. if (empty($search_params['sort']) && !empty($_REQUEST['sort']))
  1182. list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, '');
  1183. $search_params['sort'] = !empty($search_params['sort']) && in_array($search_params['sort'], $sort_columns) ? $search_params['sort'] : 'pm.id_pm';
  1184. $search_params['sort_dir'] = !empty($search_params['sort_dir']) && $search_params['sort_dir'] == 'asc' ? 'asc' : 'desc';
  1185. // Sort out any labels we may be searching by.
  1186. $labelQuery = '';
  1187. $labelJoin = '';
  1188. if ($context['folder'] == 'inbox' && !empty($search_params['advanced']) && $context['currently_using_labels'])
  1189. {
  1190. // Came here from pagination? Put them back into $_REQUEST for sanitization.
  1191. if (isset($search_params['labels']))
  1192. $_REQUEST['searchlabel'] = explode(',', $search_params['labels']);
  1193. // Assuming we have some labels - make them all integers.
  1194. if (!empty($_REQUEST['searchlabel']) && is_array($_REQUEST['searchlabel']))
  1195. {
  1196. foreach ($_REQUEST['searchlabel'] as $key => $id)
  1197. $_REQUEST['searchlabel'][$key] = (int) $id;
  1198. }
  1199. else
  1200. $_REQUEST['searchlabel'] = array();
  1201. // Now that everything is cleaned up a bit, make the labels a param.
  1202. $search_params['labels'] = implode(',', $_REQUEST['searchlabel']);
  1203. // No labels selected? That must be an error!
  1204. if (empty($_REQUEST['searchlabel']))
  1205. $context['search_errors']['no_labels_selected'] = true;
  1206. // Otherwise prepare the query!
  1207. elseif (count($_REQUEST['searchlabel']) != count($context['labels']))
  1208. {
  1209. // Special case here... "inbox" isn't a real label anymore...
  1210. if (in_array(-1, $_REQUEST['searchlabel']))
  1211. {
  1212. $labelQuery = ' AND pmr.in_inbox = {int:in_inbox}';
  1213. $searchq_parameters['in_inbox'] = 1;
  1214. // Now we get rid of that...
  1215. $temp = array_diff($_REQUEST['searchlabel'], array(-1));
  1216. $_REQUEST['searchlabel'] = $temp;
  1217. }
  1218. // Still have something?
  1219. if (!empty($_REQUEST['searchlabel']))
  1220. {
  1221. if ($labelQuery == '')
  1222. {
  1223. // Not searching the inbox - PM must be labeled
  1224. $labelQuery = ' AND pml.id_label IN ({array_int:labels})';
  1225. $labelJoin = ' INNER JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_pm = pmr.id_pm)';
  1226. }
  1227. else
  1228. {
  1229. // Searching the inbox - PM doesn't have to be labeled
  1230. $labelQuery = ' AND (' . substr($labelQuery, 5) . ' OR pml.id_label IN ({array_int:labels}))';
  1231. $labelJoin = ' LEFT JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_pm = pmr.id_pm)';
  1232. }
  1233. $searchq_parameters['labels'] = $_REQUEST['searchlabel'];
  1234. }
  1235. }
  1236. }
  1237. // What are we actually searching for?
  1238. $search_params['search'] = !empty($search_params['search']) ? $search_params['search'] : (isset($_REQUEST['search']) ? $_REQUEST['search'] : '');
  1239. // If we ain't got nothing - we should error!
  1240. if (!isset($search_params['search']) || $search_params['search'] == '')
  1241. $context['search_errors']['invalid_search_string'] = true;
  1242. // Extract phrase parts first (e.g. some words "this is a phrase" some more words.)
  1243. preg_match_all('~(?:^|\s)([-]?)"([^"]+)"(?:$|\s)~' . ($context['utf8'] ? 'u' : ''), $search_params['search'], $matches, PREG_PATTERN_ORDER);
  1244. $searchArray = $matches[2];
  1245. // Remove the phrase parts and extract the words.
  1246. $tempSearch = explode(' ', preg_replace('~(?:^|\s)(?:[-]?)"(?:[^"]+)"(?:$|\s)~' . ($context['utf8'] ? 'u' : ''), ' ', $search_params['search']));
  1247. // A minus sign in front of a word excludes the word.... so...
  1248. $excludedWords = array();
  1249. // .. first, we check for things like -"some words", but not "-some words".
  1250. foreach ($matches[1] as $index => $word)
  1251. if ($word == '-')
  1252. {
  1253. $word = $smcFunc['strtolower'](trim($searchArray[$index]));
  1254. if (strlen($word) > 0)
  1255. $excludedWords[] = $word;
  1256. unset($searchArray[$index]);
  1257. }
  1258. // Now we look for -test, etc.... normaller.
  1259. foreach ($tempSearch as $index => $word)
  1260. {
  1261. if (strpos(trim($word), '-') === 0)
  1262. {
  1263. $word = substr($smcFunc['strtolower']($word), 1);
  1264. if (strlen($word) > 0)
  1265. $excludedWords[] = $word;
  1266. unset($tempSearch[$index]);
  1267. }
  1268. }
  1269. $searchArray = array_merge($searchArray, $tempSearch);
  1270. // Trim everything and make sure there are no words that are the same.
  1271. foreach ($searchArray as $index => $value)
  1272. {
  1273. $searchArray[$index] = $smcFunc['strtolower'](trim($value));
  1274. if ($searchArray[$index] == '')
  1275. unset($searchArray[$index]);
  1276. else
  1277. {
  1278. // Sort out entities first.
  1279. $searchArray[$index] = $smcFunc['htmlspecialchars']($searchArray[$index]);
  1280. }
  1281. }
  1282. $searchArray = array_unique($searchArray);
  1283. // Create an array of replacements for highlighting.
  1284. $context['mark'] = array();
  1285. foreach ($searchArray as $word)
  1286. $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>';
  1287. // This contains *everything*
  1288. $searchWords = array_merge($searchArray, $excludedWords);
  1289. // Make sure at least one word is being searched for.
  1290. if (empty($searchArray))
  1291. $context['search_errors']['invalid_search_string'] = true;
  1292. // Sort out the search query so the user can edit it - if they want.
  1293. $context['search_params'] = $search_params;
  1294. if (isset($context['search_params']['search']))
  1295. $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']);
  1296. if (isset($context['search_params']['userspec']))
  1297. $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']);
  1298. // Now we have all the parameters, combine them together for pagination and the like...
  1299. $context['params'] = array();
  1300. foreach ($search_params as $k => $v)
  1301. $context['params'][] = $k . '|\'|' . $v;
  1302. $context['params'] = base64_encode(implode('|"|', $context['params']));
  1303. // Compile the subject query part.
  1304. $andQueryParts = array();
  1305. foreach ($searchWords as $index => $word)
  1306. {
  1307. if ($word == '')
  1308. continue;
  1309. if ($search_params['subject_only'])
  1310. $andQueryParts[] = 'pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '}';
  1311. else
  1312. $andQueryParts[] = '(pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '} ' . (in_array($word, $excludedWords) ? 'AND pm.body NOT' : 'OR pm.body') . ' LIKE {string:search_' . $index . '})';
  1313. $searchq_parameters['search_' . $index] = '%' . strtr($word, array('_' => '\\_', '%' => '\\%')) . '%';
  1314. }
  1315. $searchQuery = ' 1=1';
  1316. if (!empty($andQueryParts))
  1317. $searchQuery = implode(!empty($search_params['searchtype']) && $search_params['searchtype'] == 2 ? ' OR ' : ' AND ', $andQueryParts);
  1318. // Age limits?
  1319. $timeQuery = '';
  1320. if (!empty($search_params['minage']))
  1321. $timeQuery .= ' AND pm.msgtime < ' . (time() - $search_params['minage'] * 86400);
  1322. if (!empty($search_params['maxage']))
  1323. $timeQuery .= ' AND pm.msgtime > ' . (time() - $search_params['maxage'] * 86400);
  1324. // If we have errors - return back to the first screen...
  1325. if (!empty($context['search_errors']))
  1326. {
  1327. $_REQUEST['params'] = $context['params'];
  1328. return MessageSearch();
  1329. }
  1330. // Get the amount of results.
  1331. $request = $smcFunc['db_query']('', '
  1332. SELECT COUNT(*)
  1333. FROM {db_prefix}pm_recipients AS pmr
  1334. INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)
  1335. ' . $labelJoin . '
  1336. WHERE ' . ($context['folder'] == 'inbox' ? '
  1337. pmr.id_member = {int:current_member}
  1338. AND pmr.deleted = {int:not_deleted}' : '
  1339. pm.id_member_from = {int:current_member}
  1340. AND pm.deleted_by_sender = {int:not_deleted}') . '
  1341. ' . $userQuery . $labelQuery . $timeQuery . '
  1342. AND (' . $searchQuery . ')',
  1343. array_merge($searchq_parameters, array(
  1344. 'current_member' => $user_info['id'],
  1345. 'not_deleted' => 0,
  1346. ))
  1347. );
  1348. list ($numResults) = $smcFunc['db_fetch_row']($request);
  1349. $smcFunc['db_free_result']($request);
  1350. // Get all the matching messages... using standard search only (No caching and the like!)
  1351. // @todo This doesn't support sent item searching yet.
  1352. $request = $smcFunc['db_query']('', '
  1353. SELECT pm.id_pm, pm.id_pm_head, pm.id_member_from
  1354. FROM {db_prefix}pm_recipients AS pmr
  1355. INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)
  1356. ' . $labelJoin . '
  1357. WHERE ' . ($context['folder'] == 'inbox' ? '
  1358. pmr.id_member = {int:current_member}
  1359. AND pmr.deleted = {int:not_deleted}' : '
  1360. pm.id_member_from = {int:current_member}
  1361. AND pm.deleted_by_sender = {int:not_deleted}') . '
  1362. ' . $userQuery . $labelQuery . $timeQuery . '
  1363. AND (' . $searchQuery . ')
  1364. ORDER BY ' . $search_params['sort'] . ' ' . $search_params['sort_dir'] . '
  1365. LIMIT ' . $context['start'] . ', ' . $modSettings['search_results_per_page'],
  1366. array_merge($searchq_parameters, array(
  1367. 'current_member' => $user_info['id'],
  1368. 'not_deleted' => 0,
  1369. ))
  1370. );
  1371. $foundMessages = array();
  1372. $posters = array();
  1373. $head_pms = array();
  1374. while ($row = $smcFunc['db_fetch_assoc']($request))
  1375. {
  1376. $foundMessages[] = $row['id_pm'];
  1377. $posters[] = $row['id_member_from'];
  1378. $head_pms[$row['id_pm']] = $row['id_pm_head'];
  1379. }
  1380. $smcFunc['db_free_result']($request);
  1381. // Find the real head pms!
  1382. if ($context['display_mode'] == 2 && !empty($head_pms))
  1383. {
  1384. $request = $smcFunc['db_query']('', '
  1385. SELECT MAX(pm.id_pm) AS id_pm, pm.id_pm_head
  1386. FROM {db_prefix}personal_messages AS pm
  1387. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)
  1388. WHERE pm.id_pm_head IN ({array_int:head_pms})
  1389. AND pmr.id_member = {int:current_member}
  1390. AND pmr.deleted = {int:not_deleted}
  1391. GROUP BY pm.id_pm_head
  1392. LIMIT {int:limit}',
  1393. array(
  1394. 'head_pms' => array_unique($head_pms),
  1395. 'current_member' => $user_info['id'],
  1396. 'not_deleted' => 0,
  1397. 'limit' => count($head_pms),
  1398. )
  1399. );
  1400. $real_pm_ids = array();
  1401. while ($row = $smcFunc['db_fetch_assoc']($request))
  1402. $real_pm_ids[$row['id_pm_head']] = $row['id_pm'];
  1403. $smcFunc['db_free_result']($request);
  1404. }
  1405. // Load the users...
  1406. $posters = array_unique($posters);
  1407. if (!empty($posters))
  1408. loadMemberData($posters);
  1409. // Sort out the page index.
  1410. $context['page_index'] = constructPageIndex($scripturl . '?action=pm;sa=search2;params=' . $context['params'], $_GET['start'], $numResults, $modSettings['search_results_per_page'], false);
  1411. $context['message_labels'] = array();
  1412. $context['message_replied'] = array();
  1413. $context['personal_messages'] = array();
  1414. if (!empty($foundMessages))
  1415. {
  1416. // Now get recipients (but don't include bcc-recipients for your inbox, you're not supposed to know :P!)
  1417. $request = $smcFunc['db_query']('', '
  1418. SELECT
  1419. pmr.id_pm, mem_to.id_member AS id_member_to, mem_to.real_name AS to_name,
  1420. pmr.bcc, pmr.in_inbox, pmr.is_read
  1421. FROM {db_prefix}pm_recipients AS pmr
  1422. LEFT JOIN {db_prefix}members AS mem_to ON (mem_to.id_member = pmr.id_member)
  1423. WHERE pmr.id_pm IN ({array_int:message_list})',
  1424. array(
  1425. 'message_list' => $foundMessages,
  1426. )
  1427. );
  1428. while ($row = $smcFunc['db_fetch_assoc']($request))
  1429. {
  1430. if ($context['folder'] == 'sent' || empty($row['bcc']))
  1431. $recipients[$row['id_pm']][empty($row['bcc']) ? 'to' : 'bcc'][] = empty($row['id_member_to']) ? $txt['guest_title'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . '">' . $row['to_name'] . '</a>';
  1432. if ($row['id_member_to'] == $user_info['id'] && $context['folder'] != 'sent')
  1433. {
  1434. $context['message_replied'][$row['id_pm']] = $row['is_read'] & 2;
  1435. $row['labels'] = '';
  1436. // Get the labels for this PM
  1437. $request2 = $smcFunc['db_query']('', '
  1438. SELECT id_label
  1439. FROM {db_prefix}pm_labeled_messages
  1440. WHERE id_pm = {int:current_pm}',
  1441. array(
  1442. 'current_pm' => $row['id_pm'],
  1443. )
  1444. );
  1445. while($row2 = $smcFunc['db_fetch_assoc']($request2))
  1446. {
  1447. $l_id = $row2['id_label'];
  1448. if (isset($context['labels'][$id_label]))
  1449. $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']);
  1450. // Here we find the first label on a message - for linking to posts in results
  1451. if (!isset($context['first_label'][$row['id_pm']]) && $row['in_inbox'] != 1)
  1452. $context['first_label'][$row['id_pm']] = $l_id;
  1453. }
  1454. $smcFunc['db_free_result']($request2);
  1455. // Is this in the inbox as well?
  1456. if ($row['in_inbox'] == 1)
  1457. {
  1458. $context['message_labels'][$row['id_pm']][-1] = array('id' => -1, 'name' => $context['labels'][-1]['name']);
  1459. }
  1460. $row['labels'] = $row['labels'] == '' ? array() : explode(',', $row['labels']);
  1461. }
  1462. }
  1463. // Prepare the query for the callback!
  1464. $request = $smcFunc['db_query']('', '
  1465. SELECT pm.id_pm, pm.subject, pm.id_member_from, pm.body, pm.msgtime, pm.from_name
  1466. FROM {db_prefix}personal_messages AS pm
  1467. WHERE pm.id_pm IN ({array_int:message_list})
  1468. ORDER BY ' . $search_params['sort'] . ' ' . $search_params['sort_dir'] . '
  1469. LIMIT ' . count($foundMessages),
  1470. array(
  1471. 'message_list' => $foundMessages,
  1472. )
  1473. );
  1474. $counter = 0;
  1475. while ($row = $smcFunc['db_fetch_assoc']($request))
  1476. {
  1477. // If there's no message subject, use the default.
  1478. $row['subject'] = $row['subject'] == '' ? $txt['no_subject'] : $row['subject'];
  1479. // Load this posters context info, if it ain't there then fill in the essentials...
  1480. if (!loadMemberContext($row['id_member_from'], true))
  1481. {
  1482. $memberContext[$row['id_member_from']]['name'] = $row['from_name'];
  1483. $memberContext[$row['id_member_from']]['id'] = 0;
  1484. $memberContext[$row['id_member_from']]['group'] = $txt['guest_title'];
  1485. $memberContext[$row['id_member_from']]['link'] = $row['from_name'];
  1486. $memberContext[$row['id_member_from']]['email'] = '';
  1487. $memberContext[$row['id_member_from']]['show_email'] = showEmailAddress(true, 0);
  1488. $memberContext[$row['id_member_from']]['is_guest'] = true;
  1489. }
  1490. // Censor anything we don't want to see...
  1491. censorText($row['body']);
  1492. censorText($row['subject']);
  1493. // Parse out any BBC...
  1494. $row['body'] = parse_bbc($row['body'], true, 'pm' . $row['id_pm']);
  1495. $href = $scripturl . '?action=pm;f=' . $context['folder'] . (isset($context['first_label'][$row['id_pm']]) ? ';l=' . $context['first_label'][$row['id_pm']] : '') . ';pmid=' . ($context['display_mode'] == 2 && isset($real_pm_ids[$head_pms[$row['id_pm']]]) ? $real_pm_ids[$head_pms[$row['id_pm']]] : $row['id_pm']) . '#msg' . $row['id_pm'];
  1496. $context['personal_messages'][] = array(
  1497. 'id' => $row['id_pm'],
  1498. 'member' => &$memberContext[$row['id_member_from']],
  1499. 'subject' => $row['subject'],
  1500. 'body' => $row['body'],
  1501. 'time' => timeformat($row['msgtime']),
  1502. 'recipients' => &$recipients[$row['id_pm']],
  1503. 'labels' => &$context['message_labels'][$row['id_pm']],
  1504. 'fully_labeled' => count($context['message_labels'][$row['id_pm']]) == count($context['labels']),
  1505. 'is_replied_to' => &$context['message_replied'][$row['id_pm']],
  1506. 'href' => $href,
  1507. 'link' => '<a href="' . $href . '">' . $row['subject'] . '</a>',
  1508. 'counter' => ++$counter,
  1509. );
  1510. }
  1511. $smcFunc['db_free_result']($request);
  1512. }
  1513. // Finish off the context.
  1514. $context['page_title'] = $txt['pm_search_title'];
  1515. $context['sub_template'] = 'search_results';
  1516. $context['menu_data_' . $context['pm_menu_id']]['current_area'] = 'search';
  1517. $context['linktree'][] = array(
  1518. 'url' => $scripturl . '?action=pm;sa=search',
  1519. 'name' => $txt['pm_search_bar_title'],
  1520. );
  1521. }
  1522. /**
  1523. * Send a new message?
  1524. */
  1525. function MessagePost()
  1526. {
  1527. global $txt, $sourcedir, $scripturl, $modSettings;
  1528. global $context, $smcFunc, $language, $user_info;
  1529. isAllowedTo('pm_send');
  1530. loadLanguage('PersonalMessage');
  1531. // Just in case it was loaded from somewhere else.
  1532. if (!WIRELESS)
  1533. {
  1534. loadTemplate('PersonalMessage');
  1535. $context['sub_template'] = 'send';
  1536. }
  1537. // Extract out the spam settings - cause it's neat.
  1538. list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']);
  1539. // Set the title...
  1540. $context['page_title'] = $txt['send_message'];
  1541. $context['reply'] = isset($_REQUEST['pmsg']) || isset($_REQUEST['quote']);
  1542. // Check whether we've gone over the limit of messages we can send per hour.
  1543. if (!empty($modSettings['pm_posts_per_hour']) && !allowedTo(array('admin_forum', 'moderate_forum', 'send_mail')) && $user_info['mod_cache']['bq'] == '0=1' && $user_info['mod_cache']['gq'] == '0=1')
  1544. {
  1545. // How many messages have they sent this last hour?
  1546. $request = $smcFunc['db_query']('', '
  1547. SELECT COUNT(pr.id_pm) AS post_count
  1548. FROM {db_prefix}personal_messages AS pm
  1549. INNER JOIN {db_prefix}pm_recipients AS pr ON (pr.id_pm = pm.id_pm)
  1550. WHERE pm.id_member_from = {int:current_member}
  1551. AND pm.msgtime > {int:msgtime}',
  1552. array(
  1553. 'current_member' => $user_info['id'],
  1554. 'msgtime' => time() - 3600,
  1555. )
  1556. );
  1557. list ($postCount) = $smcFunc['db_fetch_row']($request);
  1558. $smcFunc['db_free_result']($request);
  1559. if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour'])
  1560. fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour']));
  1561. }
  1562. // Quoting/Replying to a message?
  1563. if (!empty($_REQUEST['pmsg']))
  1564. {
  1565. $pmsg = (int) $_REQUEST['pmsg'];
  1566. // Make sure this is yours.
  1567. if (!isAccessiblePM($pmsg))
  1568. fatal_lang_error('no_access', false);
  1569. // Work out whether this is one you've received?
  1570. $request = $smcFunc['db_query']('', '
  1571. SELECT
  1572. id_pm
  1573. FROM {db_prefix}pm_recipients
  1574. WHERE id_pm = {int:id_pm}
  1575. AND id_member = {int:current_member}
  1576. LIMIT 1',
  1577. array(
  1578. 'current_member' => $user_info['id'],
  1579. 'id_pm' => $pmsg,
  1580. )
  1581. );
  1582. $isReceived = $smcFunc['db_num_rows']($request) != 0;
  1583. $smcFunc['db_free_result']($request);
  1584. // Get the quoted message (and make sure you're allowed to see this quote!).
  1585. $request = $smcFunc['db_query']('', '
  1586. SELECT
  1587. pm.id_pm, CASE WHEN pm.id_pm_head = {int:id_pm_head_empty} THEN pm.id_pm ELSE pm.id_pm_head END AS pm_head,
  1588. pm.body, pm.subject, pm.msgtime, mem.member_name, IFNULL(mem.id_member, 0) AS id_member,
  1589. IFNULL(mem.real_name, pm.from_name) AS real_name
  1590. FROM {db_prefix}personal_messages AS pm' . (!$isReceived ? '' : '
  1591. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = {int:id_pm})') . '
  1592. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = pm.id_member_from)
  1593. WHERE pm.id_pm = {int:id_pm}' . (!$isReceived ? '
  1594. AND pm.id_member_from = {int:current_member}' : '
  1595. AND pmr.id_member = {int:current_member}') . '
  1596. LIMIT 1',
  1597. array(
  1598. 'current_member' => $user_info['id'],
  1599. 'id_pm_head_empty' => 0,
  1600. 'id_pm' => $pmsg,
  1601. )
  1602. );
  1603. if ($smcFunc['db_num_rows']($request) == 0)
  1604. fatal_lang_error('pm_not_yours', false);
  1605. $row_quoted = $smcFunc['db_fetch_assoc']($request);
  1606. $smcFunc['db_free_result']($request);
  1607. // Censor the message.
  1608. censorText($row_quoted['subject']);
  1609. censorText($row_quoted['body']);
  1610. // Add 'Re: ' to it....
  1611. if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix')))
  1612. {
  1613. if ($language === $user_info['language'])
  1614. $context['response_prefix'] = $txt['response_prefix'];
  1615. else
  1616. {
  1617. loadLanguage('index', $language, false);
  1618. $context['response_prefix'] = $txt['response_prefix'];
  1619. loadLanguage('index');
  1620. }
  1621. cache_put_data('response_prefix', $context['response_prefix'], 600);
  1622. }
  1623. $form_subject = $row_quoted['subject'];
  1624. if ($context['reply'] && trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0)
  1625. $form_subject = $context['response_prefix'] . $form_subject;
  1626. if (isset($_REQUEST['quote']))
  1627. {
  1628. // Remove any nested quotes and <br>...
  1629. $form_message = preg_replace('~<br ?/?' . '>~i', "\n", $row_quoted['body']);
  1630. if (!empty($modSettings['removeNestedQuotes']))
  1631. $form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message);
  1632. if (empty($row_quoted['id_member']))
  1633. $form_message = '[quote author=&quot;' . $row_quoted['real_name'] . '&quot;]' . "\n" . $form_message . "\n" . '[/quote]';
  1634. else
  1635. $form_message = '[quote author=' . $row_quoted['real_name'] . ' link=action=profile;u=' . $row_quoted['id_member'] . ' date=' . $row_quoted['msgtime'] . ']' . "\n" . $form_message . "\n" . '[/quote]';
  1636. }
  1637. else
  1638. $form_message = '';
  1639. // Do the BBC thang on the message.
  1640. $row_quoted['body'] = parse_bbc($row_quoted['body'], true, 'pm' . $row_quoted['id_pm']);
  1641. // Set up the quoted message array.
  1642. $context['quoted_message'] = array(
  1643. 'id' => $row_quoted['id_pm'],
  1644. 'pm_head' => $row_quoted['pm_head'],
  1645. 'member' => array(
  1646. 'name' => $row_quoted['real_name'],
  1647. 'username' => $row_quoted['member_name'],
  1648. 'id' => $row_quoted['id_member'],
  1649. 'href' => !empty($row_quoted['id_member']) ? $scripturl . '?action=profile;u=' . $row_quoted['id_member'] : '',
  1650. 'link' => !empty($row_quoted['id_member']) ? '<a href="' . $scripturl . '?action=profile;u=' . $row_quoted['id_member'] . '">' . $row_quoted['real_name'] . '</a>' : $row_quoted['real_name'],
  1651. ),
  1652. 'subject' => $row_quoted['subject'],
  1653. 'time' => timeformat($row_quoted['msgtime']),
  1654. 'timestamp' => forum_time(true, $row_quoted['msgtime']),
  1655. 'body' => $row_quoted['body']
  1656. );
  1657. }
  1658. else
  1659. {
  1660. $context['quoted_message'] = false;
  1661. $form_subject = '';
  1662. $form_message = '';
  1663. }
  1664. $context['recipients'] = array(
  1665. 'to' => array(),
  1666. 'bcc' => array(),
  1667. );
  1668. // Sending by ID? Replying to all? Fetch the real_name(s).
  1669. if (isset($_REQUEST['u']))
  1670. {
  1671. // If the user is replying to all, get all the other members this was sent to..
  1672. if ($_REQUEST['u'] == 'all' && isset($row_quoted))
  1673. {
  1674. // Firstly, to reply to all we clearly already have $row_quoted - so have the original member from.
  1675. if ($row_quoted['id_member'] != $user_info['id'])
  1676. $context['recipients']['to'][] = array(
  1677. 'id' => $row_quoted['id_member'],
  1678. 'name' => $smcFunc['htmlspecialchars']($row_quoted['real_name']),
  1679. );
  1680. // Now to get the others.
  1681. $request = $smcFunc['db_query']('', '
  1682. SELECT mem.id_member, mem.real_name
  1683. FROM {db_prefix}pm_recipients AS pmr
  1684. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = pmr.id_member)
  1685. WHERE pmr.id_pm = {int:id_pm}
  1686. AND pmr.id_member != {int:current_member}
  1687. AND pmr.bcc = {int:not_bcc}',
  1688. array(
  1689. 'current_member' => $user_info['id'],
  1690. 'id_pm' => $pmsg,
  1691. 'not_bcc' => 0,
  1692. )
  1693. );
  1694. while ($row = $smcFunc['db_fetch_assoc']($request))
  1695. $context['recipients']['to'][] = array(
  1696. 'id' => $row['id_member'],
  1697. 'name' => $row['real_name'],
  1698. );
  1699. $smcFunc['db_free_result']($request);
  1700. }
  1701. else
  1702. {
  1703. $_REQUEST['u'] = explode(',', $_REQUEST['u']);
  1704. foreach ($_REQUEST['u'] as $key => $uID)
  1705. $_REQUEST['u'][$key] = (int) $uID;
  1706. $_REQUEST['u'] = array_unique($_REQUEST['u']);
  1707. $request = $smcFunc['db_query']('', '
  1708. SELECT id_member, real_name
  1709. FROM {db_prefix}members
  1710. WHERE id_member IN ({array_int:member_list})
  1711. LIMIT ' . count($_REQUEST['u']),
  1712. array(
  1713. 'member_list' => $_REQUEST['u'],
  1714. )
  1715. );
  1716. while ($row = $smcFunc['db_fetch_assoc']($request))
  1717. $context['recipients']['to'][] = array(
  1718. 'id' => $row['id_member'],
  1719. 'name' => $row['real_name'],
  1720. );
  1721. $smcFunc['db_free_result']($request);
  1722. }
  1723. // Get a literal name list in case the user has JavaScript disabled.
  1724. $names = array();
  1725. foreach ($context['recipients']['to'] as $to)
  1726. $names[] = $to['name'];
  1727. $context['to_value'] = empty($names) ? '' : '&quot;' . implode('&quot;, &quot;', $names) . '&quot;';
  1728. }
  1729. else
  1730. $context['to_value'] = '';
  1731. // Set the defaults...
  1732. $context['subject'] = $form_subject;
  1733. $context['message'] = str_replace(array('"', '<', '>', '&nbsp;'), array('&quot;', '&lt;', '&gt;', ' '), $form_message);
  1734. $context['post_error'] = array();
  1735. // And build the link tree.
  1736. $context['linktree'][] = array(
  1737. 'url' => $scripturl . '?action=pm;sa=send',
  1738. 'name' => $txt['new_message']
  1739. );
  1740. $modSettings['disable_wysiwyg'] = !empty($modSettings['disable_wysiwyg']) || empty($modSettings['enableBBC']);
  1741. // Generate a list of drafts that they can load in to the editor
  1742. if (!empty($context['drafts_pm_save']))
  1743. {
  1744. require_once($sourcedir . '/Drafts.php');
  1745. $pm_seed = isset($_REQUEST['pmsg']) ? $_REQUEST['pmsg'] : (isset($_REQUEST['quote']) ? $_REQUEST['quote'] : 0);
  1746. ShowDrafts($user_info['id'], $pm_seed, 1);
  1747. }
  1748. // Needed for the WYSIWYG editor.
  1749. require_once($sourcedir . '/Subs-Editor.php');
  1750. // Now create the editor.
  1751. $editorOptions = array(
  1752. 'id' => 'message',
  1753. 'value' => $context['message'],
  1754. 'height' => '250px',
  1755. 'width' => '100%',
  1756. 'labels' => array(
  1757. 'post_button' => $txt['send_message'],
  1758. ),
  1759. 'preview_type' => 2,
  1760. 'required' => true,
  1761. );
  1762. create_control_richedit($editorOptions);
  1763. // Store the ID for old compatibility.
  1764. $context['post_box_name'] = $editorOptions['id'];
  1765. $context['bcc_value'] = '';
  1766. $context['require_verification'] = !$user_info['is_admin'] && !empty($modSettings['pm_posts_verification']) && $user_info['posts'] < $modSettings['pm_posts_verification'];
  1767. if ($context['require_verification'])
  1768. {
  1769. $verificationOptions = array(
  1770. 'id' => 'pm',
  1771. );
  1772. $context['require_verification'] = create_control_verification($verificationOptions);
  1773. $context['visual_verification_id'] = $verificationOptions['id'];
  1774. }
  1775. // Register this form and get a sequence number in $context.
  1776. checkSubmitOnce('register');
  1777. }
  1778. /**
  1779. * This function allows the user to view their PM drafts
  1780. */
  1781. function MessageDrafts()
  1782. {
  1783. global $sourcedir, $user_info;
  1784. // validate with loadMemberData()
  1785. $memberResult = loadMemberData($user_info['id'], false);
  1786. if (!is_array($memberResult))
  1787. fatal_lang_error('not_a_user', false);
  1788. list ($memID) = $memberResult;
  1789. // drafts is where the functions reside
  1790. require_once($sourcedir . '/Drafts.php');
  1791. showPMDrafts($memID);
  1792. }
  1793. /**
  1794. * An error in the message...
  1795. *
  1796. * @param $error_types
  1797. * @param $named_recipients
  1798. * @param $recipient_ids
  1799. */
  1800. function messagePostError($error_types, $named_recipients, $recipient_ids = array())
  1801. {
  1802. global $txt, $context, $scripturl, $modSettings;
  1803. global $smcFunc, $user_info, $sourcedir;
  1804. if (!isset($_REQUEST['xml']))
  1805. $context['menu_data_' . $context['pm_menu_id']]['current_area'] = 'send';
  1806. if (!WIRELESS && !isset($_REQUEST['xml']))
  1807. $context['sub_template'] = 'send';
  1808. elseif (isset($_REQUEST['xml']))
  1809. $context['sub_template'] = 'pm';
  1810. $context['page_title'] = $txt['send_message'];
  1811. // Got some known members?
  1812. $context['recipients'] = array(
  1813. 'to' => array(),
  1814. 'bcc' => array(),
  1815. );
  1816. if (!empty($recipient_ids['to']) || !empty($recipient_ids['bcc']))
  1817. {
  1818. $allRecipients = array_merge($recipient_ids['to'], $recipient_ids['bcc']);
  1819. $request = $smcFunc['db_query']('', '
  1820. SELECT id_member, real_name
  1821. FROM {db_prefix}members
  1822. WHERE id_member IN ({array_int:member_list})',
  1823. array(
  1824. 'member_list' => $allRecipients,
  1825. )
  1826. );
  1827. while ($row = $smcFunc['db_fetch_assoc']($request))
  1828. {
  1829. $recipientType = in_array($row['id_member'], $recipient_ids['bcc']) ? 'bcc' : 'to';
  1830. $context['recipients'][$recipientType][] = array(
  1831. 'id' => $row['id_member'],
  1832. 'name' => $row['real_name'],
  1833. );
  1834. }
  1835. $smcFunc['db_free_result']($request);
  1836. }
  1837. // Set everything up like before....
  1838. $context['subject'] = isset($_REQUEST['subject']) ? $smcFunc['htmlspecialchars']($_REQUEST['subject']) : '';
  1839. $context['message'] = isset($_REQUEST['message']) ? str_replace(array(' '), array('&nbsp; '), $smcFunc['htmlspecialchars']($_REQUEST['message'])) : '';
  1840. $context['reply'] = !empty($_REQUEST['replied_to']);
  1841. if ($context['reply'])
  1842. {
  1843. $_REQUEST['replied_to'] = (int) $_REQUEST['replied_to'];
  1844. $request = $smcFunc['db_query']('', '
  1845. SELECT
  1846. pm.id_pm, CASE WHEN pm.id_pm_head = {int:no_id_pm_head} THEN pm.id_pm ELSE pm.id_pm_head END AS pm_head,
  1847. pm.body, pm.subject, pm.msgtime, mem.member_name, IFNULL(mem.id_member, 0) AS id_member,
  1848. IFNULL(mem.real_name, pm.from_name) AS real_name
  1849. FROM {db_prefix}personal_messages AS pm' . ($context['folder'] == 'sent' ? '' : '
  1850. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = {int:replied_to})') . '
  1851. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = pm.id_member_from)
  1852. WHERE pm.id_pm = {int:replied_to}' . ($context['folder'] == 'sent' ? '
  1853. AND pm.id_member_from = {int:current_member}' : '
  1854. AND pmr.id_member = {int:current_member}') . '
  1855. LIMIT 1',
  1856. array(
  1857. 'current_member' => $user_info['id'],
  1858. 'no_id_pm_head' => 0,
  1859. 'replied_to' => $_REQUEST['replied_to'],
  1860. )
  1861. );
  1862. if ($smcFunc['db_num_rows']($request) == 0)
  1863. {
  1864. if (!isset($_REQUEST['xml']))
  1865. fatal_lang_error('pm_not_yours', false);
  1866. else
  1867. $error_types[] = 'pm_not_yours';
  1868. }
  1869. $row_quoted = $smcFunc['db_fetch_assoc']($request);
  1870. $smcFunc['db_free_result']($request);
  1871. censorText($row_quoted['subject']);
  1872. censorText($row_quoted['body']);
  1873. $context['quoted_message'] = array(
  1874. 'id' => $row_quoted['id_pm'],
  1875. 'pm_head' => $row_quoted['pm_head'],
  1876. 'member' => array(
  1877. 'name' => $row_quoted['real_name'],
  1878. 'username' => $row_quoted['member_name'],
  1879. 'id' => $row_quoted['id_member'],
  1880. 'href' => !empty($row_quoted['id_member']) ? $scripturl . '?action=profile;u=' . $row_quoted['id_member'] : '',
  1881. 'link' => !empty($row_quoted['id_member']) ? '<a href="' . $scripturl . '?action=profile;u=' . $row_quoted['id_member'] . '">' . $row_quoted['real_name'] . '</a>' : $row_quoted['real_name'],
  1882. ),
  1883. 'subject' => $row_quoted['subject'],
  1884. 'time' => timeformat($row_quoted['msgtime']),
  1885. 'timestamp' => forum_time(true, $row_quoted['msgtime']),
  1886. 'body' => parse_bbc($row_quoted['body'], true, 'pm' . $row_quoted['id_pm']),
  1887. );
  1888. }
  1889. // Build the link tree....
  1890. $context['linktree'][] = array(
  1891. 'url' => $scripturl . '?action=pm;sa=send',
  1892. 'name' => $txt['new_message']
  1893. );
  1894. // Set each of the errors for the template.
  1895. loadLanguage('Errors');
  1896. $context['error_type'] = 'minor';
  1897. $context['post_error'] = array(
  1898. 'messages' => array(),
  1899. // @todo error handling: maybe fatal errors can be error_type => serious
  1900. 'error_type' => '',
  1901. );
  1902. foreach ($error_types as $error_type)
  1903. {
  1904. $context['post_error'][$error_type] = true;
  1905. if (isset($txt['error_' . $error_type]))
  1906. {
  1907. if ($error_type == 'long_message')
  1908. $txt['error_' . $error_type] = sprintf($txt['error_' . $error_type], $modSettings['max_messageLength']);
  1909. $context['post_error']['messages'][] = $txt['error_' . $error_type];
  1910. }
  1911. // If it's not a minor error flag it as such.
  1912. if (!in_array($error_type, array('new_reply', 'not_approved', 'new_replies', 'old_topic', 'need_qr_verification', 'no_subject')))
  1913. $context['error_type'] = 'serious';
  1914. }
  1915. // We need to load the editor once more.
  1916. require_once($sourcedir . '/Subs-Editor.php');
  1917. // Create it...
  1918. $editorOptions = array(
  1919. 'id' => 'message',
  1920. 'value' => $context['message'],
  1921. 'width' => '90%',
  1922. 'height' => '250px',
  1923. 'labels' => array(
  1924. 'post_button' => $txt['send_message'],
  1925. ),
  1926. 'preview_type' => 2,
  1927. );
  1928. create_control_richedit($editorOptions);
  1929. // ... and store the ID again...
  1930. $context['post_box_name'] = $editorOptions['id'];
  1931. // Check whether we need to show the code again.
  1932. $context['require_verification'] = !$user_info['is_admin'] && !empty($modSettings['pm_posts_verification']) && $user_info['posts'] < $modSettings['pm_posts_verification'];
  1933. if ($context['require_verification'] && !isset($_REQUEST['xml']))
  1934. {
  1935. require_once($sourcedir . '/Subs-Editor.php');
  1936. $verificationOptions = array(
  1937. 'id' => 'pm',
  1938. );
  1939. $context['require_verification'] = create_control_verification($verificationOptions);
  1940. $context['visual_verification_id'] = $verificationOptions['id'];
  1941. }
  1942. $context['to_value'] = empty($named_recipients['to']) ? '' : '&quot;' . implode('&quot;, &quot;', $named_recipients['to']) . '&quot;';
  1943. $context['bcc_value'] = empty($named_recipients['bcc']) ? '' : '&quot;' . implode('&quot;, &quot;', $named_recipients['bcc']) . '&quot;';
  1944. // No check for the previous submission is needed.
  1945. checkSubmitOnce('free');
  1946. // Acquire a new form sequence number.
  1947. checkSubmitOnce('register');
  1948. }
  1949. /**
  1950. * Send it!
  1951. */
  1952. function MessagePost2()
  1953. {
  1954. global $txt, $context, $sourcedir;
  1955. global $user_info, $modSettings, $scripturl, $smcFunc;
  1956. isAllowedTo('pm_send');
  1957. require_once($sourcedir . '/Subs-Auth.php');
  1958. // PM Drafts enabled and needed?
  1959. if ($context['drafts_pm_save'] && (isset($_POST['save_draft']) || isset($_POST['id_pm_draft'])))
  1960. require_once($sourcedir . '/Drafts.php');
  1961. loadLanguage('PersonalMessage', '', false);
  1962. // Extract out the spam settings - it saves database space!
  1963. list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']);
  1964. // Initialize the errors we're about to make.
  1965. $post_errors = array();
  1966. // Check whether we've gone over the limit of messages we can send per hour - fatal error if fails!
  1967. if (!empty($modSettings['pm_posts_per_hour']) && !allowedTo(array('admin_forum', 'moderate_forum', 'send_mail')) && $user_info['mod_cache']['bq'] == '0=1' && $user_info['mod_cache']['gq'] == '0=1')
  1968. {
  1969. // How many have they sent this last hour?
  1970. $request = $smcFunc['db_query']('', '
  1971. SELECT COUNT(pr.id_pm) AS post_count
  1972. FROM {db_prefix}personal_messages AS pm
  1973. INNER JOIN {db_prefix}pm_recipients AS pr ON (pr.id_pm = pm.id_pm)
  1974. WHERE pm.id_member_from = {int:current_member}
  1975. AND pm.msgtime > {int:msgtime}',
  1976. array(
  1977. 'current_member' => $user_info['id'],
  1978. 'msgtime' => time() - 3600,
  1979. )
  1980. );
  1981. list ($postCount) = $smcFunc['db_fetch_row']($request);
  1982. $smcFunc['db_free_result']($request);
  1983. if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour'])
  1984. {
  1985. if (!isset($_REQUEST['xml']))
  1986. fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour']));
  1987. else
  1988. $post_errors[] = 'pm_too_many_per_hour';
  1989. }
  1990. }
  1991. // If your session timed out, show an error, but do allow to re-submit.
  1992. if (!isset($_REQUEST['xml']) && checkSession('post', '', false) != '')
  1993. $post_errors[] = 'session_timeout';
  1994. $_REQUEST['subject'] = isset($_REQUEST['subject']) ? trim($_REQUEST['subject']) : '';
  1995. $_REQUEST['to'] = empty($_POST['to']) ? (empty($_GET['to']) ? '' : $_GET['to']) : $_POST['to'];
  1996. $_REQUEST['bcc'] = empty($_POST['bcc']) ? (empty($_GET['bcc']) ? '' : $_GET['bcc']) : $_POST['bcc'];
  1997. // Route the input from the 'u' parameter to the 'to'-list.
  1998. if (!empty($_POST['u']))
  1999. $_POST['recipient_to'] = explode(',', $_POST['u']);
  2000. // Construct the list of recipients.
  2001. $recipientList = array();
  2002. $namedRecipientList = array();
  2003. $namesNotFound = array();
  2004. foreach (array('to', 'bcc') as $recipientType)
  2005. {
  2006. // First, let's see if there's user ID's given.
  2007. $recipientList[$recipientType] = array();
  2008. if (!empty($_POST['recipient_' . $recipientType]) && is_array($_POST['recipient_' . $recipientType]))
  2009. {
  2010. foreach ($_POST['recipient_' . $recipientType] as $recipient)
  2011. $recipientList[$recipientType][] = (int) $recipient;
  2012. }
  2013. // Are there also literal names set?
  2014. if (!empty($_REQUEST[$recipientType]))
  2015. {
  2016. // We're going to take out the "s anyway ;).
  2017. $recipientString = strtr($_REQUEST[$recipientType], array('\\"' => '"'));
  2018. preg_match_all('~"([^"]+)"~', $recipientString, $matches);
  2019. $namedRecipientList[$recipientType] = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $recipientString))));
  2020. foreach ($namedRecipientList[$recipientType] as $index => $recipient)
  2021. {
  2022. if (strlen(trim($recipient)) > 0)
  2023. $namedRecipientList[$recipientType][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($recipient)));
  2024. else
  2025. unset($namedRecipientList[$recipientType][$index]);
  2026. }
  2027. if (!empty($namedRecipientList[$recipientType]))
  2028. {
  2029. $foundMembers = findMembers($namedRecipientList[$recipientType]);
  2030. // Assume all are not found, until proven otherwise.
  2031. $namesNotFound[$recipientType] = $namedRecipientList[$recipientType];
  2032. foreach ($foundMembers as $member)
  2033. {
  2034. $testNames = array(
  2035. $smcFunc['strtolower']($member['username']),
  2036. $smcFunc['strtolower']($member['name']),
  2037. $smcFunc['strtolower']($member['email']),
  2038. );
  2039. if (count(array_intersect($testNames, $namedRecipientList[$recipientType])) !== 0)
  2040. {
  2041. $recipientList[$recipientType][] = $member['id'];
  2042. // Get rid of this username, since we found it.
  2043. $namesNotFound[$recipientType] = array_diff($namesNotFound[$recipientType], $testNames);
  2044. }
  2045. }
  2046. }
  2047. }
  2048. // Selected a recipient to be deleted? Remove them now.
  2049. if (!empty($_POST['delete_recipient']))
  2050. $recipientList[$recipientType] = array_diff($recipientList[$recipientType], array((int) $_POST['delete_recipient']));
  2051. // Make sure we don't include the same name twice
  2052. $recipientList[$recipientType] = array_unique($recipientList[$recipientType]);
  2053. }
  2054. // Are we changing the recipients some how?
  2055. $is_recipient_change = !empty($_POST['delete_recipient']) || !empty($_POST['to_submit']) || !empty($_POST['bcc_submit']);
  2056. // Check if there's at least one recipient.
  2057. if (empty($recipientList['to']) && empty($recipientList['bcc']))
  2058. $post_errors[] = 'no_to';
  2059. // Make sure that we remove the members who did get it from the screen.
  2060. if (!$is_recipient_change)
  2061. {
  2062. foreach ($recipientList as $recipientType => $dummy)
  2063. {
  2064. if (!empty($namesNotFound[$recipientType]))
  2065. {
  2066. $post_errors[] = 'bad_' . $recipientType;
  2067. // Since we already have a post error, remove the previous one.
  2068. $post_errors = array_diff($post_errors, array('no_to'));
  2069. foreach ($namesNotFound[$recipientType] as $name)
  2070. $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name);
  2071. }
  2072. }
  2073. }
  2074. // Did they make any mistakes?
  2075. if ($_REQUEST['subject'] == '')
  2076. $post_errors[] = 'no_subject';
  2077. if (!isset($_REQUEST['message']) || $_REQUEST['message'] == '')
  2078. $post_errors[] = 'no_message';
  2079. elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_REQUEST['message']) > $modSettings['max_messageLength'])
  2080. $post_errors[] = 'long_message';
  2081. else
  2082. {
  2083. // Preparse the message.
  2084. $message = $_REQUEST['message'];
  2085. preparsecode($message);
  2086. // Make sure there's still some content left without the tags.
  2087. if ($smcFunc['htmltrim'](strip_tags(parse_bbc($smcFunc['htmlspecialchars']($message, ENT_QUOTES), false), '<img>')) === '' && (!allowedTo('admin_forum') || strpos($message, '[html]') === false))
  2088. $post_errors[] = 'no_message';
  2089. }
  2090. // Wrong verification code?
  2091. if (!$user_info['is_admin'] && !isset($_REQUEST['xml']) && !empty($modSettings['pm_posts_verification']) && $user_info['posts'] < $modSettings['pm_posts_verification'])
  2092. {
  2093. require_once($sourcedir . '/Subs-Editor.php');
  2094. $verificationOptions = array(
  2095. 'id' => 'pm',
  2096. );
  2097. $context['require_verification'] = create_control_verification($verificationOptions, true);
  2098. if (is_array($context['require_verification']))
  2099. $post_errors = array_merge($post_errors, $context['require_verification']);
  2100. }
  2101. // If they did, give a chance to make ammends.
  2102. if (!empty($post_errors) && !$is_recipient_change && !isset($_REQUEST['preview']) && !isset($_REQUEST['xml']))
  2103. return messagePostError($post_errors, $namedRecipientList, $recipientList);
  2104. // Want to take a second glance before you send?
  2105. if (isset($_REQUEST['preview']))
  2106. {
  2107. // Set everything up to be displayed.
  2108. $context['preview_subject'] = $smcFunc['htmlspecialchars']($_REQUEST['subject']);
  2109. $context['preview_message'] = $smcFunc['htmlspecialchars']($_REQUEST['message'], ENT_QUOTES);
  2110. preparsecode($context['preview_message'], true);
  2111. // Parse out the BBC if it is enabled.
  2112. $context['preview_message'] = parse_bbc($context['preview_message']);
  2113. // Censor, as always.
  2114. censorText($context['preview_subject']);
  2115. censorText($context['preview_message']);
  2116. // Set a descriptive title.
  2117. $context['page_title'] = $txt['preview'] . ' - ' . $context['preview_subject'];
  2118. // Pretend they messed up but don't ignore if they really did :P.
  2119. return messagePostError($post_errors, $namedRecipientList, $recipientList);
  2120. }
  2121. // Adding a recipient cause javascript ain't working?
  2122. elseif ($is_recipient_change)
  2123. {
  2124. // Maybe we couldn't find one?
  2125. foreach ($namesNotFound as $recipientType => $names)
  2126. {
  2127. $post_errors[] = 'bad_' . $recipientType;
  2128. foreach ($names as $name)
  2129. $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name);
  2130. }
  2131. return messagePostError(array(), $namedRecipientList, $recipientList);
  2132. }
  2133. // Want to save this as a draft and think about it some more?
  2134. if ($context['drafts_pm_save'] && isset($_POST['save_draft']))
  2135. {
  2136. SavePMDraft($post_errors, $recipientList);
  2137. return messagePostError($post_errors, $namedRecipientList, $recipientList);
  2138. }
  2139. // Before we send the PM, let's make sure we don't have an abuse of numbers.
  2140. elseif (!empty($modSettings['max_pm_recipients']) && count($recipientList['to']) + count($recipientList['bcc']) > $modSettings['max_pm_recipients'] && !allowedTo(array('moderate_forum', 'send_mail', 'admin_forum')))
  2141. {
  2142. $context['send_log'] = array(
  2143. 'sent' => array(),
  2144. 'failed' => array(sprintf($txt['pm_too_many_recipients'], $modSettings['max_pm_recipients'])),
  2145. );
  2146. return messagePostError($post_errors, $namedRecipientList, $recipientList);
  2147. }
  2148. // Protect from message spamming.
  2149. spamProtection('pm');
  2150. // Prevent double submission of this form.
  2151. checkSubmitOnce('check');
  2152. // Do the actual sending of the PM.
  2153. if (!empty($recipientList['to']) || !empty($recipientList['bcc']))
  2154. $context['send_log'] = sendpm($recipientList, $_REQUEST['subject'], $_REQUEST['message'], true, null, !empty($_REQUEST['pm_head']) ? (int) $_REQUEST['pm_head'] : 0);
  2155. else
  2156. $context['send_log'] = array(
  2157. 'sent' => array(),
  2158. 'failed' => array()
  2159. );
  2160. // Mark the message as "replied to".
  2161. if (!empty($context['send_log']['sent']) && !empty($_REQUEST['replied_to']) && isset($_REQUEST['f']) && $_REQUEST['f'] == 'inbox')
  2162. {
  2163. $smcFunc['db_query']('', '
  2164. UPDATE {db_prefix}pm_recipients
  2165. SET is_read = is_read | 2
  2166. WHERE id_pm = {int:replied_to}
  2167. AND id_member = {int:current_member}',
  2168. array(
  2169. 'current_member' => $user_info['id'],
  2170. 'replied_to' => (int) $_REQUEST['replied_to'],
  2171. )
  2172. );
  2173. }
  2174. // If one or more of the recipient were invalid, go back to the post screen with the failed usernames.
  2175. if (!empty($context['send_log']['failed']))
  2176. return messagePostError($post_errors, $namesNotFound, array(
  2177. 'to' => array_intersect($recipientList['to'], $context['send_log']['failed']),
  2178. 'bcc' => array_intersect($recipientList['bcc'], $context['send_log']['failed'])
  2179. ));
  2180. // Message sent successfully?
  2181. if (!empty($context['send_log']) && empty($context['send_log']['failed']))
  2182. {
  2183. $context['current_label_redirect'] = $context['current_label_redirect'] . ';done=sent';
  2184. // If we had a PM draft for this one, then its time to remove it since it was just sent
  2185. if ($context['drafts_pm_save'] && !empty($_POST['id_pm_draft']))
  2186. DeleteDraft($_POST['id_pm_draft']);
  2187. }
  2188. // Go back to the where they sent from, if possible...
  2189. redirectexit($context['current_label_redirect']);
  2190. }
  2191. /**
  2192. * This function lists all buddies for wireless protocols.
  2193. */
  2194. function WirelessAddBuddy()
  2195. {
  2196. global $scripturl, $txt, $user_info, $context, $smcFunc;
  2197. isAllowedTo('pm_send');
  2198. $context['page_title'] = $txt['wireless_pm_add_buddy'];
  2199. $current_buddies = empty($_REQUEST['u']) ? array() : explode(',', $_REQUEST['u']);
  2200. foreach ($current_buddies as $key => $buddy)
  2201. $current_buddies[$key] = (int) $buddy;
  2202. $base_url = $scripturl . '?action=pm;sa=send;u=' . (empty($current_buddies) ? '' : implode(',', $current_buddies) . ',');
  2203. $context['pm_href'] = $scripturl . '?action=pm;sa=send' . (empty($current_buddies) ? '' : ';u=' . implode(',', $current_buddies));
  2204. $context['buddies'] = array();
  2205. if (!empty($user_info['buddies']))
  2206. {
  2207. $request = $smcFunc['db_query']('', '
  2208. SELECT id_member, real_name
  2209. FROM {db_prefix}members
  2210. WHERE id_member IN ({array_int:buddy_list})
  2211. ORDER BY real_name
  2212. LIMIT ' . count($user_info['buddies']),
  2213. array(
  2214. 'buddy_list' => $user_info['buddies'],
  2215. )
  2216. );
  2217. while ($row = $smcFunc['db_fetch_assoc']($request))
  2218. $context['buddies'][] = array(
  2219. 'id' => $row['id_member'],
  2220. 'name' => $row['real_name'],
  2221. 'selected' => in_array($row['id_member'], $current_buddies),
  2222. 'add_href' => $base_url . $row['id_member'],
  2223. );
  2224. $smcFunc['db_free_result']($request);
  2225. }
  2226. }
  2227. /**
  2228. * This function performs all additional stuff...
  2229. */
  2230. function MessageActionsApply()
  2231. {
  2232. global $txt, $context, $user_info, $options, $smcFunc;
  2233. checkSession('request');
  2234. if (isset($_REQUEST['del_selected']))
  2235. $_REQUEST['pm_action'] = 'delete';
  2236. if (isset($_REQUEST['pm_action']) && $_REQUEST['pm_action'] != '' && !empty($_REQUEST['pms']) && is_array($_REQUEST['pms']))
  2237. {
  2238. foreach ($_REQUEST['pms'] as $pm)
  2239. $_REQUEST['pm_actions'][(int) $pm] = $_REQUEST['pm_action'];
  2240. }
  2241. if (empty($_REQUEST['pm_actions']))
  2242. redirectexit($context['current_label_redirect']);
  2243. // If we are in conversation, we may need to apply this to every message in the conversation.
  2244. if ($context['display_mode'] == 2 && isset($_REQUEST['conversation']))
  2245. {
  2246. $id_pms = array();
  2247. foreach ($_REQUEST['pm_actions'] as $pm => $dummy)
  2248. $id_pms[] = (int) $pm;
  2249. $request = $smcFunc['db_query']('', '
  2250. SELECT id_pm_head, id_pm
  2251. FROM {db_prefix}personal_messages
  2252. WHERE id_pm IN ({array_int:id_pms})',
  2253. array(
  2254. 'id_pms' => $id_pms,
  2255. )
  2256. );
  2257. $pm_heads = array();
  2258. while ($row = $smcFunc['db_fetch_assoc']($request))
  2259. $pm_heads[$row['id_pm_head']] = $row['id_pm'];
  2260. $smcFunc['db_free_result']($request);
  2261. $request = $smcFunc['db_query']('', '
  2262. SELECT id_pm, id_pm_head
  2263. FROM {db_prefix}personal_messages
  2264. WHERE id_pm_head IN ({array_int:pm_heads})',
  2265. array(
  2266. 'pm_heads' => array_keys($pm_heads),
  2267. )
  2268. );
  2269. // Copy the action from the single to PM to the others.
  2270. while ($row = $smcFunc['db_fetch_assoc']($request))
  2271. {
  2272. if (isset($pm_heads[$row['id_pm_head']]) && isset($_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]]))
  2273. $_REQUEST['pm_actions'][$row['id_pm']] = $_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]];
  2274. }
  2275. $smcFunc['db_free_result']($request);
  2276. }
  2277. $to_delete = array();
  2278. $to_label = array();
  2279. $to_unlabel = array();
  2280. $label_type = array();
  2281. $labels = array();
  2282. foreach ($_REQUEST['pm_actions'] as $pm => $action)
  2283. {
  2284. if ($action === 'delete')
  2285. $to_delete[] = (int) $pm;
  2286. else
  2287. {
  2288. if (substr($action, 0, 4) == 'add_')
  2289. {
  2290. $type = 'add';
  2291. $action = substr($action, 4);
  2292. }
  2293. elseif (substr($action, 0, 4) == 'rem_')
  2294. {
  2295. $type = 'rem';
  2296. $action = substr($action, 4);
  2297. }
  2298. else
  2299. $type = 'unk';
  2300. if ($action == '-1' || (int) $action > 0)
  2301. {
  2302. $to_label[(int) $pm] = (int) $action;
  2303. $label_type[(int) $pm] = $type;
  2304. }
  2305. }
  2306. }
  2307. // Deleting, it looks like?
  2308. if (!empty($to_delete))
  2309. deleteMessages($to_delete, $context['display_mode'] == 2 ? null : $context['folder']);
  2310. // Are we labeling anything?
  2311. if (!empty($to_label) && $context['folder'] == 'inbox')
  2312. {
  2313. $updateErrors = 0;
  2314. // Get information about each message...
  2315. $request = $smcFunc['db_query']('', '
  2316. SELECT id_pm, in_inbox
  2317. FROM {db_prefix}pm_recipients
  2318. WHERE id_member = {int:current_member}
  2319. AND id_pm IN ({array_int:to_label})
  2320. LIMIT ' . count($to_label),
  2321. array(
  2322. 'current_member' => $user_info['id'],
  2323. 'to_label' => array_keys($to_label),
  2324. )
  2325. );
  2326. while ($row = $smcFunc['db_fetch_assoc']($request))
  2327. {
  2328. // Get the labels as well, but only if we're not dealing with the inbox
  2329. if ($to_label[$row['id_pm']] != '-1')
  2330. {
  2331. // The JOIN here ensures we only get labels that this user has applied to this PM
  2332. $request2 = $smcFunc['db_query']('', '
  2333. SELECT l.id_label, pml.id_pm
  2334. FROM {db_prefix}pm_labels AS l
  2335. INNER JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_label = l.id_label)
  2336. WHERE l.id_member = {int:current_member}
  2337. AND pml.id_pm = {int:current_pm}',
  2338. array(
  2339. 'current_member' => $user_info['id'],
  2340. 'current_pm' => $row['id_pm'],
  2341. )
  2342. );
  2343. while ($row2 = $smcFunc['db_fetch_assoc']($request2))
  2344. {
  2345. $labels[$row2['id_label']] = $row2['id_label'];
  2346. }
  2347. $smcFunc['db_free_result']($request2);
  2348. }
  2349. // Use this to determine what to do later on...
  2350. $original_labels = $labels;
  2351. // Ignore inbox for now - we'll deal with it later
  2352. if ($to_label[$row['id_pm']] != '-1')
  2353. {
  2354. // If this label is in the list and we're not adding it, remove it
  2355. if (array_key_exists($to_label[$row['id_pm']], $labels) && $type !== 'add')
  2356. unset($labels[$to_label[$row['id_pm']]]);
  2357. else if ($type !== 'remove')
  2358. $labels[$to_label[$row['id_pm']]] = $to_label[$row['id_pm']];
  2359. }
  2360. // Removing all labels, so make sure it's in the inbox
  2361. if ($type == 'rem' && empty($labels))
  2362. $in_inbox = 1;
  2363. // Adding new labels, but removing inbox and applying new ones
  2364. elseif($type == 'add' && !empty($options['pm_remove_inbox_label']) && !empty($labels))
  2365. $in_inbox = 0;
  2366. // Just adding it to the inbox
  2367. else
  2368. $in_inbox = 1;
  2369. // Are we adding it to or removing it from the inbox?
  2370. if ($in_inbox != $row['in_inbox'])
  2371. {
  2372. $smcFunc['db_query']('', '
  2373. UPDATE {db_prefix}pm_recipients
  2374. SET in_inbox = {int:in_inbox}
  2375. WHERE id_pm = {int:id_pm}
  2376. AND id_member = {int:current_member}',
  2377. array(
  2378. 'current_member' => $user_info['id'],
  2379. 'id_pm' => $row['id_pm'],
  2380. 'in_inbox' => $in_inbox,
  2381. )
  2382. );
  2383. }
  2384. // Which labels do we not want now?
  2385. $labels_to_remove = array_diff($original_labels, $labels);
  2386. // Don't apply it if it's already applied
  2387. $labels_to_apply = array_diff($labels, $original_labels);
  2388. // Remove labels
  2389. if (!empty($labels_to_remove))
  2390. {
  2391. $smcFunc['db_query']('', '
  2392. DELETE FROM {db_prefix}pm_labeled_messages
  2393. WHERE id_pm = {int:current_pm}
  2394. AND id_label IN ({array_int:labels_to_remove})',
  2395. array(
  2396. 'current_pm' => $row['id_pm'],
  2397. 'labels_to_remove' => $labels_to_remove,
  2398. )
  2399. );
  2400. }
  2401. // Add new ones
  2402. if (!empty($labels_to_apply))
  2403. {
  2404. $inserts = array();
  2405. foreach ($labels_to_apply as $label)
  2406. $inserts[] = array($row['id_pm'], $label);
  2407. $smcFunc['db_insert']('',
  2408. '{db_prefix}pm_labeled_messages',
  2409. array('id_pm' => 'int', 'id_label' => 'int'),
  2410. $inserts,
  2411. array()
  2412. );
  2413. }
  2414. }
  2415. $smcFunc['db_free_result']($request);
  2416. }
  2417. // Back to the folder.
  2418. $_SESSION['pm_selected'] = array_keys($to_label);
  2419. redirectexit($context['current_label_redirect'] . (count($to_label) == 1 ? '#msg' . $_SESSION['pm_selected'][0] : ''), count($to_label) == 1 && isBrowser('ie'));
  2420. }
  2421. /**
  2422. * Are you sure you want to PERMANENTLY (mostly) delete ALL your messages?
  2423. */
  2424. function MessageKillAllQuery()
  2425. {
  2426. global $txt, $context;
  2427. // Only have to set up the template....
  2428. $context['sub_template'] = 'ask_delete';
  2429. $context['page_title'] = $txt['delete_all'];
  2430. $context['delete_all'] = $_REQUEST['f'] == 'all';
  2431. // And set the folder name...
  2432. $txt['delete_all'] = str_replace('PMBOX', $context['folder'] != 'sent' ? $txt['inbox'] : $txt['sent_items'], $txt['delete_all']);
  2433. }
  2434. /**
  2435. * Delete ALL the messages!
  2436. */
  2437. function MessageKillAll()
  2438. {
  2439. global $context;
  2440. checkSession('get');
  2441. // If all then delete all messages the user has.
  2442. if ($_REQUEST['f'] == 'all')
  2443. deleteMessages(null, null);
  2444. // Otherwise just the selected folder.
  2445. else
  2446. deleteMessages(null, $_REQUEST['f'] != 'sent' ? 'inbox' : 'sent');
  2447. // Done... all gone.
  2448. redirectexit($context['current_label_redirect']);
  2449. }
  2450. /**
  2451. * This function allows the user to delete all messages older than so many days.
  2452. */
  2453. function MessagePrune()
  2454. {
  2455. global $txt, $context, $user_info, $scripturl, $smcFunc;
  2456. // Actually delete the messages.
  2457. if (isset($_REQUEST['age']))
  2458. {
  2459. checkSession();
  2460. // Calculate the time to delete before.
  2461. $deleteTime = max(0, time() - (86400 * (int) $_REQUEST['age']));
  2462. // Array to store the IDs in.
  2463. $toDelete = array();
  2464. // Select all the messages they have sent older than $deleteTime.
  2465. $request = $smcFunc['db_query']('', '
  2466. SELECT id_pm
  2467. FROM {db_prefix}personal_messages
  2468. WHERE deleted_by_sender = {int:not_deleted}
  2469. AND id_member_from = {int:current_member}
  2470. AND msgtime < {int:msgtime}',
  2471. array(
  2472. 'current_member' => $user_info['id'],
  2473. 'not_deleted' => 0,
  2474. 'msgtime' => $deleteTime,
  2475. )
  2476. );
  2477. while ($row = $smcFunc['db_fetch_row']($request))
  2478. $toDelete[] = $row[0];
  2479. $smcFunc['db_free_result']($request);
  2480. // Select all messages in their inbox older than $deleteTime.
  2481. $request = $smcFunc['db_query']('', '
  2482. SELECT pmr.id_pm
  2483. FROM {db_prefix}pm_recipients AS pmr
  2484. INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)
  2485. WHERE pmr.deleted = {int:not_deleted}
  2486. AND pmr.id_member = {int:current_member}
  2487. AND pm.msgtime < {int:msgtime}',
  2488. array(
  2489. 'current_member' => $user_info['id'],
  2490. 'not_deleted' => 0,
  2491. 'msgtime' => $deleteTime,
  2492. )
  2493. );
  2494. while ($row = $smcFunc['db_fetch_assoc']($request))
  2495. $toDelete[] = $row['id_pm'];
  2496. $smcFunc['db_free_result']($request);
  2497. // Delete the actual messages.
  2498. deleteMessages($toDelete);
  2499. // Go back to their inbox.
  2500. redirectexit($context['current_label_redirect']);
  2501. }
  2502. // Build the link tree elements.
  2503. $context['linktree'][] = array(
  2504. 'url' => $scripturl . '?action=pm;sa=prune',
  2505. 'name' => $txt['pm_prune']
  2506. );
  2507. $context['sub_template'] = 'prune';
  2508. $context['page_title'] = $txt['pm_prune'];
  2509. }
  2510. /**
  2511. * Delete the specified personal messages.
  2512. *
  2513. * @param array $personal_messages array of pm ids
  2514. * @param string $folder = null
  2515. * @param int $owner = null
  2516. */
  2517. function deleteMessages($personal_messages, $folder = null, $owner = null)
  2518. {
  2519. global $user_info, $smcFunc;
  2520. if ($owner === null)
  2521. $owner = array($user_info['id']);
  2522. elseif (empty($owner))
  2523. return;
  2524. elseif (!is_array($owner))
  2525. $owner = array($owner);
  2526. if ($personal_messages !== null)
  2527. {
  2528. if (empty($personal_messages) || !is_array($personal_messages))
  2529. return;
  2530. foreach ($personal_messages as $index => $delete_id)
  2531. $personal_messages[$index] = (int) $delete_id;
  2532. $where = '
  2533. AND id_pm IN ({array_int:pm_list})';
  2534. }
  2535. else
  2536. $where = '';
  2537. if ($folder == 'sent' || $folder === null)
  2538. {
  2539. $smcFunc['db_query']('', '
  2540. UPDATE {db_prefix}personal_messages
  2541. SET deleted_by_sender = {int:is_deleted}
  2542. WHERE id_member_from IN ({array_int:member_list})
  2543. AND deleted_by_sender = {int:not_deleted}' . $where,
  2544. array(
  2545. 'member_list' => $owner,
  2546. 'is_deleted' => 1,
  2547. 'not_deleted' => 0,
  2548. 'pm_list' => $personal_messages !== null ? array_unique($personal_messages) : array(),
  2549. )
  2550. );
  2551. }
  2552. if ($folder != 'sent' || $folder === null)
  2553. {
  2554. // Calculate the number of messages each member's gonna lose...
  2555. $request = $smcFunc['db_query']('', '
  2556. SELECT id_member, COUNT(*) AS num_deleted_messages, CASE WHEN is_read & 1 >= 1 THEN 1 ELSE 0 END AS is_read
  2557. FROM {db_prefix}pm_recipients
  2558. WHERE id_member IN ({array_int:member_list})
  2559. AND deleted = {int:not_deleted}' . $where . '
  2560. GROUP BY id_member, is_read',
  2561. array(
  2562. 'member_list' => $owner,
  2563. 'not_deleted' => 0,
  2564. 'pm_list' => $personal_messages !== null ? array_unique($personal_messages) : array(),
  2565. )
  2566. );
  2567. // ...And update the statistics accordingly - now including unread messages!.
  2568. while ($row = $smcFunc['db_fetch_assoc']($request))
  2569. {
  2570. if ($row['is_read'])
  2571. updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages']));
  2572. else
  2573. updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages'], 'unread_messages' => $where == '' ? 0 : 'unread_messages - ' . $row['num_deleted_messages']));
  2574. // If this is the current member we need to make their message count correct.
  2575. if ($user_info['id'] == $row['id_member'])
  2576. {
  2577. $user_info['messages'] -= $row['num_deleted_messages'];
  2578. if (!($row['is_read']))
  2579. $user_info['unread_messages'] -= $row['num_deleted_messages'];
  2580. }
  2581. }
  2582. $smcFunc['db_free_result']($request);
  2583. // Do the actual deletion.
  2584. $smcFunc['db_query']('', '
  2585. UPDATE {db_prefix}pm_recipients
  2586. SET deleted = {int:is_deleted}
  2587. WHERE id_member IN ({array_int:member_list})
  2588. AND deleted = {int:not_deleted}' . $where,
  2589. array(
  2590. 'member_list' => $owner,
  2591. 'is_deleted' => 1,
  2592. 'not_deleted' => 0,
  2593. 'pm_list' => $personal_messages !== null ? array_unique($personal_messages) : array(),
  2594. )
  2595. );
  2596. $labels = array();
  2597. // Get any labels that the owner may have applied to this PM
  2598. // The join is here to ensure we only get labels applied by the specified member(s)
  2599. $get_labels = $smcFunc['db_query']('', '
  2600. SELECT pml.id_label
  2601. FROM {db_prefix}pm_labels AS l
  2602. INNER JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_label = l.id_label)
  2603. WHERE l.id_member IN ({array_int:member_list})' . $where,
  2604. array(
  2605. 'member_list' => $owner,
  2606. 'pm_list' => $personal_messages !== null ? array_unique($personal_messages) : array(),
  2607. )
  2608. );
  2609. while ($row = $smcFunc['db_fetch_assoc']($get_labels))
  2610. {
  2611. $labels[] = $row['id_label'];
  2612. }
  2613. $smcFunc['db_free_result']($get_labels);
  2614. if (!empty($labels))
  2615. {
  2616. $smcFunc['db_query']('', '
  2617. DELETE FROM {db_prefix}pm_labeled_messages
  2618. WHERE label_id IN ({array_int:labels})' . $where,
  2619. array(
  2620. 'labels' => $labels,
  2621. 'pm_list' => $personal_messages !== null ? array_unique($personal_messages) : array(),
  2622. )
  2623. );
  2624. }
  2625. }
  2626. // If sender and recipients all have deleted their message, it can be removed.
  2627. $request = $smcFunc['db_query']('', '
  2628. SELECT pm.id_pm AS sender, pmr.id_pm
  2629. FROM {db_prefix}personal_messages AS pm
  2630. LEFT JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm AND pmr.deleted = {int:not_deleted})
  2631. WHERE pm.deleted_by_sender = {int:is_deleted}
  2632. ' . str_replace('id_pm', 'pm.id_pm', $where) . '
  2633. GROUP BY sender, pmr.id_pm
  2634. HAVING pmr.id_pm IS null',
  2635. array(
  2636. 'not_deleted' => 0,
  2637. 'is_deleted' => 1,
  2638. 'pm_list' => $personal_messages !== null ? array_unique($personal_messages) : array(),
  2639. )
  2640. );
  2641. $remove_pms = array();
  2642. while ($row = $smcFunc['db_fetch_assoc']($request))
  2643. $remove_pms[] = $row['sender'];
  2644. $smcFunc['db_free_result']($request);
  2645. if (!empty($remove_pms))
  2646. {
  2647. $smcFunc['db_query']('', '
  2648. DELETE FROM {db_prefix}personal_messages
  2649. WHERE id_pm IN ({array_int:pm_list})',
  2650. array(
  2651. 'pm_list' => $remove_pms,
  2652. )
  2653. );
  2654. $smcFunc['db_query']('', '
  2655. DELETE FROM {db_prefix}pm_recipients
  2656. WHERE id_pm IN ({array_int:pm_list})',
  2657. array(
  2658. 'pm_list' => $remove_pms,
  2659. )
  2660. );
  2661. $smcFunc['db_query']('', '
  2662. DELETE FROM {db_prefix}pm_labeled_messages
  2663. WHERE id_pm IN ({array_int:pm_list})',
  2664. array(
  2665. 'pm_list' => $remove_pms,
  2666. )
  2667. );
  2668. }
  2669. // Any cached numbers may be wrong now.
  2670. cache_put_data('labelCounts:' . $user_info['id'], null, 720);
  2671. }
  2672. /**
  2673. * Mark the specified personal messages read.
  2674. *
  2675. * @param array $personal_messages = null, array of pm ids
  2676. * @param string $label = null, if label is set, only marks messages with that label
  2677. * @param int $owner = null, if owner is set, marks messages owned by that member id
  2678. */
  2679. function markMessages($personal_messages = null, $label = null, $owner = null)
  2680. {
  2681. global $user_info, $context, $smcFunc;
  2682. if ($owner === null)
  2683. $owner = $user_info['id'];
  2684. $in_inbox = '';
  2685. // Marking all messages with a specific label as read?
  2686. // If we know which PMs we're marking read, then we don't need label info
  2687. if ($personal_messages === null && $label !== null && $label != '-1')
  2688. {
  2689. $personal_messages = array();
  2690. $get_messages = $smcFunc['db_query']('', '
  2691. SELECT id_pm
  2692. FROM {db_prefix}pm_labeled_messages
  2693. WHERE id_label = {int:current_label}',
  2694. array(
  2695. 'current_label' => $label,
  2696. )
  2697. );
  2698. while ($row = $smcFunc['db_fetch_assoc']($get_messages))
  2699. {
  2700. $personal_messages[] = $row['id_pm'];
  2701. }
  2702. $smcFunc['db_free_result']($get_messages);
  2703. }
  2704. elseif ($label = '-1')
  2705. {
  2706. // Marking all PMs in your inbox read
  2707. $in_inbox = '
  2708. AND in_inbox = {int:in_inbox}';
  2709. }
  2710. $smcFunc['db_query']('', '
  2711. UPDATE {db_prefix}pm_recipients
  2712. SET is_read = is_read | 1
  2713. WHERE id_member = {int:id_member}
  2714. AND NOT (is_read & 1 >= 1)' . ($personal_messages !== null ? '
  2715. AND id_pm IN ({array_int:personal_messages})' : '') . $in_inbox,
  2716. array(
  2717. 'personal_messages' => $personal_messages,
  2718. 'id_member' => $owner,
  2719. 'in_inbox' => 1,
  2720. )
  2721. );
  2722. // If something wasn't marked as read, get the number of unread messages remaining.
  2723. if ($smcFunc['db_affected_rows']() > 0)
  2724. {
  2725. if ($owner == $user_info['id'])
  2726. {
  2727. foreach ($context['labels'] as $label)
  2728. $context['labels'][(int) $label['id']]['unread_messages'] = 0;
  2729. }
  2730. $result = $smcFunc['db_query']('', '
  2731. SELECT id_pm, in_inbox, COUNT(*) AS num
  2732. FROM {db_prefix}pm_recipients
  2733. WHERE id_member = {int:id_member}
  2734. AND NOT (is_read & 1 >= 1)
  2735. AND deleted = {int:is_not_deleted}',
  2736. array(
  2737. 'id_member' => $owner,
  2738. 'is_not_deleted' => 0,
  2739. )
  2740. );
  2741. $total_unread = 0;
  2742. while ($row = $smcFunc['db_fetch_assoc']($result))
  2743. {
  2744. $total_unread += $row['num'];
  2745. if ($owner != $user_info['id'] || empty($row['id_pm']))
  2746. continue;
  2747. $this_labels = array();
  2748. // Get all the labels
  2749. $result2 = $smcFunc['db_query']('', '
  2750. SELECT pml.id_label
  2751. FROM {db_prefix}pm_labels AS l
  2752. INNER JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_label = l.id_label)
  2753. WHERE l.id_member = {int:id_member}
  2754. AND pml.id_pm = {int:current_pm}',
  2755. array(
  2756. 'id_member' => $owner,
  2757. 'current_pm' => $row['id_pm'],
  2758. )
  2759. );
  2760. while ($row2 = $smcFunc['db_fetch_assoc']($result2))
  2761. {
  2762. $this_labels[] = $row2['id_label'];
  2763. }
  2764. $smcFunc['db_free_result']($result2);
  2765. foreach ($this_labels as $this_label)
  2766. $context['labels'][$this_label]['unread_messages'] += $row['num'];
  2767. if ($row['in_inbox'] == 1)
  2768. $context['labels'][-1]['unread_messages'] += $row['num'];
  2769. }
  2770. $smcFunc['db_free_result']($result);
  2771. // Need to store all this.
  2772. cache_put_data('labelCounts:' . $owner, $context['labels'], 720);
  2773. updateMemberData($owner, array('unread_messages' => $total_unread));
  2774. // If it was for the current member, reflect this in the $user_info array too.
  2775. if ($owner == $user_info['id'])
  2776. $user_info['unread_messages'] = $total_unread;
  2777. }
  2778. }
  2779. /**
  2780. * This function handles adding, deleting and editing labels on messages.
  2781. */
  2782. function ManageLabels()
  2783. {
  2784. global $txt, $context, $user_info, $scripturl, $smcFunc;
  2785. // Build the link tree elements...
  2786. $context['linktree'][] = array(
  2787. 'url' => $scripturl . '?action=pm;sa=manlabels',
  2788. 'name' => $txt['pm_manage_labels']
  2789. );
  2790. $context['page_title'] = $txt['pm_manage_labels'];
  2791. $context['sub_template'] = 'labels';
  2792. $the_labels = array();
  2793. $labels_to_add = array();
  2794. $labels_to_remove = array();
  2795. $label_updates = array();
  2796. // Add all existing labels to the array to save, slashing them as necessary...
  2797. foreach ($context['labels'] as $label)
  2798. {
  2799. if ($label['id'] != -1)
  2800. $the_labels[$label['id']] = $label['name'];
  2801. }
  2802. if (isset($_POST[$context['session_var']]))
  2803. {
  2804. checkSession();
  2805. // This will be for updating messages.
  2806. $message_changes = array();
  2807. $rule_changes = array();
  2808. // Will most likely need this.
  2809. LoadRules();
  2810. // Adding a new label?
  2811. if (isset($_POST['add']))
  2812. {
  2813. $_POST['label'] = strtr($smcFunc['htmlspecialchars'](trim($_POST['label'])), array(',' => '&#044;'));
  2814. if ($smcFunc['strlen']($_POST['label']) > 30)
  2815. $_POST['label'] = $smcFunc['substr']($_POST['label'], 0, 30);
  2816. if ($_POST['label'] != '')
  2817. {
  2818. $the_labels[] = $_POST['label'];
  2819. $labels_to_add[] = $_POST['label'];
  2820. }
  2821. }
  2822. // Deleting an existing label?
  2823. elseif (isset($_POST['delete'], $_POST['delete_label']))
  2824. {
  2825. foreach ($_POST['delete_label'] AS $label)
  2826. {
  2827. unset($the_labels[$label]);
  2828. $labels_to_remove[] = $label;
  2829. }
  2830. }
  2831. // The hardest one to deal with... changes.
  2832. elseif (isset($_POST['save']) && !empty($_POST['label_name']))
  2833. {
  2834. foreach ($the_labels as $id => $name)
  2835. {
  2836. if ($id == -1)
  2837. continue;
  2838. elseif (isset($_POST['label_name'][$id]))
  2839. {
  2840. $_POST['label_name'][$id] = trim(strtr($smcFunc['htmlspecialchars']($_POST['label_name'][$id]), array(',' => '&#044;')));
  2841. if ($smcFunc['strlen']($_POST['label_name'][$id]) > 30)
  2842. $_POST['label_name'][$id] = $smcFunc['substr']($_POST['label_name'][$id], 0, 30);
  2843. if ($_POST['label_name'][$id] != '')
  2844. {
  2845. // Changing the name of this label?
  2846. if ($the_labels[$id] != $_POST['label_name'][$id])
  2847. $label_updates[$id] = $_POST['label_name'][$id];
  2848. $the_labels[(int) $id] = $_POST['label_name'][$id];
  2849. }
  2850. else
  2851. {
  2852. unset($the_labels[(int) $id]);
  2853. $labels_to_remove[] = $id;
  2854. $message_changes[(int) $id] = true;
  2855. }
  2856. }
  2857. }
  2858. }
  2859. // Save any new labels
  2860. if (!empty($labels_to_add))
  2861. {
  2862. $inserts = array();
  2863. foreach ($labels_to_add AS $label)
  2864. $inserts[] = array($user_info['id'], $label);
  2865. $smcFunc['db_insert']('', '{db_prefix}pm_labels', array('id_member' => 'int', 'name' => 'string-30'), $inserts, array());
  2866. }
  2867. // Update existing labels as needed
  2868. if (!empty($label_upates))
  2869. {
  2870. foreach ($label_updates AS $id => $name)
  2871. {
  2872. $smcFunc['db_query']('', '
  2873. UPDATE {db_prefix}labels
  2874. SET name = {string:name}
  2875. WHERE id_label = {int:id_label}',
  2876. array(
  2877. 'name' => $name,
  2878. 'id' => $id
  2879. )
  2880. );
  2881. }
  2882. }
  2883. // Now the fun part... Deleting labels.
  2884. if (!empty($labels_to_remove))
  2885. {
  2886. // First delete the labels
  2887. $smcFunc['db_query']('', '
  2888. DELETE FROM {db_prefix}pm_labels
  2889. WHERE id_label IN ({array_int:labels_to_delete})',
  2890. array(
  2891. 'labels_to_delete' => $labels_to_delete,
  2892. )
  2893. );
  2894. // Get any PMs with no labels which aren't in the inbox
  2895. $get_stranded_pms = $smcFunc['db_query']('', '
  2896. SELECT pmr.id_pm
  2897. FROM {db_prefix}pm_recipients
  2898. LEFT JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_pm = pmr.id_pm)
  2899. WHERE pml.id_label IS NULL
  2900. AND pmr.in_inbox = {int:not_in_inbox}
  2901. AND pmr.deleted = {int:not_deleted}
  2902. AND pmr.id_member = {int:current_member}',
  2903. array(
  2904. 'not_in_inbox' => 0,
  2905. 'not_deleted' => 0,
  2906. 'current_member' => $user_info['id'],
  2907. )
  2908. );
  2909. $stranded_messages = array();
  2910. while ($row = $smcFunc['db_fetch_assoc']($get_stranded_pms))
  2911. {
  2912. $stranded_messages[] = $row['id_pm'];
  2913. }
  2914. $smcFunc['db_free_result']($get_stranded_pms);
  2915. // Move these back to the inbox if necessary
  2916. if (!empty($stranded_messages))
  2917. {
  2918. // We now have more messages in the inbox
  2919. $context['labels'][-1]['messages'] += count($stranded_messages);
  2920. $smcFunc['db_query']('', '
  2921. UPDATE {db_prefix}pm_recipients
  2922. SET in_inbox = {int:in_inbox}
  2923. WHERE id_pm IN ({array_int:stranded_messages})
  2924. AND id_member = {int:current_member}',
  2925. array(
  2926. 'stranded_messages' => $stranded_messages,
  2927. 'in_inbox' => 1,
  2928. )
  2929. );
  2930. }
  2931. // Now do the same the rules - check through each rule.
  2932. foreach ($context['rules'] as $k => $rule)
  2933. {
  2934. // Each action...
  2935. foreach ($rule['actions'] as $k2 => $action)
  2936. {
  2937. if ($action['t'] != 'lab' || !in_array($action['v'], $labels_to_remove))
  2938. continue;
  2939. $rule_changes[] = $rule['id'];
  2940. // Can't apply this label anymore if it doesn't exist
  2941. unset($context['rules'][$k]['actions'][$k2]);
  2942. }
  2943. }
  2944. }
  2945. // If we have rules to change do so now.
  2946. if (!empty($rule_changes))
  2947. {
  2948. $rule_changes = array_unique($rule_changes);
  2949. // Update/delete as appropriate.
  2950. foreach ($rule_changes as $k => $id)
  2951. if (!empty($context['rules'][$id]['actions']))
  2952. {
  2953. $smcFunc['db_query']('', '
  2954. UPDATE {db_prefix}pm_rules
  2955. SET actions = {string:actions}
  2956. WHERE id_rule = {int:id_rule}
  2957. AND id_member = {int:current_member}',
  2958. array(
  2959. 'current_member' => $user_info['id'],
  2960. 'id_rule' => $id,
  2961. 'actions' => serialize($context['rules'][$id]['actions']),
  2962. )
  2963. );
  2964. unset($rule_changes[$k]);
  2965. }
  2966. // Anything left here means it's lost all actions...
  2967. if (!empty($rule_changes))
  2968. $smcFunc['db_query']('', '
  2969. DELETE FROM {db_prefix}pm_rules
  2970. WHERE id_rule IN ({array_int:rule_list})
  2971. AND id_member = {int:current_member}',
  2972. array(
  2973. 'current_member' => $user_info['id'],
  2974. 'rule_list' => $rule_changes,
  2975. )
  2976. );
  2977. }
  2978. // Make sure we're not caching this!
  2979. cache_put_data('labelCounts:' . $user_info['id'], null, 720);
  2980. // To make the changes appear right away, redirect.
  2981. redirectexit('action=pm;sa=manlabels');
  2982. }
  2983. }
  2984. /**
  2985. * Allows to edit Personal Message Settings.
  2986. *
  2987. * @uses Profile.php
  2988. * @uses Profile-Modify.php
  2989. * @uses Profile template.
  2990. * @uses Profile language file.
  2991. */
  2992. function MessageSettings()
  2993. {
  2994. global $txt, $user_settings, $user_info, $context, $sourcedir, $smcFunc;
  2995. global $scripturl, $profile_vars, $cur_profile, $user_profile;
  2996. // Need this for the display.
  2997. require_once($sourcedir . '/Profile.php');
  2998. require_once($sourcedir . '/Profile-Modify.php');
  2999. // We want them to submit back to here.
  3000. $context['profile_custom_submit_url'] = $scripturl . '?action=pm;sa=settings;save';
  3001. loadMemberData($user_info['id'], false, 'profile');
  3002. $cur_profile = $user_profile[$user_info['id']];
  3003. loadLanguage('Profile');
  3004. loadTemplate('Profile');
  3005. // Since this is internally handled with the profile code because that's how it was done ages ago
  3006. // we have to set everything up for handling this...
  3007. $context['page_title'] = $txt['pm_settings'];
  3008. $context['user']['is_owner'] = true;
  3009. $context['id_member'] = $user_info['id'];
  3010. $context['require_password'] = false;
  3011. $context['menu_item_selected'] = 'settings';
  3012. $context['submit_button_text'] = $txt['pm_settings'];
  3013. $context['profile_header_text'] = $txt['personal_messages'];
  3014. $context['sub_template'] = 'edit_options';
  3015. $context['page_desc'] = $txt['pm_settings_desc'];
  3016. loadThemeOptions($user_info['id']);
  3017. loadCustomFields($user_info['id'], 'pmprefs');
  3018. // Add our position to the linktree.
  3019. $context['linktree'][] = array(
  3020. 'url' => $scripturl . '?action=pm;sa=settings',
  3021. 'name' => $txt['pm_settings']
  3022. );
  3023. // Are they saving?
  3024. if (isset($_REQUEST['save']))
  3025. {
  3026. checkSession();
  3027. // Mimic what profile would do.
  3028. $_POST = htmltrim__recursive($_POST);
  3029. $_POST = htmlspecialchars__recursive($_POST);
  3030. // Save the fields.
  3031. saveProfileFields();
  3032. if (!empty($profile_vars))
  3033. updateMemberData($user_info['id'], $profile_vars);
  3034. }
  3035. setupProfileContext(
  3036. array(
  3037. 'pm_prefs',
  3038. )
  3039. );
  3040. }
  3041. /**
  3042. * Allows the user to report a personal message to an administrator.
  3043. *
  3044. * - In the first instance requires that the ID of the message to report is passed through $_GET.
  3045. * - It allows the user to report to either a particular administrator - or the whole admin team.
  3046. * - It will forward on a copy of the original message without allowing the reporter to make changes.
  3047. *
  3048. * @uses report_message sub-template.
  3049. */
  3050. function ReportMessage()
  3051. {
  3052. global $txt, $context, $scripturl, $sourcedir;
  3053. global $user_info, $language, $modSettings, $smcFunc;
  3054. // Check that this feature is even enabled!
  3055. if (empty($modSettings['enableReportPM']) || empty($_REQUEST['pmsg']))
  3056. fatal_lang_error('no_access', false);
  3057. $pmsg = (int) $_REQUEST['pmsg'];
  3058. if (!isAccessiblePM($pmsg, 'inbox'))
  3059. fatal_lang_error('no_access', false);
  3060. $context['pm_id'] = $pmsg;
  3061. $context['page_title'] = $txt['pm_report_title'];
  3062. // If we're here, just send the user to the template, with a few useful context bits.
  3063. if (!isset($_POST['report']))
  3064. {
  3065. $context['sub_template'] = 'report_message';
  3066. // @todo I don't like being able to pick who to send it to. Favoritism, etc. sucks.
  3067. // Now, get all the administrators.
  3068. $request = $smcFunc['db_query']('', '
  3069. SELECT id_member, real_name
  3070. FROM {db_prefix}members
  3071. WHERE id_group = {int:admin_group} OR FIND_IN_SET({int:admin_group}, additional_groups) != 0
  3072. ORDER BY real_name',
  3073. array(
  3074. 'admin_group' => 1,
  3075. )
  3076. );
  3077. $context['admins'] = array();
  3078. while ($row = $smcFunc['db_fetch_assoc']($request))
  3079. $context['admins'][$row['id_member']] = $row['real_name'];
  3080. $smcFunc['db_free_result']($request);
  3081. // How many admins in total?
  3082. $context['admin_count'] = count($context['admins']);
  3083. }
  3084. // Otherwise, let's get down to the sending stuff.
  3085. else
  3086. {
  3087. // Check the session before proceeding any further!
  3088. checkSession();
  3089. // First, pull out the message contents, and verify it actually went to them!
  3090. $request = $smcFunc['db_query']('', '
  3091. SELECT pm.subject, pm.body, pm.msgtime, pm.id_member_from, IFNULL(m.real_name, pm.from_name) AS sender_name
  3092. FROM {db_prefix}personal_messages AS pm
  3093. INNER JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm)
  3094. LEFT JOIN {db_prefix}members AS m ON (m.id_member = pm.id_member_from)
  3095. WHERE pm.id_pm = {int:id_pm}
  3096. AND pmr.id_member = {int:current_member}
  3097. AND pmr.deleted = {int:not_deleted}
  3098. LIMIT 1',
  3099. array(
  3100. 'current_member' => $user_info['id'],
  3101. 'id_pm' => $context['pm_id'],
  3102. 'not_deleted' => 0,
  3103. )
  3104. );
  3105. // Can only be a hacker here!
  3106. if ($smcFunc['db_num_rows']($request) == 0)
  3107. fatal_lang_error('no_access', false);
  3108. list ($subject, $body, $time, $memberFromID, $memberFromName) = $smcFunc['db_fetch_row']($request);
  3109. $smcFunc['db_free_result']($request);
  3110. // Remove the line breaks...
  3111. $body = preg_replace('~<br ?/?' . '>~i', "\n", $body);
  3112. // Get any other recipients of the email.
  3113. $request = $smcFunc['db_query']('', '
  3114. SELECT mem_to.id_member AS id_member_to, mem_to.real_name AS to_name, pmr.bcc
  3115. FROM {db_prefix}pm_recipients AS pmr
  3116. LEFT JOIN {db_prefix}members AS mem_to ON (mem_to.id_member = pmr.id_member)
  3117. WHERE pmr.id_pm = {int:id_pm}
  3118. AND pmr.id_member != {int:current_member}',
  3119. array(
  3120. 'current_member' => $user_info['id'],
  3121. 'id_pm' => $context['pm_id'],
  3122. )
  3123. );
  3124. $recipients = array();
  3125. $hidden_recipients = 0;
  3126. while ($row = $smcFunc['db_fetch_assoc']($request))
  3127. {
  3128. // If it's hidden still don't reveal their names - privacy after all ;)
  3129. if ($row['bcc'])
  3130. $hidden_recipients++;
  3131. else
  3132. $recipients[] = '[url=' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . ']' . $row['to_name'] . '[/url]';
  3133. }
  3134. $smcFunc['db_free_result']($request);
  3135. if ($hidden_recipients)
  3136. $recipients[] = sprintf($txt['pm_report_pm_hidden'], $hidden_recipients);
  3137. // Now let's get out and loop through the admins.
  3138. $request = $smcFunc['db_query']('', '
  3139. SELECT id_member, real_name, lngfile
  3140. FROM {db_prefix}members
  3141. WHERE (id_group = {int:admin_id} OR FIND_IN_SET({int:admin_id}, additional_groups) != 0)
  3142. ' . (empty($_POST['id_admin']) ? '' : 'AND id_member = {int:specific_admin}') . '
  3143. ORDER BY lngfile',
  3144. array(
  3145. 'admin_id' => 1,
  3146. 'specific_admin' => isset($_POST['id_admin']) ? (int) $_POST['id_admin'] : 0,
  3147. )
  3148. );
  3149. // Maybe we shouldn't advertise this?
  3150. if ($smcFunc['db_num_rows']($request) == 0)
  3151. fatal_lang_error('no_access', false);
  3152. $memberFromName = un_htmlspecialchars($memberFromName);
  3153. // Prepare the message storage array.
  3154. $messagesToSend = array();
  3155. // Loop through each admin, and add them to the right language pile...
  3156. while ($row = $smcFunc['db_fetch_assoc']($request))
  3157. {
  3158. // Need to send in the correct language!
  3159. $cur_language = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile'];
  3160. if (!isset($messagesToSend[$cur_language]))
  3161. {
  3162. loadLanguage('PersonalMessage', $cur_language, false);
  3163. // Make the body.
  3164. $report_body = str_replace(array('{REPORTER}', '{SENDER}'), array(un_htmlspecialchars($user_info['name']), $memberFromName), $txt['pm_report_pm_user_sent']);
  3165. $report_body .= "\n" . '[b]' . $_POST['reason'] . '[/b]' . "\n\n";
  3166. if (!empty($recipients))
  3167. $report_body .= $txt['pm_report_pm_other_recipients'] . ' ' . implode(', ', $recipients) . "\n\n";
  3168. $report_body .= $txt['pm_report_pm_unedited_below'] . "\n" . '[quote author=' . (empty($memberFromID) ? '&quot;' . $memberFromName . '&quot;' : $memberFromName . ' link=action=profile;u=' . $memberFromID . ' date=' . $time) . ']' . "\n" . un_htmlspecialchars($body) . '[/quote]';
  3169. // Plonk it in the array ;)
  3170. $messagesToSend[$cur_language] = array(
  3171. 'subject' => ($smcFunc['strpos']($subject, $txt['pm_report_pm_subject']) === false ? $txt['pm_report_pm_subject'] : '') . un_htmlspecialchars($subject),
  3172. 'body' => $report_body,
  3173. 'recipients' => array(
  3174. 'to' => array(),
  3175. 'bcc' => array()
  3176. ),
  3177. );
  3178. }
  3179. // Add them to the list.
  3180. $messagesToSend[$cur_language]['recipients']['to'][$row['id_member']] = $row['id_member'];
  3181. }
  3182. $smcFunc['db_free_result']($request);
  3183. // Send a different email for each language.
  3184. foreach ($messagesToSend as $lang => $message)
  3185. sendpm($message['recipients'], $message['subject'], $message['body']);
  3186. // Give the user their own language back!
  3187. if (!empty($modSettings['userLanguage']))
  3188. loadLanguage('PersonalMessage', '', false);
  3189. // Leave them with a template.
  3190. $context['sub_template'] = 'report_message_complete';
  3191. }
  3192. }
  3193. /**
  3194. * List all rules, and allow adding/entering etc...
  3195. */
  3196. function ManageRules()
  3197. {
  3198. global $txt, $context, $user_info, $scripturl, $smcFunc;
  3199. // The link tree - gotta have this :o
  3200. $context['linktree'][] = array(
  3201. 'url' => $scripturl . '?action=pm;sa=manrules',
  3202. 'name' => $txt['pm_manage_rules']
  3203. );
  3204. $context['page_title'] = $txt['pm_manage_rules'];
  3205. $context['sub_template'] = 'rules';
  3206. // Load them... load them!!
  3207. LoadRules();
  3208. // Likely to need all the groups!
  3209. $request = $smcFunc['db_query']('', '
  3210. SELECT mg.id_group, mg.group_name, IFNULL(gm.id_member, 0) AS can_moderate, mg.hidden
  3211. FROM {db_prefix}membergroups AS mg
  3212. LEFT JOIN {db_prefix}group_moderators AS gm ON (gm.id_group = mg.id_group AND gm.id_member = {int:current_member})
  3213. WHERE mg.min_posts = {int:min_posts}
  3214. AND mg.id_group != {int:moderator_group}
  3215. AND mg.hidden = {int:not_hidden}
  3216. ORDER BY mg.group_name',
  3217. array(
  3218. 'current_member' => $user_info['id'],
  3219. 'min_posts' => -1,
  3220. 'moderator_group' => 3,
  3221. 'not_hidden' => 0,
  3222. )
  3223. );
  3224. $context['groups'] = array();
  3225. while ($row = $smcFunc['db_fetch_assoc']($request))
  3226. {
  3227. // Hide hidden groups!
  3228. if ($row['hidden'] && !$row['can_moderate'] && !allowedTo('manage_membergroups'))
  3229. continue;
  3230. $context['groups'][$row['id_group']] = $row['group_name'];
  3231. }
  3232. $smcFunc['db_free_result']($request);
  3233. // Applying all rules?
  3234. if (isset($_GET['apply']))
  3235. {
  3236. checkSession('get');
  3237. ApplyRules(true);
  3238. redirectexit('action=pm;sa=manrules');
  3239. }
  3240. // Editing a specific one?
  3241. if (isset($_GET['add']))
  3242. {
  3243. $context['rid'] = isset($_GET['rid']) && isset($context['rules'][$_GET['rid']])? (int) $_GET['rid'] : 0;
  3244. $context['sub_template'] = 'add_rule';
  3245. // Current rule information...
  3246. if ($context['rid'])
  3247. {
  3248. $context['rule'] = $context['rules'][$context['rid']];
  3249. $members = array();
  3250. // Need to get member names!
  3251. foreach ($context['rule']['criteria'] as $k => $criteria)
  3252. if ($criteria['t'] == 'mid' && !empty($criteria['v']))
  3253. $members[(int) $criteria['v']] = $k;
  3254. if (!empty($members))
  3255. {
  3256. $request = $smcFunc['db_query']('', '
  3257. SELECT id_member, member_name
  3258. FROM {db_prefix}members
  3259. WHERE id_member IN ({array_int:member_list})',
  3260. array(
  3261. 'member_list' => array_keys($members),
  3262. )
  3263. );
  3264. while ($row = $smcFunc['db_fetch_assoc']($request))
  3265. $context['rule']['criteria'][$members[$row['id_member']]]['v'] = $row['member_name'];
  3266. $smcFunc['db_free_result']($request);
  3267. }
  3268. }
  3269. else
  3270. $context['rule'] = array(
  3271. 'id' => '',
  3272. 'name' => '',
  3273. 'criteria' => array(),
  3274. 'actions' => array(),
  3275. 'logic' => 'and',
  3276. );
  3277. }
  3278. // Saving?
  3279. elseif (isset($_GET['save']))
  3280. {
  3281. checkSession();
  3282. $context['rid'] = isset($_GET['rid']) && isset($context['rules'][$_GET['rid']])? (int) $_GET['rid'] : 0;
  3283. // Name is easy!
  3284. $ruleName = $smcFunc['htmlspecialchars'](trim($_POST['rule_name']));
  3285. if (empty($ruleName))
  3286. fatal_lang_error('pm_rule_no_name', false);
  3287. // Sanity check...
  3288. if (empty($_POST['ruletype']) || empty($_POST['acttype']))
  3289. fatal_lang_error('pm_rule_no_criteria', false);
  3290. // Let's do the criteria first - it's also hardest!
  3291. $criteria = array();
  3292. foreach ($_POST['ruletype'] as $ind => $type)
  3293. {
  3294. // Check everything is here...
  3295. if ($type == 'gid' && (!isset($_POST['ruledefgroup'][$ind]) || !isset($context['groups'][$_POST['ruledefgroup'][$ind]])))
  3296. continue;
  3297. elseif ($type != 'bud' && !isset($_POST['ruledef'][$ind]))
  3298. continue;
  3299. // Members need to be found.
  3300. if ($type == 'mid')
  3301. {
  3302. $name = trim($_POST['ruledef'][$ind]);
  3303. $request = $smcFunc['db_query']('', '
  3304. SELECT id_member
  3305. FROM {db_prefix}members
  3306. WHERE real_name = {string:member_name}
  3307. OR member_name = {string:member_name}',
  3308. array(
  3309. 'member_name' => $name,
  3310. )
  3311. );
  3312. if ($smcFunc['db_num_rows']($request) == 0)
  3313. continue;
  3314. list ($memID) = $smcFunc['db_fetch_row']($request);
  3315. $smcFunc['db_free_result']($request);
  3316. $criteria[] = array('t' => 'mid', 'v' => $memID);
  3317. }
  3318. elseif ($type == 'bud')
  3319. $criteria[] = array('t' => 'bud', 'v' => 1);
  3320. elseif ($type == 'gid')
  3321. $criteria[] = array('t' => 'gid', 'v' => (int) $_POST['ruledefgroup'][$ind]);
  3322. elseif (in_array($type, array('sub', 'msg')) && trim($_POST['ruledef'][$ind]) != '')
  3323. $criteria[] = array('t' => $type, 'v' => $smcFunc['htmlspecialchars'](trim($_POST['ruledef'][$ind])));
  3324. }
  3325. // Also do the actions!
  3326. $actions = array();
  3327. $doDelete = 0;
  3328. $isOr = $_POST['rule_logic'] == 'or' ? 1 : 0;
  3329. foreach ($_POST['acttype'] as $ind => $type)
  3330. {
  3331. // Picking a valid label?
  3332. if ($type == 'lab' && (!isset($_POST['labdef'][$ind]) || !isset($context['labels'][$_POST['labdef'][$ind]])))
  3333. continue;
  3334. // Record what we're doing.
  3335. if ($type == 'del')
  3336. $doDelete = 1;
  3337. elseif ($type == 'lab')
  3338. $actions[] = array('t' => 'lab', 'v' => (int) $_POST['labdef'][$ind]);
  3339. }
  3340. if (empty($criteria) || (empty($actions) && !$doDelete))
  3341. fatal_lang_error('pm_rule_no_criteria', false);
  3342. // What are we storing?
  3343. $criteria = serialize($criteria);
  3344. $actions = serialize($actions);
  3345. // Create the rule?
  3346. if (empty($context['rid']))
  3347. $smcFunc['db_insert']('',
  3348. '{db_prefix}pm_rules',
  3349. array(
  3350. 'id_member' => 'int', 'rule_name' => 'string', 'criteria' => 'string', 'actions' => 'string',
  3351. 'delete_pm' => 'int', 'is_or' => 'int',
  3352. ),
  3353. array(
  3354. $user_info['id'], $ruleName, $criteria, $actions, $doDelete, $isOr,
  3355. ),
  3356. array('id_rule')
  3357. );
  3358. else
  3359. $smcFunc['db_query']('', '
  3360. UPDATE {db_prefix}pm_rules
  3361. SET rule_name = {string:rule_name}, criteria = {string:criteria}, actions = {string:actions},
  3362. delete_pm = {int:delete_pm}, is_or = {int:is_or}
  3363. WHERE id_rule = {int:id_rule}
  3364. AND id_member = {int:current_member}',
  3365. array(
  3366. 'current_member' => $user_info['id'],
  3367. 'delete_pm' => $doDelete,
  3368. 'is_or' => $isOr,
  3369. 'id_rule' => $context['rid'],
  3370. 'rule_name' => $ruleName,
  3371. 'criteria' => $criteria,
  3372. 'actions' => $actions,
  3373. )
  3374. );
  3375. redirectexit('action=pm;sa=manrules');
  3376. }
  3377. // Deleting?
  3378. elseif (isset($_POST['delselected']) && !empty($_POST['delrule']))
  3379. {
  3380. checkSession();
  3381. $toDelete = array();
  3382. foreach ($_POST['delrule'] as $k => $v)
  3383. $toDelete[] = (int) $k;
  3384. if (!empty($toDelete))
  3385. $smcFunc['db_query']('', '
  3386. DELETE FROM {db_prefix}pm_rules
  3387. WHERE id_rule IN ({array_int:delete_list})
  3388. AND id_member = {int:current_member}',
  3389. array(
  3390. 'current_member' => $user_info['id'],
  3391. 'delete_list' => $toDelete,
  3392. )
  3393. );
  3394. redirectexit('action=pm;sa=manrules');
  3395. }
  3396. }
  3397. /**
  3398. * This will apply rules to all unread messages. If all_messages is set will, clearly, do it to all!
  3399. *
  3400. * @param bool $all_messages = false
  3401. */
  3402. function ApplyRules($all_messages = false)
  3403. {
  3404. global $user_info, $smcFunc, $context, $options;
  3405. // Want this - duh!
  3406. loadRules();
  3407. // No rules?
  3408. if (empty($context['rules']))
  3409. return;
  3410. // Just unread ones?
  3411. $ruleQuery = $all_messages ? '' : ' AND pmr.is_new = 1';
  3412. // @todo Apply all should have timeout protection!
  3413. // Get all the messages that match this.
  3414. $request = $smcFunc['db_query']('', '
  3415. SELECT
  3416. pmr.id_pm, pm.id_member_from, pm.subject, pm.body, mem.id_group
  3417. FROM {db_prefix}pm_recipients AS pmr
  3418. INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)
  3419. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = pm.id_member_from)
  3420. WHERE pmr.id_member = {int:current_member}
  3421. AND pmr.deleted = {int:not_deleted}
  3422. ' . $ruleQuery,
  3423. array(
  3424. 'current_member' => $user_info['id'],
  3425. 'not_deleted' => 0,
  3426. )
  3427. );
  3428. $actions = array();
  3429. while ($row = $smcFunc['db_fetch_assoc']($request))
  3430. {
  3431. foreach ($context['rules'] as $rule)
  3432. {
  3433. $match = false;
  3434. // Loop through all the criteria hoping to make a match.
  3435. foreach ($rule['criteria'] as $criterium)
  3436. {
  3437. if (($criterium['t'] == 'mid' && $criterium['v'] == $row['id_member_from']) || ($criterium['t'] == 'gid' && $criterium['v'] == $row['id_group']) || ($criterium['t'] == 'sub' && strpos($row['subject'], $criterium['v']) !== false) || ($criterium['t'] == 'msg' && strpos($row['body'], $criterium['v']) !== false))
  3438. $match = true;
  3439. // If we're adding and one criteria don't match then we stop!
  3440. elseif ($rule['logic'] == 'and')
  3441. {
  3442. $match = false;
  3443. break;
  3444. }
  3445. }
  3446. // If we have a match the rule must be true - act!
  3447. if ($match)
  3448. {
  3449. if ($rule['delete'])
  3450. $actions['deletes'][] = $row['id_pm'];
  3451. else
  3452. {
  3453. foreach ($rule['actions'] as $ruleAction)
  3454. {
  3455. if ($ruleAction['t'] == 'lab')
  3456. {
  3457. // Get a basic pot started!
  3458. if (!isset($actions['labels'][$row['id_pm']]))
  3459. $actions['labels'][$row['id_pm']] = array();
  3460. $actions['labels'][$row['id_pm']][] = $ruleAction['v'];
  3461. }
  3462. }
  3463. }
  3464. }
  3465. }
  3466. }
  3467. $smcFunc['db_free_result']($request);
  3468. // Deletes are easy!
  3469. if (!empty($actions['deletes']))
  3470. deleteMessages($actions['deletes']);
  3471. // Relabel?
  3472. if (!empty($actions['labels']))
  3473. {
  3474. foreach ($actions['labels'] as $pm => $labels)
  3475. {
  3476. // Quickly check each label is valid!
  3477. $realLabels = array();
  3478. foreach ($context['labels'] as $label)
  3479. {
  3480. if (in_array($label['id'], $labels) && $label['id'] != -1 || empty($options['pm_remove_inbox_label']))
  3481. {
  3482. // Make sure this stays in the inbox
  3483. if ($label['id'] == '-1')
  3484. {
  3485. $smcFunc['db_query']('', '
  3486. UPDATE {db_prefix}pm_recipients
  3487. SET in_inbox = {int:in_inbox}
  3488. WHERE id_pm = {int:id_pm}
  3489. AND id_member = {int:current_member}',
  3490. array(
  3491. 'in_inbox' => 1,
  3492. 'id_pm' => $pm,
  3493. 'current_member' => $user_info['id'],
  3494. )
  3495. );
  3496. }
  3497. else
  3498. {
  3499. $realLabels[] = $label['id'];
  3500. }
  3501. }
  3502. }
  3503. $inserts = array();
  3504. // Now we insert the label info
  3505. foreach ($realLabels as $a_label)
  3506. $inserts[] = array($pm, $a_label);
  3507. $smcFunc['db_insert']('',
  3508. '{db_prefix}pm_labeled_messages',
  3509. array('id_pm' => 'int', 'id_label' => 'int'),
  3510. $inserts,
  3511. array()
  3512. );
  3513. }
  3514. }
  3515. }
  3516. /**
  3517. * Load up all the rules for the current user.
  3518. *
  3519. * @param bool $reload = false
  3520. */
  3521. function LoadRules($reload = false)
  3522. {
  3523. global $user_info, $context, $smcFunc;
  3524. if (isset($context['rules']) && !$reload)
  3525. return;
  3526. $request = $smcFunc['db_query']('', '
  3527. SELECT
  3528. id_rule, rule_name, criteria, actions, delete_pm, is_or
  3529. FROM {db_prefix}pm_rules
  3530. WHERE id_member = {int:current_member}',
  3531. array(
  3532. 'current_member' => $user_info['id'],
  3533. )
  3534. );
  3535. $context['rules'] = array();
  3536. // Simply fill in the data!
  3537. while ($row = $smcFunc['db_fetch_assoc']($request))
  3538. {
  3539. $context['rules'][$row['id_rule']] = array(
  3540. 'id' => $row['id_rule'],
  3541. 'name' => $row['rule_name'],
  3542. 'criteria' => unserialize($row['criteria']),
  3543. 'actions' => unserialize($row['actions']),
  3544. 'delete' => $row['delete_pm'],
  3545. 'logic' => $row['is_or'] ? 'or' : 'and',
  3546. );
  3547. if ($row['delete_pm'])
  3548. $context['rules'][$row['id_rule']]['actions'][] = array('t' => 'del', 'v' => 1);
  3549. }
  3550. $smcFunc['db_free_result']($request);
  3551. }
  3552. /**
  3553. * Check if the PM is available to the current user.
  3554. *
  3555. * @param int $pmID
  3556. * @param $validFor
  3557. * @return boolean
  3558. */
  3559. function isAccessiblePM($pmID, $validFor = 'in_or_outbox')
  3560. {
  3561. global $user_info, $smcFunc;
  3562. $request = $smcFunc['db_query']('', '
  3563. SELECT
  3564. pm.id_member_from = {int:id_current_member} AND pm.deleted_by_sender = {int:not_deleted} AS valid_for_outbox,
  3565. pmr.id_pm IS NOT NULL AS valid_for_inbox
  3566. FROM {db_prefix}personal_messages AS pm
  3567. LEFT JOIN {db_prefix}pm_recipients AS pmr ON (pmr.id_pm = pm.id_pm AND pmr.id_member = {int:id_current_member} AND pmr.deleted = {int:not_deleted})
  3568. WHERE pm.id_pm = {int:id_pm}
  3569. AND ((pm.id_member_from = {int:id_current_member} AND pm.deleted_by_sender = {int:not_deleted}) OR pmr.id_pm IS NOT NULL)',
  3570. array(
  3571. 'id_pm' => $pmID,
  3572. 'id_current_member' => $user_info['id'],
  3573. 'not_deleted' => 0,
  3574. )
  3575. );
  3576. if ($smcFunc['db_num_rows']($request) === 0)
  3577. {
  3578. $smcFunc['db_free_result']($request);
  3579. return false;
  3580. }
  3581. $validationResult = $smcFunc['db_fetch_assoc']($request);
  3582. $smcFunc['db_free_result']($request);
  3583. switch ($validFor)
  3584. {
  3585. case 'inbox':
  3586. return !empty($validationResult['valid_for_inbox']);
  3587. break;
  3588. case 'outbox':
  3589. return !empty($validationResult['valid_for_outbox']);
  3590. break;
  3591. case 'in_or_outbox':
  3592. return !empty($validationResult['valid_for_inbox']) || !empty($validationResult['valid_for_outbox']);
  3593. break;
  3594. default:
  3595. trigger_error('Undefined validation type given', E_USER_ERROR);
  3596. break;
  3597. }
  3598. }
  3599. ?>