Profile-Modify.php 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564
  1. <?php
  2. /**
  3. * This file has the primary job of showing and editing people's profiles.
  4. * It also allows the user to change some of their or another's preferences,
  5. * and such things
  6. *
  7. * Simple Machines Forum (SMF)
  8. *
  9. * @package SMF
  10. * @author Simple Machines http://www.simplemachines.org
  11. * @copyright 2013 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 defines every profile field known to man.
  20. *
  21. * @param bool $force_reload = false
  22. */
  23. function loadProfileFields($force_reload = false)
  24. {
  25. global $context, $profile_fields, $txt, $scripturl, $modSettings, $user_info, $old_profile, $smcFunc, $cur_profile, $language;
  26. // Don't load this twice!
  27. if (!empty($profile_fields) && !$force_reload)
  28. return;
  29. /* This horrific array defines all the profile fields in the whole world!
  30. In general each "field" has one array - the key of which is the database column name associated with said field. Each item
  31. can have the following attributes:
  32. string $type: The type of field this is - valid types are:
  33. - callback: This is a field which has its own callback mechanism for templating.
  34. - check: A simple checkbox.
  35. - hidden: This doesn't have any visual aspects but may have some validity.
  36. - password: A password box.
  37. - select: A select box.
  38. - text: A string of some description.
  39. string $label: The label for this item - default will be $txt[$key] if this isn't set.
  40. string $subtext: The subtext (Small label) for this item.
  41. int $size: Optional size for a text area.
  42. array $input_attr: An array of text strings to be added to the input box for this item.
  43. string $value: The value of the item. If not set $cur_profile[$key] is assumed.
  44. string $permission: Permission required for this item (Excluded _any/_own subfix which is applied automatically).
  45. function $input_validate: A runtime function which validates the element before going to the database. It is passed
  46. the relevant $_POST element if it exists and should be treated like a reference.
  47. Return types:
  48. - true: Element can be stored.
  49. - false: Skip this element.
  50. - a text string: An error occured - this is the error message.
  51. function $preload: A function that is used to load data required for this element to be displayed. Must return
  52. true to be displayed at all.
  53. string $cast_type: If set casts the element to a certain type. Valid types (bool, int, float).
  54. string $save_key: If the index of this element isn't the database column name it can be overriden
  55. with this string.
  56. bool $is_dummy: If set then nothing is acted upon for this element.
  57. bool $enabled: A test to determine whether this is even available - if not is unset.
  58. string $link_with: Key which links this field to an overall set.
  59. Note that all elements that have a custom input_validate must ensure they set the value of $cur_profile correct to enable
  60. the changes to be displayed correctly on submit of the form.
  61. */
  62. $profile_fields = array(
  63. 'aim' => array(
  64. 'type' => 'text',
  65. 'label' => $txt['aim'],
  66. 'subtext' => $txt['your_aim'],
  67. 'size' => 24,
  68. 'value' => strtr(empty($cur_profile['aim']) ? '' : $cur_profile['aim'], '+', ' '),
  69. 'permission' => 'profile_extra',
  70. 'input_validate' => create_function('&$value', '
  71. $value = strtr($value, \' \', \'+\');
  72. if (strlen($value) > 32)
  73. return \'aim_too_long\';
  74. return true;
  75. '),
  76. ),
  77. 'avatar_choice' => array(
  78. 'type' => 'callback',
  79. 'callback_func' => 'avatar_select',
  80. // This handles the permissions too.
  81. 'preload' => 'profileLoadAvatarData',
  82. 'input_validate' => 'profileSaveAvatarData',
  83. 'save_key' => 'avatar',
  84. ),
  85. 'bday1' => array(
  86. 'type' => 'callback',
  87. 'callback_func' => 'birthdate',
  88. 'permission' => 'profile_extra',
  89. 'preload' => create_function('', '
  90. global $cur_profile, $context;
  91. // Split up the birthdate....
  92. list ($uyear, $umonth, $uday) = explode(\'-\', empty($cur_profile[\'birthdate\']) || $cur_profile[\'birthdate\'] == \'0001-01-01\' ? \'0000-00-00\' : $cur_profile[\'birthdate\']);
  93. $context[\'member\'][\'birth_date\'] = array(
  94. \'year\' => $uyear == \'0004\' ? \'0000\' : $uyear,
  95. \'month\' => $umonth,
  96. \'day\' => $uday,
  97. );
  98. return true;
  99. '),
  100. 'input_validate' => create_function('&$value', '
  101. global $profile_vars, $cur_profile;
  102. if (isset($_POST[\'bday2\'], $_POST[\'bday3\']) && $value > 0 && $_POST[\'bday2\'] > 0)
  103. {
  104. // Set to blank?
  105. if ((int) $_POST[\'bday3\'] == 1 && (int) $_POST[\'bday2\'] == 1 && (int) $value == 1)
  106. $value = \'0001-01-01\';
  107. else
  108. $value = checkdate($value, $_POST[\'bday2\'], $_POST[\'bday3\'] < 4 ? 4 : $_POST[\'bday3\']) ? sprintf(\'%04d-%02d-%02d\', $_POST[\'bday3\'] < 4 ? 4 : $_POST[\'bday3\'], $_POST[\'bday1\'], $_POST[\'bday2\']) : \'0001-01-01\';
  109. }
  110. else
  111. $value = \'0001-01-01\';
  112. $profile_vars[\'birthdate\'] = $value;
  113. $cur_profile[\'birthdate\'] = $value;
  114. return false;
  115. '),
  116. ),
  117. // Setting the birthdate the old style way?
  118. 'birthdate' => array(
  119. 'type' => 'hidden',
  120. 'permission' => 'profile_extra',
  121. 'input_validate' => create_function('&$value', '
  122. global $cur_profile;
  123. // @todo Should we check for this year and tell them they made a mistake :P? (based on coppa at least?)
  124. if (preg_match(\'/(\d{4})[\-\., ](\d{2})[\-\., ](\d{2})/\', $value, $dates) === 1)
  125. {
  126. $value = checkdate($dates[2], $dates[3], $dates[1] < 4 ? 4 : $dates[1]) ? sprintf(\'%04d-%02d-%02d\', $dates[1] < 4 ? 4 : $dates[1], $dates[2], $dates[3]) : \'0001-01-01\';
  127. return true;
  128. }
  129. else
  130. {
  131. $value = empty($cur_profile[\'birthdate\']) ? \'0001-01-01\' : $cur_profile[\'birthdate\'];
  132. return false;
  133. }
  134. '),
  135. ),
  136. 'date_registered' => array(
  137. 'type' => 'text',
  138. 'value' => empty($cur_profile['date_registered']) ? $txt['not_applicable'] : strftime('%Y-%m-%d', $cur_profile['date_registered'] + ($user_info['time_offset'] + $modSettings['time_offset']) * 3600),
  139. 'label' => $txt['date_registered'],
  140. 'log_change' => true,
  141. 'permission' => 'moderate_forum',
  142. 'input_validate' => create_function('&$value', '
  143. global $txt, $user_info, $modSettings, $cur_profile, $context;
  144. // Bad date! Go try again - please?
  145. if (($value = strtotime($value)) === -1)
  146. {
  147. $value = $cur_profile[\'date_registered\'];
  148. return $txt[\'invalid_registration\'] . \' \' . strftime(\'%d %b %Y \' . (strpos($user_info[\'time_format\'], \'%H\') !== false ? \'%I:%M:%S %p\' : \'%H:%M:%S\'), forum_time(false));
  149. }
  150. // As long as it doesn\'t equal "N/A"...
  151. elseif ($value != $txt[\'not_applicable\'] && $value != strtotime(strftime(\'%Y-%m-%d\', $cur_profile[\'date_registered\'] + ($user_info[\'time_offset\'] + $modSettings[\'time_offset\']) * 3600)))
  152. $value = $value - ($user_info[\'time_offset\'] + $modSettings[\'time_offset\']) * 3600;
  153. else
  154. $value = $cur_profile[\'date_registered\'];
  155. return true;
  156. '),
  157. ),
  158. 'email_address' => array(
  159. 'type' => 'text',
  160. 'label' => $txt['user_email_address'],
  161. 'subtext' => $txt['valid_email'],
  162. 'log_change' => true,
  163. 'permission' => 'profile_identity',
  164. 'input_validate' => create_function('&$value', '
  165. global $context, $old_profile, $context, $profile_vars, $sourcedir, $modSettings;
  166. if (strtolower($value) == strtolower($old_profile[\'email_address\']))
  167. return false;
  168. $isValid = profileValidateEmail($value, $context[\'id_member\']);
  169. // Do they need to revalidate? If so schedule the function!
  170. if ($isValid === true && !empty($modSettings[\'send_validation_onChange\']) && !allowedTo(\'moderate_forum\'))
  171. {
  172. require_once($sourcedir . \'/Subs-Members.php\');
  173. $profile_vars[\'validation_code\'] = generateValidationCode();
  174. $profile_vars[\'is_activated\'] = 2;
  175. $context[\'profile_execute_on_save\'][] = \'profileSendActivation\';
  176. unset($context[\'profile_execute_on_save\'][\'reload_user\']);
  177. }
  178. return $isValid;
  179. '),
  180. ),
  181. 'gender' => array(
  182. 'type' => 'select',
  183. 'cast_type' => 'int',
  184. 'options' => 'return array(0 => \'\', 1 => $txt[\'male\'], 2 => $txt[\'female\']);',
  185. 'label' => $txt['gender'],
  186. 'permission' => 'profile_extra',
  187. ),
  188. 'hide_email' => array(
  189. 'type' => 'check',
  190. 'value' => empty($cur_profile['hide_email']) ? true : false,
  191. 'label' => $txt['allow_user_email'],
  192. 'permission' => 'profile_identity',
  193. 'input_validate' => create_function('&$value', '
  194. $value = $value == 0 ? 1 : 0;
  195. return true;
  196. '),
  197. ),
  198. 'icq' => array(
  199. 'type' => 'text',
  200. 'label' => $txt['icq'],
  201. 'subtext' => $txt['your_icq'],
  202. 'size' => 24,
  203. 'permission' => 'profile_extra',
  204. // Need to make sure ICQ doesn't equal 0.
  205. 'input_validate' => create_function('&$value', '
  206. if (empty($value))
  207. $value = \'\';
  208. else
  209. $value = (int) $value;
  210. return true;
  211. '),
  212. ),
  213. // Selecting group membership is a complicated one so we treat it separate!
  214. 'id_group' => array(
  215. 'type' => 'callback',
  216. 'callback_func' => 'group_manage',
  217. 'permission' => 'manage_membergroups',
  218. 'preload' => 'profileLoadGroups',
  219. 'log_change' => true,
  220. 'input_validate' => 'profileSaveGroups',
  221. ),
  222. 'id_theme' => array(
  223. 'type' => 'callback',
  224. 'callback_func' => 'theme_pick',
  225. 'permission' => 'profile_extra',
  226. 'enabled' => $modSettings['theme_allow'] || allowedTo('admin_forum'),
  227. 'preload' => create_function('', '
  228. global $smcFunc, $context, $cur_profile, $txt;
  229. $request = $smcFunc[\'db_query\'](\'\', \'
  230. SELECT value
  231. FROM {db_prefix}themes
  232. WHERE id_theme = {int:id_theme}
  233. AND variable = {string:variable}
  234. LIMIT 1\', array(
  235. \'id_theme\' => $cur_profile[\'id_theme\'],
  236. \'variable\' => \'name\',
  237. )
  238. );
  239. list ($name) = $smcFunc[\'db_fetch_row\']($request);
  240. $smcFunc[\'db_free_result\']($request);
  241. $context[\'member\'][\'theme\'] = array(
  242. \'id\' => $cur_profile[\'id_theme\'],
  243. \'name\' => empty($cur_profile[\'id_theme\']) ? $txt[\'theme_forum_default\'] : $name
  244. );
  245. return true;
  246. '),
  247. 'input_validate' => create_function('&$value', '
  248. $value = (int) $value;
  249. return true;
  250. '),
  251. ),
  252. 'karma_good' => array(
  253. 'type' => 'callback',
  254. 'callback_func' => 'karma_modify',
  255. 'permission' => 'admin_forum',
  256. // Set karma_bad too!
  257. 'input_validate' => create_function('&$value', '
  258. global $profile_vars, $cur_profile;
  259. $value = (int) $value;
  260. if (isset($_POST[\'karma_bad\']))
  261. {
  262. $profile_vars[\'karma_bad\'] = $_POST[\'karma_bad\'] != \'\' ? (int) $_POST[\'karma_bad\'] : 0;
  263. $cur_profile[\'karma_bad\'] = $_POST[\'karma_bad\'] != \'\' ? (int) $_POST[\'karma_bad\'] : 0;
  264. }
  265. return true;
  266. '),
  267. 'preload' => create_function('', '
  268. global $context, $cur_profile;
  269. $context[\'member\'][\'karma\'][\'good\'] = $cur_profile[\'karma_good\'];
  270. $context[\'member\'][\'karma\'][\'bad\'] = $cur_profile[\'karma_bad\'];
  271. return true;
  272. '),
  273. 'enabled' => !empty($modSettings['karmaMode']),
  274. ),
  275. 'lngfile' => array(
  276. 'type' => 'select',
  277. 'options' => 'return $context[\'profile_languages\'];',
  278. 'label' => $txt['preferred_language'],
  279. 'permission' => 'profile_identity',
  280. 'preload' => 'profileLoadLanguages',
  281. 'enabled' => !empty($modSettings['userLanguage']),
  282. 'value' => empty($cur_profile['lngfile']) ? $language : $cur_profile['lngfile'],
  283. 'input_validate' => create_function('&$value', '
  284. global $context, $cur_profile;
  285. // Load the languages.
  286. profileLoadLanguages();
  287. if (isset($context[\'profile_languages\'][$value]))
  288. {
  289. if ($context[\'user\'][\'is_owner\'] && empty($context[\'password_auth_failed\']))
  290. $_SESSION[\'language\'] = $value;
  291. return true;
  292. }
  293. else
  294. {
  295. $value = $cur_profile[\'lngfile\'];
  296. return false;
  297. }
  298. '),
  299. ),
  300. 'location' => array(
  301. 'type' => 'text',
  302. 'label' => $txt['location'],
  303. 'log_change' => true,
  304. 'size' => 50,
  305. 'permission' => 'profile_extra',
  306. ),
  307. // The username is not always editable - so adjust it as such.
  308. 'member_name' => array(
  309. 'type' => allowedTo('admin_forum') && isset($_GET['changeusername']) ? 'text' : 'label',
  310. 'label' => $txt['username'],
  311. 'subtext' => allowedTo('admin_forum') && !isset($_GET['changeusername']) ? '[<a href="' . $scripturl . '?action=profile;u=' . $context['id_member'] . ';area=account;changeusername" style="font-style: italic;">' . $txt['username_change'] . '</a>]' : '',
  312. 'log_change' => true,
  313. 'permission' => 'profile_identity',
  314. 'prehtml' => allowedTo('admin_forum') && isset($_GET['changeusername']) ? '<div class="alert">' . $txt['username_warning'] . '</div>' : '',
  315. 'input_validate' => create_function('&$value', '
  316. global $sourcedir, $context, $user_info, $cur_profile;
  317. if (allowedTo(\'admin_forum\'))
  318. {
  319. // We\'ll need this...
  320. require_once($sourcedir . \'/Subs-Auth.php\');
  321. // Maybe they are trying to change their password as well?
  322. $resetPassword = true;
  323. if (isset($_POST[\'passwrd1\']) && $_POST[\'passwrd1\'] != \'\' && isset($_POST[\'passwrd2\']) && $_POST[\'passwrd1\'] == $_POST[\'passwrd2\'] && validatePassword($_POST[\'passwrd1\'], $value, array($cur_profile[\'real_name\'], $user_info[\'username\'], $user_info[\'name\'], $user_info[\'email\'])) == null)
  324. $resetPassword = false;
  325. // Do the reset... this will send them an email too.
  326. if ($resetPassword)
  327. resetPassword($context[\'id_member\'], $value);
  328. elseif ($value !== null)
  329. {
  330. validateUsername($context[\'id_member\'], trim(preg_replace(\'~[\t\n\r \x0B\0\' . ($context[\'utf8\'] ? ($context[\'server\'][\'complex_preg_chars\'] ? \'\x{A0}\x{AD}\x{2000}-\x{200F}\x{201F}\x{202F}\x{3000}\x{FEFF}\' : "\xC2\xA0\xC2\xAD\xE2\x80\x80-\xE2\x80\x8F\xE2\x80\x9F\xE2\x80\xAF\xE2\x80\x9F\xE3\x80\x80\xEF\xBB\xBF") : \'\x00-\x08\x0B\x0C\x0E-\x19\xA0\') . \']+~\' . ($context[\'utf8\'] ? \'u\' : \'\'), \' \', $value)));
  331. updateMemberData($context[\'id_member\'], array(\'member_name\' => $value));
  332. }
  333. }
  334. return false;
  335. '),
  336. ),
  337. 'skype' => array(
  338. 'type' => 'text',
  339. 'label' => $txt['skype'],
  340. 'subtext' => $txt['skype_username'],
  341. 'size' => 24,
  342. 'permission' => 'profile_extra',
  343. ),
  344. 'passwrd1' => array(
  345. 'type' => 'password',
  346. 'label' => ucwords($txt['choose_pass']),
  347. 'subtext' => $txt['password_strength'],
  348. 'size' => 20,
  349. 'value' => '',
  350. 'enabled' => empty($cur_profile['openid_uri']),
  351. 'permission' => 'profile_identity',
  352. 'save_key' => 'passwd',
  353. // Note this will only work if passwrd2 also exists!
  354. 'input_validate' => create_function('&$value', '
  355. global $sourcedir, $user_info, $smcFunc, $cur_profile;
  356. // If we didn\'t try it then ignore it!
  357. if ($value == \'\')
  358. return false;
  359. // Do the two entries for the password even match?
  360. if (!isset($_POST[\'passwrd2\']) || $value != $_POST[\'passwrd2\'])
  361. return \'bad_new_password\';
  362. // Let\'s get the validation function into play...
  363. require_once($sourcedir . \'/Subs-Auth.php\');
  364. $passwordErrors = validatePassword($value, $cur_profile[\'member_name\'], array($cur_profile[\'real_name\'], $user_info[\'username\'], $user_info[\'name\'], $user_info[\'email\']));
  365. // Were there errors?
  366. if ($passwordErrors != null)
  367. return \'password_\' . $passwordErrors;
  368. // Set up the new password variable... ready for storage.
  369. $value = sha1(strtolower($cur_profile[\'member_name\']) . un_htmlspecialchars($value));
  370. return true;
  371. '),
  372. ),
  373. 'passwrd2' => array(
  374. 'type' => 'password',
  375. 'label' => ucwords($txt['verify_pass']),
  376. 'enabled' => empty($cur_profile['openid_uri']),
  377. 'size' => 20,
  378. 'value' => '',
  379. 'permission' => 'profile_identity',
  380. 'is_dummy' => true,
  381. ),
  382. 'personal_text' => array(
  383. 'type' => 'text',
  384. 'label' => $txt['personal_text'],
  385. 'log_change' => true,
  386. 'input_attr' => array('maxlength="50"'),
  387. 'size' => 50,
  388. 'permission' => 'profile_extra',
  389. 'input_validate' => create_function('&$value', '
  390. global $smcFunc;
  391. if ($smcFunc[\'strlen\']($value) > 50)
  392. return \'personal_text_too_long\';
  393. return true;
  394. '),
  395. ),
  396. // This does ALL the pm settings
  397. 'pm_prefs' => array(
  398. 'type' => 'callback',
  399. 'callback_func' => 'pm_settings',
  400. 'permission' => 'pm_read',
  401. 'preload' => create_function('', '
  402. global $context, $cur_profile;
  403. $context[\'display_mode\'] = $cur_profile[\'pm_prefs\'] & 3;
  404. $context[\'send_email\'] = $cur_profile[\'pm_email_notify\'];
  405. $context[\'receive_from\'] = !empty($cur_profile[\'pm_receive_from\']) ? $cur_profile[\'pm_receive_from\'] : 0;
  406. return true;
  407. '),
  408. 'input_validate' => create_function('&$value', '
  409. global $cur_profile, $profile_vars;
  410. // Simple validate and apply the two "sub settings"
  411. $value = max(min($value, 2), 0);
  412. $cur_profile[\'pm_email_notify\'] = $profile_vars[\'pm_email_notify\'] = max(min((int) $_POST[\'pm_email_notify\'], 2), 0);
  413. $cur_profile[\'pm_receive_from\'] = $profile_vars[\'pm_receive_from\'] = max(min((int) $_POST[\'pm_receive_from\'], 4), 0);
  414. return true;
  415. '),
  416. ),
  417. 'posts' => array(
  418. 'type' => 'int',
  419. 'label' => $txt['profile_posts'],
  420. 'log_change' => true,
  421. 'size' => 7,
  422. 'permission' => 'moderate_forum',
  423. 'input_validate' => create_function('&$value', '
  424. if (!is_numeric($value))
  425. return \'digits_only\';
  426. else
  427. $value = $value != \'\' ? strtr($value, array(\',\' => \'\', \'.\' => \'\', \' \' => \'\')) : 0;
  428. return true;
  429. '),
  430. ),
  431. 'real_name' => array(
  432. 'type' => !empty($modSettings['allow_editDisplayName']) || allowedTo('moderate_forum') ? 'text' : 'label',
  433. 'label' => $txt['name'],
  434. 'subtext' => $txt['display_name_desc'],
  435. 'log_change' => true,
  436. 'input_attr' => array('maxlength="60"'),
  437. 'permission' => 'profile_identity',
  438. 'enabled' => !empty($modSettings['allow_editDisplayName']) || allowedTo('moderate_forum'),
  439. 'input_validate' => create_function('&$value', '
  440. global $context, $smcFunc, $sourcedir, $cur_profile;
  441. $value = trim(preg_replace(\'~[\t\n\r \x0B\0\' . ($context[\'utf8\'] ? ($context[\'server\'][\'complex_preg_chars\'] ? \'\x{A0}\x{AD}\x{2000}-\x{200F}\x{201F}\x{202F}\x{3000}\x{FEFF}\' : "\xC2\xA0\xC2\xAD\xE2\x80\x80-\xE2\x80\x8F\xE2\x80\x9F\xE2\x80\xAF\xE2\x80\x9F\xE3\x80\x80\xEF\xBB\xBF") : \'\x00-\x08\x0B\x0C\x0E-\x19\xA0\') . \']+~\' . ($context[\'utf8\'] ? \'u\' : \'\'), \' \', $value));
  442. if (trim($value) == \'\')
  443. return \'no_name\';
  444. elseif ($smcFunc[\'strlen\']($value) > 60)
  445. return \'name_too_long\';
  446. elseif ($cur_profile[\'real_name\'] != $value)
  447. {
  448. require_once($sourcedir . \'/Subs-Members.php\');
  449. if (isReservedName($value, $context[\'id_member\']))
  450. return \'name_taken\';
  451. }
  452. return true;
  453. '),
  454. ),
  455. 'secret_question' => array(
  456. 'type' => 'text',
  457. 'label' => $txt['secret_question'],
  458. 'subtext' => $txt['secret_desc'],
  459. 'size' => 50,
  460. 'permission' => 'profile_identity',
  461. ),
  462. 'secret_answer' => array(
  463. 'type' => 'text',
  464. 'label' => $txt['secret_answer'],
  465. 'subtext' => $txt['secret_desc2'],
  466. 'size' => 20,
  467. 'postinput' => '<span class="smalltext" style="margin-left: 4ex;">[<a href="' . $scripturl . '?action=helpadmin;help=secret_why_blank" onclick="return reqOverlayDiv(this.href);">' . $txt['secret_why_blank'] . '</a>]</span>',
  468. 'value' => '',
  469. 'permission' => 'profile_identity',
  470. 'input_validate' => create_function('&$value', '
  471. $value = $value != \'\' ? md5($value) : \'\';
  472. return true;
  473. '),
  474. ),
  475. 'signature' => array(
  476. 'type' => 'callback',
  477. 'callback_func' => 'signature_modify',
  478. 'permission' => 'profile_extra',
  479. 'enabled' => substr($modSettings['signature_settings'], 0, 1) == 1,
  480. 'preload' => 'profileLoadSignatureData',
  481. 'input_validate' => 'profileValidateSignature',
  482. ),
  483. 'show_online' => array(
  484. 'type' => 'check',
  485. 'label' => $txt['show_online'],
  486. 'permission' => 'profile_identity',
  487. 'enabled' => !empty($modSettings['allow_hideOnline']) || allowedTo('moderate_forum'),
  488. ),
  489. 'smiley_set' => array(
  490. 'type' => 'callback',
  491. 'callback_func' => 'smiley_pick',
  492. 'enabled' => !empty($modSettings['smiley_sets_enable']),
  493. 'permission' => 'profile_extra',
  494. 'preload' => create_function('', '
  495. global $modSettings, $context, $txt, $cur_profile, $smcFunc;
  496. $context[\'member\'][\'smiley_set\'][\'id\'] = empty($cur_profile[\'smiley_set\']) ? \'\' : $cur_profile[\'smiley_set\'];
  497. $context[\'smiley_sets\'] = explode(\',\', \'none,,\' . $modSettings[\'smiley_sets_known\']);
  498. $set_names = explode("\n", $txt[\'smileys_none\'] . "\n" . $txt[\'smileys_forum_board_default\'] . "\n" . $modSettings[\'smiley_sets_names\']);
  499. foreach ($context[\'smiley_sets\'] as $i => $set)
  500. {
  501. $context[\'smiley_sets\'][$i] = array(
  502. \'id\' => $smcFunc[\'htmlspecialchars\']($set),
  503. \'name\' => $smcFunc[\'htmlspecialchars\']($set_names[$i]),
  504. \'selected\' => $set == $context[\'member\'][\'smiley_set\'][\'id\']
  505. );
  506. if ($context[\'smiley_sets\'][$i][\'selected\'])
  507. $context[\'member\'][\'smiley_set\'][\'name\'] = $set_names[$i];
  508. }
  509. return true;
  510. '),
  511. 'input_validate' => create_function('&$value', '
  512. global $modSettings;
  513. $smiley_sets = explode(\',\', $modSettings[\'smiley_sets_known\']);
  514. if (!in_array($value, $smiley_sets) && $value != \'none\')
  515. $value = \'\';
  516. return true;
  517. '),
  518. ),
  519. // Pretty much a dummy entry - it populates all the theme settings.
  520. 'theme_settings' => array(
  521. 'type' => 'callback',
  522. 'callback_func' => 'theme_settings',
  523. 'permission' => 'profile_extra',
  524. 'is_dummy' => true,
  525. 'preload' => create_function('', '
  526. global $context, $user_info, $modSettings;
  527. loadLanguage(\'Settings\');
  528. $context[\'allow_no_censored\'] = false;
  529. if ($user_info[\'is_admin\'] || $context[\'user\'][\'is_owner\'])
  530. $context[\'allow_no_censored\'] = !empty($modSettings[\'allow_no_censored\']);
  531. return true;
  532. '),
  533. ),
  534. 'time_format' => array(
  535. 'type' => 'callback',
  536. 'callback_func' => 'timeformat_modify',
  537. 'permission' => 'profile_extra',
  538. 'preload' => create_function('', '
  539. global $context, $user_info, $txt, $cur_profile, $modSettings;
  540. $context[\'easy_timeformats\'] = array(
  541. array(\'format\' => \'\', \'title\' => $txt[\'timeformat_default\']),
  542. array(\'format\' => \'%B %d, %Y, %I:%M:%S %p\', \'title\' => $txt[\'timeformat_easy1\']),
  543. array(\'format\' => \'%B %d, %Y, %H:%M:%S\', \'title\' => $txt[\'timeformat_easy2\']),
  544. array(\'format\' => \'%Y-%m-%d, %H:%M:%S\', \'title\' => $txt[\'timeformat_easy3\']),
  545. array(\'format\' => \'%d %B %Y, %H:%M:%S\', \'title\' => $txt[\'timeformat_easy4\']),
  546. array(\'format\' => \'%d-%m-%Y, %H:%M:%S\', \'title\' => $txt[\'timeformat_easy5\'])
  547. );
  548. $context[\'member\'][\'time_format\'] = $cur_profile[\'time_format\'];
  549. $context[\'current_forum_time\'] = timeformat(time() - $user_info[\'time_offset\'] * 3600, false);
  550. $context[\'current_forum_time_js\'] = strftime(\'%Y,\' . ((int) strftime(\'%m\', time() + $modSettings[\'time_offset\'] * 3600) - 1) . \',%d,%H,%M,%S\', time() + $modSettings[\'time_offset\'] * 3600);
  551. $context[\'current_forum_time_hour\'] = (int) strftime(\'%H\', forum_time(false));
  552. return true;
  553. '),
  554. ),
  555. 'time_offset' => array(
  556. 'type' => 'callback',
  557. 'callback_func' => 'timeoffset_modify',
  558. 'permission' => 'profile_extra',
  559. 'preload' => create_function('', '
  560. global $context, $cur_profile;
  561. $context[\'member\'][\'time_offset\'] = $cur_profile[\'time_offset\'];
  562. return true;
  563. '),
  564. 'input_validate' => create_function('&$value', '
  565. // Validate the time_offset...
  566. $value = (float) strtr($value, \',\', \'.\');
  567. if ($value < -23.5 || $value > 23.5)
  568. return \'bad_offset\';
  569. return true;
  570. '),
  571. ),
  572. 'usertitle' => array(
  573. 'type' => 'text',
  574. 'label' => $txt['custom_title'],
  575. 'log_change' => true,
  576. 'input_attr' => array('maxlength="50"'),
  577. 'size' => 50,
  578. 'permission' => 'profile_title',
  579. 'enabled' => !empty($modSettings['titlesEnable']),
  580. 'input_validate' => create_function('&$value', '
  581. global $smcFunc;
  582. if ($smcFunc[\'strlen\']($value) > 50)
  583. return \'user_title_too_long\';
  584. return true;
  585. '),
  586. ),
  587. 'website_title' => array(
  588. 'type' => 'text',
  589. 'label' => $txt['website_title'],
  590. 'subtext' => $txt['include_website_url'],
  591. 'size' => 50,
  592. 'permission' => 'profile_extra',
  593. 'link_with' => 'website',
  594. ),
  595. 'website_url' => array(
  596. 'type' => 'text',
  597. 'label' => $txt['website_url'],
  598. 'subtext' => $txt['complete_url'],
  599. 'size' => 50,
  600. 'permission' => 'profile_extra',
  601. // Fix the URL...
  602. 'input_validate' => create_function('&$value', '
  603. if (strlen(trim($value)) > 0 && strpos($value, \'://\') === false)
  604. $value = \'http://\' . $value;
  605. if (strlen($value) < 8 || (substr($value, 0, 7) !== \'http://\' && substr($value, 0, 8) !== \'https://\'))
  606. $value = \'\';
  607. return true;
  608. '),
  609. 'link_with' => 'website',
  610. ),
  611. 'yim' => array(
  612. 'type' => 'text',
  613. 'label' => $txt['yim'],
  614. 'subtext' => $txt['your_yim'],
  615. 'size' => 24,
  616. 'input_attr' => array('maxlength="32"'),
  617. 'permission' => 'profile_extra',
  618. ),
  619. );
  620. call_integration_hook('integrate_load_profile_fields', array(&$profile_fields));
  621. $disabled_fields = !empty($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array();
  622. // For each of the above let's take out the bits which don't apply - to save memory and security!
  623. foreach ($profile_fields as $key => $field)
  624. {
  625. // Do we have permission to do this?
  626. if (isset($field['permission']) && !allowedTo(($context['user']['is_owner'] ? array($field['permission'] . '_own', $field['permission'] . '_any') : $field['permission'] . '_any')) && !allowedTo($field['permission']))
  627. unset($profile_fields[$key]);
  628. // Is it enabled?
  629. if (isset($field['enabled']) && !$field['enabled'])
  630. unset($profile_fields[$key]);
  631. // Is it specifically disabled?
  632. if (in_array($key, $disabled_fields) || (isset($field['link_with']) && in_array($field['link_with'], $disabled_fields)))
  633. unset($profile_fields[$key]);
  634. }
  635. }
  636. /**
  637. * Setup the context for a page load!
  638. *
  639. * @param array $fields
  640. */
  641. function setupProfileContext($fields)
  642. {
  643. global $profile_fields, $context, $cur_profile, $smcFunc, $txt;
  644. // Make sure we have this!
  645. loadProfileFields(true);
  646. // First check for any linked sets.
  647. foreach ($profile_fields as $key => $field)
  648. if (isset($field['link_with']) && in_array($field['link_with'], $fields))
  649. $fields[] = $key;
  650. // Some default bits.
  651. $context['profile_prehtml'] = '';
  652. $context['profile_posthtml'] = '';
  653. $context['profile_javascript'] = '';
  654. $context['profile_onsubmit_javascript'] = '';
  655. $i = 0;
  656. $last_type = '';
  657. foreach ($fields as $key => $field)
  658. {
  659. if (isset($profile_fields[$field]))
  660. {
  661. // Shortcut.
  662. $cur_field = &$profile_fields[$field];
  663. // Does it have a preload and does that preload succeed?
  664. if (isset($cur_field['preload']) && !$cur_field['preload']())
  665. continue;
  666. // If this is anything but complex we need to do more cleaning!
  667. if ($cur_field['type'] != 'callback' && $cur_field['type'] != 'hidden')
  668. {
  669. if (!isset($cur_field['label']))
  670. $cur_field['label'] = isset($txt[$field]) ? $txt[$field] : $field;
  671. // Everything has a value!
  672. if (!isset($cur_field['value']))
  673. {
  674. $cur_field['value'] = isset($cur_profile[$field]) ? $cur_profile[$field] : '';
  675. }
  676. // Any input attributes?
  677. $cur_field['input_attr'] = !empty($cur_field['input_attr']) ? implode(',', $cur_field['input_attr']) : '';
  678. }
  679. // Was there an error with this field on posting?
  680. if (isset($context['profile_errors'][$field]))
  681. $cur_field['is_error'] = true;
  682. // Any javascript stuff?
  683. if (!empty($cur_field['js_submit']))
  684. $context['profile_onsubmit_javascript'] .= $cur_field['js_submit'];
  685. if (!empty($cur_field['js']))
  686. $context['profile_javascript'] .= $cur_field['js'];
  687. // Any template stuff?
  688. if (!empty($cur_field['prehtml']))
  689. $context['profile_prehtml'] .= $cur_field['prehtml'];
  690. if (!empty($cur_field['posthtml']))
  691. $context['profile_posthtml'] .= $cur_field['posthtml'];
  692. // Finally put it into context?
  693. if ($cur_field['type'] != 'hidden')
  694. {
  695. $last_type = $cur_field['type'];
  696. $context['profile_fields'][$field] = &$profile_fields[$field];
  697. }
  698. }
  699. // Bodge in a line break - without doing two in a row ;)
  700. elseif ($field == 'hr' && $last_type != 'hr' && $last_type != '')
  701. {
  702. $last_type = 'hr';
  703. $context['profile_fields'][$i++]['type'] = 'hr';
  704. }
  705. }
  706. // Free up some memory.
  707. unset($profile_fields);
  708. }
  709. /**
  710. * Save the profile changes.
  711. */
  712. function saveProfileFields()
  713. {
  714. global $profile_fields, $profile_vars, $context, $old_profile, $post_errors, $sourcedir, $modSettings, $cur_profile, $smcFunc;
  715. // Load them up.
  716. loadProfileFields();
  717. // This makes things easier...
  718. $old_profile = $cur_profile;
  719. // This allows variables to call activities when they save - by default just to reload their settings
  720. $context['profile_execute_on_save'] = array();
  721. if ($context['user']['is_owner'])
  722. $context['profile_execute_on_save']['reload_user'] = 'profileReloadUser';
  723. // Assume we log nothing.
  724. $context['log_changes'] = array();
  725. // Cycle through the profile fields working out what to do!
  726. foreach ($profile_fields as $key => $field)
  727. {
  728. if (!isset($_POST[$key]) || !empty($field['is_dummy']) || (isset($_POST['preview_signature']) && $key == 'signature'))
  729. continue;
  730. // What gets updated?
  731. $db_key = isset($field['save_key']) ? $field['save_key'] : $key;
  732. // Right - we have something that is enabled, we can act upon and has a value posted to it. Does it have a validation function?
  733. if (isset($field['input_validate']))
  734. {
  735. $is_valid = $field['input_validate']($_POST[$key]);
  736. // An error occured - set it as such!
  737. if ($is_valid !== true)
  738. {
  739. // Is this an actual error?
  740. if ($is_valid !== false)
  741. {
  742. $post_errors[$key] = $is_valid;
  743. $profile_fields[$key]['is_error'] = $is_valid;
  744. }
  745. // Retain the old value.
  746. $cur_profile[$key] = $_POST[$key];
  747. continue;
  748. }
  749. }
  750. // Are we doing a cast?
  751. $field['cast_type'] = empty($field['cast_type']) ? $field['type'] : $field['cast_type'];
  752. // Finally, clean up certain types.
  753. if ($field['cast_type'] == 'int')
  754. $_POST[$key] = (int) $_POST[$key];
  755. elseif ($field['cast_type'] == 'float')
  756. $_POST[$key] = (float) $_POST[$key];
  757. elseif ($field['cast_type'] == 'check')
  758. $_POST[$key] = !empty($_POST[$key]) ? 1 : 0;
  759. // If we got here we're doing OK.
  760. if ($field['type'] != 'hidden' && (!isset($old_profile[$key]) || $_POST[$key] != $old_profile[$key]))
  761. {
  762. // Set the save variable.
  763. $profile_vars[$db_key] = $_POST[$key];
  764. // And update the user profile.
  765. $cur_profile[$key] = $_POST[$key];
  766. // Are we logging it?
  767. if (!empty($field['log_change']) && isset($old_profile[$key]))
  768. $context['log_changes'][$key] = array(
  769. 'previous' => $old_profile[$key],
  770. 'new' => $_POST[$key],
  771. );
  772. }
  773. // Logging group changes are a bit different...
  774. if ($key == 'id_group' && $field['log_change'])
  775. {
  776. profileLoadGroups();
  777. // Any changes to primary group?
  778. if ($_POST['id_group'] != $old_profile['id_group'])
  779. {
  780. $context['log_changes']['id_group'] = array(
  781. 'previous' => !empty($old_profile[$key]) && isset($context['member_groups'][$old_profile[$key]]) ? $context['member_groups'][$old_profile[$key]]['name'] : '',
  782. 'new' => !empty($_POST[$key]) && isset($context['member_groups'][$_POST[$key]]) ? $context['member_groups'][$_POST[$key]]['name'] : '',
  783. );
  784. }
  785. // Prepare additional groups for comparison.
  786. $additional_groups = array(
  787. 'previous' => !empty($old_profile['additional_groups']) ? explode(',', $old_profile['additional_groups']) : array(),
  788. 'new' => !empty($_POST['additional_groups']) ? array_diff($_POST['additional_groups'], array(0)) : array(),
  789. );
  790. sort($additional_groups['previous']);
  791. sort($additional_groups['new']);
  792. // What about additional groups?
  793. if ($additional_groups['previous'] != $additional_groups['new'])
  794. {
  795. foreach ($additional_groups as $type => $groups)
  796. {
  797. foreach ($groups as $id => $group)
  798. {
  799. if (isset($context['member_groups'][$group]))
  800. $additional_groups[$type][$id] = $context['member_groups'][$group]['name'];
  801. else
  802. unset($additional_groups[$type][$id]);
  803. }
  804. $additional_groups[$type] = implode(', ', $additional_groups[$type]);
  805. }
  806. $context['log_changes']['additional_groups'] = $additional_groups;
  807. }
  808. }
  809. }
  810. // @todo Temporary
  811. if ($context['user']['is_owner'])
  812. $changeOther = allowedTo(array('profile_extra_any', 'profile_extra_own'));
  813. else
  814. $changeOther = allowedTo('profile_extra_any');
  815. if ($changeOther && empty($post_errors))
  816. {
  817. makeThemeChanges($context['id_member'], isset($_POST['id_theme']) ? (int) $_POST['id_theme'] : $old_profile['id_theme']);
  818. if (!empty($_REQUEST['sa']))
  819. makeCustomFieldChanges($context['id_member'], $_REQUEST['sa'], false);
  820. }
  821. // Free memory!
  822. unset($profile_fields);
  823. }
  824. /**
  825. * Save the profile changes
  826. *
  827. * @param array &$profile_variables
  828. * @param array &$post_errors
  829. * @param int $memID id_member
  830. */
  831. function saveProfileChanges(&$profile_vars, &$post_errors, $memID)
  832. {
  833. global $user_info, $txt, $modSettings, $user_profile;
  834. global $context, $settings, $sourcedir;
  835. global $smcFunc;
  836. // These make life easier....
  837. $old_profile = &$user_profile[$memID];
  838. // Permissions...
  839. if ($context['user']['is_owner'])
  840. {
  841. $changeIdentity = allowedTo(array('profile_identity_any', 'profile_identity_own'));
  842. $changeOther = allowedTo(array('profile_extra_any', 'profile_extra_own'));
  843. }
  844. else
  845. {
  846. $changeIdentity = allowedTo('profile_identity_any');
  847. $changeOther = allowedTo('profile_extra_any');
  848. }
  849. // Arrays of all the changes - makes things easier.
  850. $profile_bools = array(
  851. 'notify_announcements', 'notify_send_body',
  852. );
  853. $profile_ints = array(
  854. 'notify_regularity',
  855. 'notify_types',
  856. );
  857. $profile_floats = array(
  858. );
  859. $profile_strings = array(
  860. 'buddy_list',
  861. 'ignore_boards',
  862. );
  863. if (isset($_POST['sa']) && $_POST['sa'] == 'ignoreboards' && empty($_POST['ignore_brd']))
  864. $_POST['ignore_brd'] = array();
  865. unset($_POST['ignore_boards']); // Whatever it is set to is a dirty fithy thing. Kinda like our minds.
  866. if (isset($_POST['ignore_brd']))
  867. {
  868. if (!is_array($_POST['ignore_brd']))
  869. $_POST['ignore_brd'] = array ($_POST['ignore_brd']);
  870. foreach ($_POST['ignore_brd'] as $k => $d)
  871. {
  872. $d = (int) $d;
  873. if ($d != 0)
  874. $_POST['ignore_brd'][$k] = $d;
  875. else
  876. unset($_POST['ignore_brd'][$k]);
  877. }
  878. $_POST['ignore_boards'] = implode(',', $_POST['ignore_brd']);
  879. unset($_POST['ignore_brd']);
  880. }
  881. // Here's where we sort out all the 'other' values...
  882. if ($changeOther)
  883. {
  884. makeThemeChanges($memID, isset($_POST['id_theme']) ? (int) $_POST['id_theme'] : $old_profile['id_theme']);
  885. //makeAvatarChanges($memID, $post_errors);
  886. makeNotificationChanges($memID);
  887. if (!empty($_REQUEST['sa']))
  888. makeCustomFieldChanges($memID, $_REQUEST['sa'], false);
  889. foreach ($profile_bools as $var)
  890. if (isset($_POST[$var]))
  891. $profile_vars[$var] = empty($_POST[$var]) ? '0' : '1';
  892. foreach ($profile_ints as $var)
  893. if (isset($_POST[$var]))
  894. $profile_vars[$var] = $_POST[$var] != '' ? (int) $_POST[$var] : '';
  895. foreach ($profile_floats as $var)
  896. if (isset($_POST[$var]))
  897. $profile_vars[$var] = (float) $_POST[$var];
  898. foreach ($profile_strings as $var)
  899. if (isset($_POST[$var]))
  900. $profile_vars[$var] = $_POST[$var];
  901. }
  902. }
  903. /**
  904. * Make any theme changes that are sent with the profile.
  905. *
  906. * @param int $memID
  907. * @param int $id_theme
  908. */
  909. function makeThemeChanges($memID, $id_theme)
  910. {
  911. global $modSettings, $smcFunc, $context, $user_info;
  912. $reservedVars = array(
  913. 'actual_theme_url',
  914. 'actual_images_url',
  915. 'base_theme_dir',
  916. 'base_theme_url',
  917. 'default_images_url',
  918. 'default_theme_dir',
  919. 'default_theme_url',
  920. 'default_template',
  921. 'images_url',
  922. 'number_recent_posts',
  923. 'smiley_sets_default',
  924. 'theme_dir',
  925. 'theme_id',
  926. 'theme_layers',
  927. 'theme_templates',
  928. 'theme_url',
  929. );
  930. // Can't change reserved vars.
  931. if ((isset($_POST['options']) && count(array_intersect(array_keys($_POST['options']), $reservedVars)) != 0) || (isset($_POST['default_options']) && count(array_intersect(array_keys($_POST['default_options']), $reservedVars)) != 0))
  932. fatal_lang_error('no_access', false);
  933. // Don't allow any overriding of custom fields with default or non-default options.
  934. $request = $smcFunc['db_query']('', '
  935. SELECT col_name
  936. FROM {db_prefix}custom_fields
  937. WHERE active = {int:is_active}',
  938. array(
  939. 'is_active' => 1,
  940. )
  941. );
  942. $custom_fields = array();
  943. while ($row = $smcFunc['db_fetch_assoc']($request))
  944. $custom_fields[] = $row['col_name'];
  945. $smcFunc['db_free_result']($request);
  946. // These are the theme changes...
  947. $themeSetArray = array();
  948. if (isset($_POST['options']) && is_array($_POST['options']))
  949. {
  950. foreach ($_POST['options'] as $opt => $val)
  951. {
  952. if (in_array($opt, $custom_fields))
  953. continue;
  954. // These need to be controlled.
  955. if ($opt == 'topics_per_page' || $opt == 'messages_per_page')
  956. $val = max(0, min($val, 50));
  957. // We don't set this per theme anymore.
  958. elseif ($opt == 'allow_no_censored')
  959. continue;
  960. $themeSetArray[] = array($memID, $id_theme, $opt, is_array($val) ? implode(',', $val) : $val);
  961. }
  962. }
  963. $erase_options = array();
  964. if (isset($_POST['default_options']) && is_array($_POST['default_options']))
  965. foreach ($_POST['default_options'] as $opt => $val)
  966. {
  967. if (in_array($opt, $custom_fields))
  968. continue;
  969. // These need to be controlled.
  970. if ($opt == 'topics_per_page' || $opt == 'messages_per_page')
  971. $val = max(0, min($val, 50));
  972. // Only let admins and owners change the censor.
  973. elseif ($opt == 'allow_no_censored' && !$user_info['is_admin'] && !$context['user']['is_owner'])
  974. continue;
  975. $themeSetArray[] = array($memID, 1, $opt, is_array($val) ? implode(',', $val) : $val);
  976. $erase_options[] = $opt;
  977. }
  978. // If themeSetArray isn't still empty, send it to the database.
  979. if (empty($context['password_auth_failed']))
  980. {
  981. if (!empty($themeSetArray))
  982. {
  983. $smcFunc['db_insert']('replace',
  984. '{db_prefix}themes',
  985. array('id_member' => 'int', 'id_theme' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'),
  986. $themeSetArray,
  987. array('id_member', 'id_theme', 'variable')
  988. );
  989. }
  990. if (!empty($erase_options))
  991. {
  992. $smcFunc['db_query']('', '
  993. DELETE FROM {db_prefix}themes
  994. WHERE id_theme != {int:id_theme}
  995. AND variable IN ({array_string:erase_variables})
  996. AND id_member = {int:id_member}',
  997. array(
  998. 'id_theme' => 1,
  999. 'id_member' => $memID,
  1000. 'erase_variables' => $erase_options
  1001. )
  1002. );
  1003. }
  1004. $themes = explode(',', $modSettings['knownThemes']);
  1005. foreach ($themes as $t)
  1006. cache_put_data('theme_settings-' . $t . ':' . $memID, null, 60);
  1007. }
  1008. }
  1009. /**
  1010. * Make any notification changes that need to be made.
  1011. *
  1012. * @param int $memID id_member
  1013. */
  1014. function makeNotificationChanges($memID)
  1015. {
  1016. global $smcFunc;
  1017. // Update the boards they are being notified on.
  1018. if (isset($_POST['edit_notify_boards']) && !empty($_POST['notify_boards']))
  1019. {
  1020. // Make sure only integers are deleted.
  1021. foreach ($_POST['notify_boards'] as $index => $id)
  1022. $_POST['notify_boards'][$index] = (int) $id;
  1023. // id_board = 0 is reserved for topic notifications.
  1024. $_POST['notify_boards'] = array_diff($_POST['notify_boards'], array(0));
  1025. $smcFunc['db_query']('', '
  1026. DELETE FROM {db_prefix}log_notify
  1027. WHERE id_board IN ({array_int:board_list})
  1028. AND id_member = {int:selected_member}',
  1029. array(
  1030. 'board_list' => $_POST['notify_boards'],
  1031. 'selected_member' => $memID,
  1032. )
  1033. );
  1034. }
  1035. // We are editing topic notifications......
  1036. elseif (isset($_POST['edit_notify_topics']) && !empty($_POST['notify_topics']))
  1037. {
  1038. foreach ($_POST['notify_topics'] as $index => $id)
  1039. $_POST['notify_topics'][$index] = (int) $id;
  1040. // Make sure there are no zeros left.
  1041. $_POST['notify_topics'] = array_diff($_POST['notify_topics'], array(0));
  1042. $smcFunc['db_query']('', '
  1043. DELETE FROM {db_prefix}log_notify
  1044. WHERE id_topic IN ({array_int:topic_list})
  1045. AND id_member = {int:selected_member}',
  1046. array(
  1047. 'topic_list' => $_POST['notify_topics'],
  1048. 'selected_member' => $memID,
  1049. )
  1050. );
  1051. }
  1052. }
  1053. /**
  1054. * Save any changes to the custom profile fields
  1055. *
  1056. * @param int $memID
  1057. * @param string $area
  1058. * @param bool $sanitize = true
  1059. */
  1060. function makeCustomFieldChanges($memID, $area, $sanitize = true)
  1061. {
  1062. global $context, $smcFunc, $user_profile, $user_info, $modSettings, $sourcedir;
  1063. if ($sanitize && isset($_POST['customfield']))
  1064. $_POST['customfield'] = htmlspecialchars__recursive($_POST['customfield']);
  1065. $where = $area == 'register' ? 'show_reg != 0' : 'show_profile = {string:area}';
  1066. // Load the fields we are saving too - make sure we save valid data (etc).
  1067. $request = $smcFunc['db_query']('', '
  1068. SELECT col_name, field_name, field_desc, field_type, field_length, field_options, default_value, show_reg, mask, private
  1069. FROM {db_prefix}custom_fields
  1070. WHERE ' . $where . '
  1071. AND active = {int:is_active}',
  1072. array(
  1073. 'is_active' => 1,
  1074. 'area' => $area,
  1075. )
  1076. );
  1077. $changes = array();
  1078. $log_changes = array();
  1079. while ($row = $smcFunc['db_fetch_assoc']($request))
  1080. {
  1081. /* This means don't save if:
  1082. - The user is NOT an admin.
  1083. - The data is not freely viewable and editable by users.
  1084. - The data is not invisible to users but editable by the owner (or if it is the user is not the owner)
  1085. - The area isn't registration, and if it is that the field is not suppossed to be shown there.
  1086. */
  1087. if ($row['private'] != 0 && !allowedTo('admin_forum') && ($memID != $user_info['id'] || $row['private'] != 2) && ($area != 'register' || $row['show_reg'] == 0))
  1088. continue;
  1089. // Validate the user data.
  1090. if ($row['field_type'] == 'check')
  1091. $value = isset($_POST['customfield'][$row['col_name']]) ? 1 : 0;
  1092. elseif ($row['field_type'] == 'select' || $row['field_type'] == 'radio')
  1093. {
  1094. $value = $row['default_value'];
  1095. foreach (explode(',', $row['field_options']) as $k => $v)
  1096. if (isset($_POST['customfield'][$row['col_name']]) && $_POST['customfield'][$row['col_name']] == $k)
  1097. $value = $v;
  1098. }
  1099. // Otherwise some form of text!
  1100. else
  1101. {
  1102. $value = isset($_POST['customfield'][$row['col_name']]) ? $_POST['customfield'][$row['col_name']] : '';
  1103. if ($row['field_length'])
  1104. $value = $smcFunc['substr']($value, 0, $row['field_length']);
  1105. // Any masks?
  1106. if ($row['field_type'] == 'text' && !empty($row['mask']) && $row['mask'] != 'none')
  1107. {
  1108. // @todo We never error on this - just ignore it at the moment...
  1109. if ($row['mask'] == 'email' && (preg_match('~^[0-9A-Za-z=_+\-/][0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', $value) === 0 || strlen($value) > 255))
  1110. $value = '';
  1111. elseif ($row['mask'] == 'number')
  1112. {
  1113. $value = (int) $value;
  1114. }
  1115. elseif (substr($row['mask'], 0, 5) == 'regex' && preg_match(substr($row['mask'], 5), $value) === 0)
  1116. $value = '';
  1117. }
  1118. }
  1119. // Did it change?
  1120. if (!isset($user_profile[$memID]['options'][$row['col_name']]) || $user_profile[$memID]['options'][$row['col_name']] != $value)
  1121. {
  1122. $log_changes[] = array(
  1123. 'action' => 'customfield_' . $row['col_name'],
  1124. 'log_type' => 'user',
  1125. 'extra' => array(
  1126. 'previous' => !empty($user_profile[$memID]['options'][$row['col_name']]) ? $user_profile[$memID]['options'][$row['col_name']] : '',
  1127. 'new' => $value,
  1128. 'applicator' => $user_info['id'],
  1129. 'member_affected' => $memID,
  1130. ),
  1131. );
  1132. $changes[] = array(1, $row['col_name'], $value, $memID);
  1133. $user_profile[$memID]['options'][$row['col_name']] = $value;
  1134. }
  1135. }
  1136. $smcFunc['db_free_result']($request);
  1137. call_integration_hook('integrate_save_custom_profile_fields', array(&$changes, &$log_changes, $memID, $area, $sanitize));
  1138. // Make those changes!
  1139. if (!empty($changes) && empty($context['password_auth_failed']))
  1140. {
  1141. $smcFunc['db_insert']('replace',
  1142. '{db_prefix}themes',
  1143. array('id_theme' => 'int', 'variable' => 'string-255', 'value' => 'string-65534', 'id_member' => 'int'),
  1144. $changes,
  1145. array('id_theme', 'variable', 'id_member')
  1146. );
  1147. if (!empty($log_changes) && !empty($modSettings['modlog_enabled']))
  1148. {
  1149. require_once($sourcedir . '/Logging.php');
  1150. logActions($log_changes);
  1151. }
  1152. }
  1153. }
  1154. /**
  1155. * Show all the users buddies, as well as a add/delete interface.
  1156. *
  1157. * @param int $memID id_member
  1158. */
  1159. function editBuddyIgnoreLists($memID)
  1160. {
  1161. global $sourcedir, $context, $txt, $scripturl, $modSettings, $user_profile;
  1162. // Do a quick check to ensure people aren't getting here illegally!
  1163. if (!$context['user']['is_owner'] || empty($modSettings['enable_buddylist']))
  1164. fatal_lang_error('no_access', false);
  1165. // Can we email the user direct?
  1166. $context['can_moderate_forum'] = allowedTo('moderate_forum');
  1167. $context['can_send_email'] = allowedTo('send_email_to_members');
  1168. $subActions = array(
  1169. 'buddies' => array('editBuddies', $txt['editBuddies']),
  1170. 'ignore' => array('editIgnoreList', $txt['editIgnoreList']),
  1171. );
  1172. $context['list_area'] = isset($_GET['sa']) && isset($subActions[$_GET['sa']]) ? $_GET['sa'] : 'buddies';
  1173. // Create the tabs for the template.
  1174. $context[$context['profile_menu_name']]['tab_data'] = array(
  1175. 'title' => $txt['editBuddyIgnoreLists'],
  1176. 'description' => $txt['buddy_ignore_desc'],
  1177. 'icon' => 'profile_hd.png',
  1178. 'tabs' => array(
  1179. 'buddies' => array(),
  1180. 'ignore' => array(),
  1181. ),
  1182. );
  1183. // Pass on to the actual function.
  1184. $context['sub_template'] = $subActions[$context['list_area']][0];
  1185. $subActions[$context['list_area']][0]($memID);
  1186. }
  1187. /**
  1188. * Show all the users buddies, as well as a add/delete interface.
  1189. *
  1190. * @param int $memID id_member
  1191. */
  1192. function editBuddies($memID)
  1193. {
  1194. global $txt, $scripturl, $modSettings;
  1195. global $context, $user_profile, $memberContext, $smcFunc;
  1196. // For making changes!
  1197. $buddiesArray = explode(',', $user_profile[$memID]['buddy_list']);
  1198. foreach ($buddiesArray as $k => $dummy)
  1199. if ($dummy == '')
  1200. unset($buddiesArray[$k]);
  1201. // Removing a buddy?
  1202. if (isset($_GET['remove']))
  1203. {
  1204. checkSession('get');
  1205. call_integration_hook('integrate_remove_buddy', array($memID));
  1206. // Heh, I'm lazy, do it the easy way...
  1207. foreach ($buddiesArray as $key => $buddy)
  1208. if ($buddy == (int) $_GET['remove'])
  1209. unset($buddiesArray[$key]);
  1210. // Make the changes.
  1211. $user_profile[$memID]['buddy_list'] = implode(',', $buddiesArray);
  1212. updateMemberData($memID, array('buddy_list' => $user_profile[$memID]['buddy_list']));
  1213. // Redirect off the page because we don't like all this ugly query stuff to stick in the history.
  1214. redirectexit('action=profile;area=lists;sa=buddies;u=' . $memID);
  1215. }
  1216. elseif (isset($_POST['new_buddy']))
  1217. {
  1218. checkSession();
  1219. // Prepare the string for extraction...
  1220. $_POST['new_buddy'] = strtr($smcFunc['htmlspecialchars']($_POST['new_buddy'], ENT_QUOTES), array('&quot;' => '"'));
  1221. preg_match_all('~"([^"]+)"~', $_POST['new_buddy'], $matches);
  1222. $new_buddies = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $_POST['new_buddy']))));
  1223. foreach ($new_buddies as $k => $dummy)
  1224. {
  1225. $new_buddies[$k] = strtr(trim($new_buddies[$k]), array('\'' => '&#039;'));
  1226. if (strlen($new_buddies[$k]) == 0 || in_array($new_buddies[$k], array($user_profile[$memID]['member_name'], $user_profile[$memID]['real_name'])))
  1227. unset($new_buddies[$k]);
  1228. }
  1229. call_integration_hook('integrate_add_buddies', array($memID, &$new_buddies));
  1230. if (!empty($new_buddies))
  1231. {
  1232. // Now find out the id_member of the buddy.
  1233. $request = $smcFunc['db_query']('', '
  1234. SELECT id_member
  1235. FROM {db_prefix}members
  1236. WHERE member_name IN ({array_string:new_buddies}) OR real_name IN ({array_string:new_buddies})
  1237. LIMIT {int:count_new_buddies}',
  1238. array(
  1239. 'new_buddies' => $new_buddies,
  1240. 'count_new_buddies' => count($new_buddies),
  1241. )
  1242. );
  1243. // Add the new member to the buddies array.
  1244. while ($row = $smcFunc['db_fetch_assoc']($request))
  1245. $buddiesArray[] = (int) $row['id_member'];
  1246. $smcFunc['db_free_result']($request);
  1247. // Now update the current users buddy list.
  1248. $user_profile[$memID]['buddy_list'] = implode(',', $buddiesArray);
  1249. updateMemberData($memID, array('buddy_list' => $user_profile[$memID]['buddy_list']));
  1250. }
  1251. // Back to the buddy list!
  1252. redirectexit('action=profile;area=lists;sa=buddies;u=' . $memID);
  1253. }
  1254. // Get all the users "buddies"...
  1255. $buddies = array();
  1256. if (!empty($buddiesArray))
  1257. {
  1258. $result = $smcFunc['db_query']('', '
  1259. SELECT id_member
  1260. FROM {db_prefix}members
  1261. WHERE id_member IN ({array_int:buddy_list})
  1262. ORDER BY real_name
  1263. LIMIT {int:buddy_list_count}',
  1264. array(
  1265. 'buddy_list' => $buddiesArray,
  1266. 'buddy_list_count' => substr_count($user_profile[$memID]['buddy_list'], ',') + 1,
  1267. )
  1268. );
  1269. while ($row = $smcFunc['db_fetch_assoc']($result))
  1270. $buddies[] = $row['id_member'];
  1271. $smcFunc['db_free_result']($result);
  1272. }
  1273. $context['buddy_count'] = count($buddies);
  1274. // Load all the members up.
  1275. loadMemberData($buddies, false, 'profile');
  1276. // Setup the context for each buddy.
  1277. $context['buddies'] = array();
  1278. foreach ($buddies as $buddy)
  1279. {
  1280. loadMemberContext($buddy);
  1281. $context['buddies'][$buddy] = $memberContext[$buddy];
  1282. }
  1283. call_integration_hook('integrate_view_buddies', array($memID));
  1284. }
  1285. /**
  1286. * Allows the user to view their ignore list, as well as the option to manage members on it.
  1287. *
  1288. * @param int $memID id_member
  1289. */
  1290. function editIgnoreList($memID)
  1291. {
  1292. global $txt, $scripturl, $modSettings;
  1293. global $context, $user_profile, $memberContext, $smcFunc;
  1294. // For making changes!
  1295. $ignoreArray = explode(',', $user_profile[$memID]['pm_ignore_list']);
  1296. foreach ($ignoreArray as $k => $dummy)
  1297. if ($dummy == '')
  1298. unset($ignoreArray[$k]);
  1299. // Removing a member from the ignore list?
  1300. if (isset($_GET['remove']))
  1301. {
  1302. checkSession('get');
  1303. // Heh, I'm lazy, do it the easy way...
  1304. foreach ($ignoreArray as $key => $id_remove)
  1305. if ($id_remove == (int) $_GET['remove'])
  1306. unset($ignoreArray[$key]);
  1307. // Make the changes.
  1308. $user_profile[$memID]['pm_ignore_list'] = implode(',', $ignoreArray);
  1309. updateMemberData($memID, array('pm_ignore_list' => $user_profile[$memID]['pm_ignore_list']));
  1310. // Redirect off the page because we don't like all this ugly query stuff to stick in the history.
  1311. redirectexit('action=profile;area=lists;sa=ignore;u=' . $memID);
  1312. }
  1313. elseif (isset($_POST['new_ignore']))
  1314. {
  1315. checkSession();
  1316. // Prepare the string for extraction...
  1317. $_POST['new_ignore'] = strtr($smcFunc['htmlspecialchars']($_POST['new_ignore'], ENT_QUOTES), array('&quot;' => '"'));
  1318. preg_match_all('~"([^"]+)"~', $_POST['new_ignore'], $matches);
  1319. $new_entries = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $_POST['new_ignore']))));
  1320. foreach ($new_entries as $k => $dummy)
  1321. {
  1322. $new_entries[$k] = strtr(trim($new_entries[$k]), array('\'' => '&#039;'));
  1323. if (strlen($new_entries[$k]) == 0 || in_array($new_entries[$k], array($user_profile[$memID]['member_name'], $user_profile[$memID]['real_name'])))
  1324. unset($new_entries[$k]);
  1325. }
  1326. if (!empty($new_entries))
  1327. {
  1328. // Now find out the id_member for the members in question.
  1329. $request = $smcFunc['db_query']('', '
  1330. SELECT id_member
  1331. FROM {db_prefix}members
  1332. WHERE member_name IN ({array_string:new_entries}) OR real_name IN ({array_string:new_entries})
  1333. LIMIT {int:count_new_entries}',
  1334. array(
  1335. 'new_entries' => $new_entries,
  1336. 'count_new_entries' => count($new_entries),
  1337. )
  1338. );
  1339. // Add the new member to the buddies array.
  1340. while ($row = $smcFunc['db_fetch_assoc']($request))
  1341. $ignoreArray[] = (int) $row['id_member'];
  1342. $smcFunc['db_free_result']($request);
  1343. // Now update the current users buddy list.
  1344. $user_profile[$memID]['pm_ignore_list'] = implode(',', $ignoreArray);
  1345. updateMemberData($memID, array('pm_ignore_list' => $user_profile[$memID]['pm_ignore_list']));
  1346. }
  1347. // Back to the list of pityful people!
  1348. redirectexit('action=profile;area=lists;sa=ignore;u=' . $memID);
  1349. }
  1350. // Initialise the list of members we're ignoring.
  1351. $ignored = array();
  1352. if (!empty($ignoreArray))
  1353. {
  1354. $result = $smcFunc['db_query']('', '
  1355. SELECT id_member
  1356. FROM {db_prefix}members
  1357. WHERE id_member IN ({array_int:ignore_list})
  1358. ORDER BY real_name
  1359. LIMIT {int:ignore_list_count}',
  1360. array(
  1361. 'ignore_list' => $ignoreArray,
  1362. 'ignore_list_count' => substr_count($user_profile[$memID]['pm_ignore_list'], ',') + 1,
  1363. )
  1364. );
  1365. while ($row = $smcFunc['db_fetch_assoc']($result))
  1366. $ignored[] = $row['id_member'];
  1367. $smcFunc['db_free_result']($result);
  1368. }
  1369. $context['ignore_count'] = count($ignored);
  1370. // Load all the members up.
  1371. loadMemberData($ignored, false, 'profile');
  1372. // Setup the context for each buddy.
  1373. $context['ignore_list'] = array();
  1374. foreach ($ignored as $ignore_member)
  1375. {
  1376. loadMemberContext($ignore_member);
  1377. $context['ignore_list'][$ignore_member] = $memberContext[$ignore_member];
  1378. }
  1379. }
  1380. /**
  1381. * @todo Needs a description
  1382. *
  1383. * @param int $memID id_member
  1384. */
  1385. function account($memID)
  1386. {
  1387. global $context, $txt;
  1388. loadThemeOptions($memID);
  1389. if (allowedTo(array('profile_identity_own', 'profile_identity_any')))
  1390. loadCustomFields($memID, 'account');
  1391. $context['sub_template'] = 'edit_options';
  1392. $context['page_desc'] = $txt['account_info'];
  1393. setupProfileContext(
  1394. array(
  1395. 'member_name', 'real_name', 'date_registered', 'posts', 'lngfile', 'hr',
  1396. 'id_group', 'hr',
  1397. 'email_address', 'hide_email', 'show_online', 'hr',
  1398. 'passwrd1', 'passwrd2', 'hr',
  1399. 'secret_question', 'secret_answer',
  1400. )
  1401. );
  1402. }
  1403. /**
  1404. * @todo Needs a description
  1405. *
  1406. * @param int $memID id_member
  1407. */
  1408. function forumProfile($memID)
  1409. {
  1410. global $context, $txt;
  1411. loadThemeOptions($memID);
  1412. if (allowedTo(array('profile_extra_own', 'profile_extra_any')))
  1413. loadCustomFields($memID, 'forumprofile');
  1414. $context['sub_template'] = 'edit_options';
  1415. $context['page_desc'] = $txt['forumProfile_info'];
  1416. $context['show_preview_button'] = true;
  1417. setupProfileContext(
  1418. array(
  1419. 'avatar_choice', 'hr', 'personal_text', 'hr',
  1420. 'bday1', 'location', 'gender', 'hr',
  1421. 'icq', 'aim', 'yim', 'skype', 'hr',
  1422. 'usertitle', 'signature', 'hr',
  1423. 'karma_good', 'hr',
  1424. 'website_title', 'website_url',
  1425. )
  1426. );
  1427. }
  1428. /**
  1429. * Allow the edit of *someone elses* personal message settings.
  1430. *
  1431. * @param int $memID id_member
  1432. */
  1433. function pmprefs($memID)
  1434. {
  1435. global $sourcedir, $context, $txt, $scripturl;
  1436. loadThemeOptions($memID);
  1437. loadCustomFields($memID, 'pmprefs');
  1438. $context['sub_template'] = 'edit_options';
  1439. $context['page_desc'] = $txt['pm_settings_desc'];
  1440. setupProfileContext(
  1441. array(
  1442. 'pm_prefs',
  1443. )
  1444. );
  1445. }
  1446. /**
  1447. * Recursive function to retrieve server-stored avatar files
  1448. *
  1449. * @param string $directory
  1450. * @param int $level
  1451. * @return array
  1452. */
  1453. function getAvatars($directory, $level)
  1454. {
  1455. global $context, $txt, $modSettings, $smcFunc;
  1456. $result = array();
  1457. // Open the directory..
  1458. $dir = dir($modSettings['avatar_directory'] . (!empty($directory) ? '/' : '') . $directory);
  1459. $dirs = array();
  1460. $files = array();
  1461. if (!$dir)
  1462. return array();
  1463. while ($line = $dir->read())
  1464. {
  1465. if (in_array($line, array('.', '..', 'blank.png', 'index.php')))
  1466. continue;
  1467. if (is_dir($modSettings['avatar_directory'] . '/' . $directory . (!empty($directory) ? '/' : '') . $line))
  1468. $dirs[] = $line;
  1469. else
  1470. $files[] = $line;
  1471. }
  1472. $dir->close();
  1473. // Sort the results...
  1474. natcasesort($dirs);
  1475. natcasesort($files);
  1476. if ($level == 0)
  1477. {
  1478. $result[] = array(
  1479. 'filename' => 'blank.png',
  1480. 'checked' => in_array($context['member']['avatar']['server_pic'], array('', 'blank.png')),
  1481. 'name' => $txt['no_pic'],
  1482. 'is_dir' => false
  1483. );
  1484. }
  1485. foreach ($dirs as $line)
  1486. {
  1487. $tmp = getAvatars($directory . (!empty($directory) ? '/' : '') . $line, $level + 1);
  1488. if (!empty($tmp))
  1489. $result[] = array(
  1490. 'filename' => $smcFunc['htmlspecialchars']($line),
  1491. 'checked' => strpos($context['member']['avatar']['server_pic'], $line . '/') !== false,
  1492. 'name' => '[' . $smcFunc['htmlspecialchars'](str_replace('_', ' ', $line)) . ']',
  1493. 'is_dir' => true,
  1494. 'files' => $tmp
  1495. );
  1496. unset($tmp);
  1497. }
  1498. foreach ($files as $line)
  1499. {
  1500. $filename = substr($line, 0, (strlen($line) - strlen(strrchr($line, '.'))));
  1501. $extension = substr(strrchr($line, '.'), 1);
  1502. // Make sure it is an image.
  1503. if (strcasecmp($extension, 'gif') != 0 && strcasecmp($extension, 'jpg') != 0 && strcasecmp($extension, 'jpeg') != 0 && strcasecmp($extension, 'png') != 0 && strcasecmp($extension, 'bmp') != 0)
  1504. continue;
  1505. $result[] = array(
  1506. 'filename' => $smcFunc['htmlspecialchars']($line),
  1507. 'checked' => $line == $context['member']['avatar']['server_pic'],
  1508. 'name' => $smcFunc['htmlspecialchars'](str_replace('_', ' ', $filename)),
  1509. 'is_dir' => false
  1510. );
  1511. if ($level == 1)
  1512. $context['avatar_list'][] = $directory . '/' . $line;
  1513. }
  1514. return $result;
  1515. }
  1516. /**
  1517. * @todo needs a description
  1518. *
  1519. * @param int $memID id_member
  1520. */
  1521. function theme($memID)
  1522. {
  1523. global $txt, $context, $user_profile, $modSettings, $settings, $user_info, $smcFunc;
  1524. loadThemeOptions($memID);
  1525. if (allowedTo(array('profile_extra_own', 'profile_extra_any')))
  1526. loadCustomFields($memID, 'theme');
  1527. $context['sub_template'] = 'edit_options';
  1528. $context['page_desc'] = $txt['theme_info'];
  1529. setupProfileContext(
  1530. array(
  1531. 'id_theme', 'smiley_set', 'hr',
  1532. 'time_format', 'time_offset', 'hr',
  1533. 'theme_settings',
  1534. )
  1535. );
  1536. }
  1537. /**
  1538. * Changing authentication method? Only appropriate for people using OpenID.
  1539. *
  1540. * @param int $memID id_member
  1541. * @param bool $saving = false
  1542. */
  1543. function authentication($memID, $saving = false)
  1544. {
  1545. global $context, $cur_profile, $sourcedir, $txt, $post_errors, $modSettings;
  1546. loadLanguage('Login');
  1547. // We are saving?
  1548. if ($saving)
  1549. {
  1550. // Moving to password passed authentication?
  1551. if ($_POST['authenticate'] == 'passwd')
  1552. {
  1553. // Didn't enter anything?
  1554. if ($_POST['passwrd1'] == '')
  1555. $post_errors[] = 'no_password';
  1556. // Do the two entries for the password even match?
  1557. elseif (!isset($_POST['passwrd2']) || $_POST['passwrd1'] != $_POST['passwrd2'])
  1558. $post_errors[] = 'bad_new_password';
  1559. // Is it valid?
  1560. else
  1561. {
  1562. require_once($sourcedir . '/Subs-Auth.php');
  1563. $passwordErrors = validatePassword($_POST['passwrd1'], $cur_profile['member_name'], array($cur_profile['real_name'], $cur_profile['email_address']));
  1564. // Were there errors?
  1565. if ($passwordErrors != null)
  1566. $post_errors[] = 'password_' . $passwordErrors;
  1567. }
  1568. if (empty($post_errors))
  1569. {
  1570. // Integration?
  1571. call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd1']));
  1572. // Go then.
  1573. $passwd = sha1(strtolower($cur_profile['member_name']) . un_htmlspecialchars($_POST['passwrd1']));
  1574. // Do the important bits.
  1575. updateMemberData($memID, array('openid_uri' => '', 'passwd' => $passwd));
  1576. if ($context['user']['is_owner'])
  1577. {
  1578. setLoginCookie(60 * $modSettings['cookieTime'], $memID, sha1(sha1(strtolower($cur_profile['member_name']) . un_htmlspecialchars($_POST['passwrd2'])) . $cur_profile['password_salt']));
  1579. redirectexit('action=profile;area=authentication;updated');
  1580. }
  1581. else
  1582. redirectexit('action=profile;u=' . $memID);
  1583. }
  1584. return true;
  1585. }
  1586. // Not right yet!
  1587. elseif ($_POST['authenticate'] == 'openid' && !empty($_POST['openid_identifier']))
  1588. {
  1589. require_once($sourcedir . '/Subs-OpenID.php');
  1590. $_POST['openid_identifier'] = smf_openID_canonize($_POST['openid_identifier']);
  1591. if (smf_openid_member_exists($_POST['openid_identifier']))
  1592. $post_errors[] = 'openid_in_use';
  1593. elseif (empty($post_errors))
  1594. {
  1595. // Authenticate using the new OpenID URI first to make sure they didn't make a mistake.
  1596. if ($context['user']['is_owner'])
  1597. {
  1598. $_SESSION['new_openid_uri'] = $_POST['openid_identifier'];
  1599. smf_openID_validate($_POST['openid_identifier'], false, null, 'change_uri');
  1600. }
  1601. else
  1602. updateMemberData($memID, array('openid_uri' => $_POST['openid_identifier']));
  1603. }
  1604. }
  1605. }
  1606. // Some stuff.
  1607. $context['member']['openid_uri'] = $cur_profile['openid_uri'];
  1608. $context['auth_method'] = empty($cur_profile['openid_uri']) ? 'password' : 'openid';
  1609. $context['sub_template'] = 'authentication_method';
  1610. }
  1611. /**
  1612. * Display the notifications and settings for changes.
  1613. *
  1614. * @param int $memID id_member
  1615. */
  1616. function notification($memID)
  1617. {
  1618. global $txt, $scripturl, $user_profile, $user_info, $context, $modSettings, $smcFunc, $sourcedir, $settings;
  1619. // Gonna want this for the list.
  1620. require_once($sourcedir . '/Subs-List.php');
  1621. // Fine, start with the board list.
  1622. $listOptions = array(
  1623. 'id' => 'board_notification_list',
  1624. 'width' => '100%',
  1625. 'no_items_label' => $txt['notifications_boards_none'] . '<br /><br />' . $txt['notifications_boards_howto'],
  1626. 'no_items_align' => 'left',
  1627. 'base_href' => $scripturl . '?action=profile;u=' . $memID . ';area=notification',
  1628. 'default_sort_col' => 'board_name',
  1629. 'get_items' => array(
  1630. 'function' => 'list_getBoardNotifications',
  1631. 'params' => array(
  1632. $memID,
  1633. ),
  1634. ),
  1635. 'columns' => array(
  1636. 'board_name' => array(
  1637. 'header' => array(
  1638. 'value' => $txt['notifications_boards'],
  1639. 'class' => 'lefttext first_th',
  1640. ),
  1641. 'data' => array(
  1642. 'function' => create_function('$board', '
  1643. global $settings, $txt;
  1644. $link = $board[\'link\'];
  1645. if ($board[\'new\'])
  1646. $link .= \' <a href="\' . $board[\'href\'] . \'"><span class="new_posts">' . $txt['new'] . '</span></a>\';
  1647. return $link;
  1648. '),
  1649. ),
  1650. 'sort' => array(
  1651. 'default' => 'name',
  1652. 'reverse' => 'name DESC',
  1653. ),
  1654. ),
  1655. 'delete' => array(
  1656. 'header' => array(
  1657. 'value' => '<input type="checkbox" class="input_check" onclick="invertAll(this, this.form);" />',
  1658. 'style' => 'width: 4%;',
  1659. 'class' => 'centercol',
  1660. ),
  1661. 'data' => array(
  1662. 'sprintf' => array(
  1663. 'format' => '<input type="checkbox" name="notify_boards[]" value="%1$d" class="input_check" />',
  1664. 'params' => array(
  1665. 'id' => false,
  1666. ),
  1667. ),
  1668. 'class' => 'centercol',
  1669. ),
  1670. ),
  1671. ),
  1672. 'form' => array(
  1673. 'href' => $scripturl . '?action=profile;area=notification;save',
  1674. 'include_sort' => true,
  1675. 'include_start' => true,
  1676. 'hidden_fields' => array(
  1677. 'u' => $memID,
  1678. 'sa' => $context['menu_item_selected'],
  1679. $context['session_var'] => $context['session_id'],
  1680. ),
  1681. 'token' => $context['token_check'],
  1682. ),
  1683. 'additional_rows' => array(
  1684. array(
  1685. 'position' => 'bottom_of_list',
  1686. 'value' => '<input type="submit" name="edit_notify_boards" value="' . $txt['notifications_update'] . '" class="button_submit" />',
  1687. 'align' => 'right',
  1688. ),
  1689. ),
  1690. );
  1691. // Create the board notification list.
  1692. createList($listOptions);
  1693. // Now do the topic notifications.
  1694. $listOptions = array(
  1695. 'id' => 'topic_notification_list',
  1696. 'width' => '100%',
  1697. 'items_per_page' => $modSettings['defaultMaxMessages'],
  1698. 'no_items_label' => $txt['notifications_topics_none'] . '<br /><br />' . $txt['notifications_topics_howto'],
  1699. 'no_items_align' => 'left',
  1700. 'base_href' => $scripturl . '?action=profile;u=' . $memID . ';area=notification',
  1701. 'default_sort_col' => 'last_post',
  1702. 'get_items' => array(
  1703. 'function' => 'list_getTopicNotifications',
  1704. 'params' => array(
  1705. $memID,
  1706. ),
  1707. ),
  1708. 'get_count' => array(
  1709. 'function' => 'list_getTopicNotificationCount',
  1710. 'params' => array(
  1711. $memID,
  1712. ),
  1713. ),
  1714. 'columns' => array(
  1715. 'subject' => array(
  1716. 'header' => array(
  1717. 'value' => $txt['notifications_topics'],
  1718. 'class' => 'lefttext first_th',
  1719. ),
  1720. 'data' => array(
  1721. 'function' => create_function('$topic', '
  1722. global $settings, $txt;
  1723. $link = $topic[\'link\'];
  1724. if ($topic[\'new\'])
  1725. $link .= \' <a href="\' . $topic[\'new_href\'] . \'"><span class="new_posts">\' . $txt[\'new\'] . \'</span></a>\';
  1726. $link .= \'<br /><span class="smalltext"><em>\' . $txt[\'in\'] . \' \' . $topic[\'board_link\'] . \'</em></span>\';
  1727. return $link;
  1728. '),
  1729. ),
  1730. 'sort' => array(
  1731. 'default' => 'ms.subject',
  1732. 'reverse' => 'ms.subject DESC',
  1733. ),
  1734. ),
  1735. 'started_by' => array(
  1736. 'header' => array(
  1737. 'value' => $txt['started_by'],
  1738. 'class' => 'lefttext',
  1739. ),
  1740. 'data' => array(
  1741. 'db' => 'poster_link',
  1742. ),
  1743. 'sort' => array(
  1744. 'default' => 'real_name_col',
  1745. 'reverse' => 'real_name_col DESC',
  1746. ),
  1747. ),
  1748. 'last_post' => array(
  1749. 'header' => array(
  1750. 'value' => $txt['last_post'],
  1751. 'class' => 'lefttext',
  1752. ),
  1753. 'data' => array(
  1754. 'sprintf' => array(
  1755. 'format' => '<span class="smalltext">%1$s<br />' . $txt['by'] . ' %2$s</span>',
  1756. 'params' => array(
  1757. 'updated' => false,
  1758. 'poster_updated_link' => false,
  1759. ),
  1760. ),
  1761. ),
  1762. 'sort' => array(
  1763. 'default' => 'ml.id_msg DESC',
  1764. 'reverse' => 'ml.id_msg',
  1765. ),
  1766. ),
  1767. 'delete' => array(
  1768. 'header' => array(
  1769. 'value' => '<input type="checkbox" class="input_check" onclick="invertAll(this, this.form);" />',
  1770. 'style' => 'width: 4%;',
  1771. 'class' => 'centercol',
  1772. ),
  1773. 'data' => array(
  1774. 'sprintf' => array(
  1775. 'format' => '<input type="checkbox" name="notify_topics[]" value="%1$d" class="input_check" />',
  1776. 'params' => array(
  1777. 'id' => false,
  1778. ),
  1779. ),
  1780. 'class' => 'centercol',
  1781. ),
  1782. ),
  1783. ),
  1784. 'form' => array(
  1785. 'href' => $scripturl . '?action=profile;area=notification;save',
  1786. 'include_sort' => true,
  1787. 'include_start' => true,
  1788. 'hidden_fields' => array(
  1789. 'u' => $memID,
  1790. 'sa' => $context['menu_item_selected'],
  1791. $context['session_var'] => $context['session_id'],
  1792. ),
  1793. 'token' => $context['token_check'],
  1794. ),
  1795. 'additional_rows' => array(
  1796. array(
  1797. 'position' => 'bottom_of_list',
  1798. 'value' => '<input type="submit" name="edit_notify_topics" value="' . $txt['notifications_update'] . '" class="button_submit" />',
  1799. 'align' => 'right',
  1800. ),
  1801. ),
  1802. );
  1803. // Create the notification list.
  1804. createList($listOptions);
  1805. // What options are set?
  1806. $context['member'] += array(
  1807. 'notify_announcements' => $user_profile[$memID]['notify_announcements'],
  1808. 'notify_send_body' => $user_profile[$memID]['notify_send_body'],
  1809. 'notify_types' => $user_profile[$memID]['notify_types'],
  1810. 'notify_regularity' => $user_profile[$memID]['notify_regularity'],
  1811. );
  1812. loadThemeOptions($memID);
  1813. }
  1814. /**
  1815. * @todo needs a description
  1816. *
  1817. * @param int $memID id_member
  1818. * @return string
  1819. */
  1820. function list_getTopicNotificationCount($memID)
  1821. {
  1822. global $smcFunc, $user_info, $context, $modSettings;
  1823. $request = $smcFunc['db_query']('', '
  1824. SELECT COUNT(*)
  1825. FROM {db_prefix}log_notify AS ln' . (!$modSettings['postmod_active'] && $user_info['query_see_board'] === '1=1' ? '' : '
  1826. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = ln.id_topic)') . ($user_info['query_see_board'] === '1=1' ? '' : '
  1827. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)') . '
  1828. WHERE ln.id_member = {int:selected_member}' . ($user_info['query_see_board'] === '1=1' ? '' : '
  1829. AND {query_see_board}') . ($modSettings['postmod_active'] ? '
  1830. AND t.approved = {int:is_approved}' : ''),
  1831. array(
  1832. 'selected_member' => $memID,
  1833. 'is_approved' => 1,
  1834. )
  1835. );
  1836. list ($totalNotifications) = $smcFunc['db_fetch_row']($request);
  1837. $smcFunc['db_free_result']($request);
  1838. // @todo make this an integer before it gets returned
  1839. return $totalNotifications;
  1840. }
  1841. /**
  1842. * @todo Needs a description
  1843. *
  1844. * @param int $start
  1845. * @param int $items_per_page
  1846. * @param string $sort
  1847. * @param int $memID id_member
  1848. * @return array $notification_topics
  1849. */
  1850. function list_getTopicNotifications($start, $items_per_page, $sort, $memID)
  1851. {
  1852. global $smcFunc, $txt, $scripturl, $user_info, $context, $modSettings;
  1853. // All the topics with notification on...
  1854. $request = $smcFunc['db_query']('', '
  1855. SELECT
  1856. IFNULL(lt.id_msg, IFNULL(lmr.id_msg, -1)) + 1 AS new_from, b.id_board, b.name,
  1857. t.id_topic, ms.subject, ms.id_member, IFNULL(mem.real_name, ms.poster_name) AS real_name_col,
  1858. ml.id_msg_modified, ml.poster_time, ml.id_member AS id_member_updated,
  1859. IFNULL(mem2.real_name, ml.poster_name) AS last_real_name
  1860. FROM {db_prefix}log_notify AS ln
  1861. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = ln.id_topic' . ($modSettings['postmod_active'] ? ' AND t.approved = {int:is_approved}' : '') . ')
  1862. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board AND {query_see_board})
  1863. INNER JOIN {db_prefix}messages AS ms ON (ms.id_msg = t.id_first_msg)
  1864. INNER JOIN {db_prefix}messages AS ml ON (ml.id_msg = t.id_last_msg)
  1865. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = ms.id_member)
  1866. LEFT JOIN {db_prefix}members AS mem2 ON (mem2.id_member = ml.id_member)
  1867. LEFT JOIN {db_prefix}log_topics AS lt ON (lt.id_topic = t.id_topic AND lt.id_member = {int:current_member})
  1868. LEFT JOIN {db_prefix}log_mark_read AS lmr ON (lmr.id_board = b.id_board AND lmr.id_member = {int:current_member})
  1869. WHERE ln.id_member = {int:selected_member}
  1870. ORDER BY {raw:sort}
  1871. LIMIT {int:offset}, {int:items_per_page}',
  1872. array(
  1873. 'current_member' => $user_info['id'],
  1874. 'is_approved' => 1,
  1875. 'selected_member' => $memID,
  1876. 'sort' => $sort,
  1877. 'offset' => $start,
  1878. 'items_per_page' => $items_per_page,
  1879. )
  1880. );
  1881. $notification_topics = array();
  1882. while ($row = $smcFunc['db_fetch_assoc']($request))
  1883. {
  1884. censorText($row['subject']);
  1885. $notification_topics[] = array(
  1886. 'id' => $row['id_topic'],
  1887. 'poster_link' => empty($row['id_member']) ? $row['real_name_col'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name_col'] . '</a>',
  1888. 'poster_updated_link' => empty($row['id_member_updated']) ? $row['last_real_name'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member_updated'] . '">' . $row['last_real_name'] . '</a>',
  1889. 'subject' => $row['subject'],
  1890. 'href' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  1891. 'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0">' . $row['subject'] . '</a>',
  1892. 'new' => $row['new_from'] <= $row['id_msg_modified'],
  1893. 'new_from' => $row['new_from'],
  1894. 'updated' => timeformat($row['poster_time']),
  1895. 'new_href' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['new_from'] . '#new',
  1896. 'new_link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['new_from'] . '#new">' . $row['subject'] . '</a>',
  1897. 'board_link' => '<a href="' . $scripturl . '?board=' . $row['id_board'] . '.0">' . $row['name'] . '</a>',
  1898. );
  1899. }
  1900. $smcFunc['db_free_result']($request);
  1901. return $notification_topics;
  1902. }
  1903. /**
  1904. * @todo needs a description
  1905. *
  1906. * @param int $start
  1907. * @param int $items_per_page
  1908. * @param string $sort
  1909. * @param int $memID id_member
  1910. * @return array
  1911. */
  1912. function list_getBoardNotifications($start, $items_per_page, $sort, $memID)
  1913. {
  1914. global $smcFunc, $txt, $scripturl, $user_info;
  1915. $request = $smcFunc['db_query']('', '
  1916. SELECT b.id_board, b.name, IFNULL(lb.id_msg, 0) AS board_read, b.id_msg_updated
  1917. FROM {db_prefix}log_notify AS ln
  1918. INNER JOIN {db_prefix}boards AS b ON (b.id_board = ln.id_board)
  1919. LEFT JOIN {db_prefix}log_boards AS lb ON (lb.id_board = b.id_board AND lb.id_member = {int:current_member})
  1920. WHERE ln.id_member = {int:selected_member}
  1921. AND {query_see_board}
  1922. ORDER BY ' . $sort,
  1923. array(
  1924. 'current_member' => $user_info['id'],
  1925. 'selected_member' => $memID,
  1926. )
  1927. );
  1928. $notification_boards = array();
  1929. while ($row = $smcFunc['db_fetch_assoc']($request))
  1930. $notification_boards[] = array(
  1931. 'id' => $row['id_board'],
  1932. 'name' => $row['name'],
  1933. 'href' => $scripturl . '?board=' . $row['id_board'] . '.0',
  1934. 'link' => '<a href="' . $scripturl . '?board=' . $row['id_board'] . '.0">' . $row['name'] . '</a>',
  1935. 'new' => $row['board_read'] < $row['id_msg_updated']
  1936. );
  1937. $smcFunc['db_free_result']($request);
  1938. return $notification_boards;
  1939. }
  1940. /**
  1941. * @todo needs a description
  1942. *
  1943. * @param int $memID id_member
  1944. */
  1945. function loadThemeOptions($memID)
  1946. {
  1947. global $context, $options, $cur_profile, $smcFunc;
  1948. if (isset($_POST['default_options']))
  1949. $_POST['options'] = isset($_POST['options']) ? $_POST['options'] + $_POST['default_options'] : $_POST['default_options'];
  1950. if ($context['user']['is_owner'])
  1951. {
  1952. $context['member']['options'] = $options;
  1953. if (isset($_POST['options']) && is_array($_POST['options']))
  1954. foreach ($_POST['options'] as $k => $v)
  1955. $context['member']['options'][$k] = $v;
  1956. }
  1957. else
  1958. {
  1959. $request = $smcFunc['db_query']('', '
  1960. SELECT id_member, variable, value
  1961. FROM {db_prefix}themes
  1962. WHERE id_theme IN (1, {int:member_theme})
  1963. AND id_member IN (-1, {int:selected_member})',
  1964. array(
  1965. 'member_theme' => (int) $cur_profile['id_theme'],
  1966. 'selected_member' => $memID,
  1967. )
  1968. );
  1969. $temp = array();
  1970. while ($row = $smcFunc['db_fetch_assoc']($request))
  1971. {
  1972. if ($row['id_member'] == -1)
  1973. {
  1974. $temp[$row['variable']] = $row['value'];
  1975. continue;
  1976. }
  1977. if (isset($_POST['options'][$row['variable']]))
  1978. $row['value'] = $_POST['options'][$row['variable']];
  1979. $context['member']['options'][$row['variable']] = $row['value'];
  1980. }
  1981. $smcFunc['db_free_result']($request);
  1982. // Load up the default theme options for any missing.
  1983. foreach ($temp as $k => $v)
  1984. {
  1985. if (!isset($context['member']['options'][$k]))
  1986. $context['member']['options'][$k] = $v;
  1987. }
  1988. }
  1989. }
  1990. /**
  1991. * @todo needs a description
  1992. *
  1993. * @param int $memID id_member
  1994. */
  1995. function ignoreboards($memID)
  1996. {
  1997. global $txt, $user_info, $context, $modSettings, $smcFunc, $cur_profile;
  1998. // Have the admins enabled this option?
  1999. if (empty($modSettings['allow_ignore_boards']))
  2000. fatal_lang_error('ignoreboards_disallowed', 'user');
  2001. // Find all the boards this user is allowed to see.
  2002. $request = $smcFunc['db_query']('order_by_board_order', '
  2003. SELECT b.id_cat, c.name AS cat_name, b.id_board, b.name, b.child_level,
  2004. '. (!empty($cur_profile['ignore_boards']) ? 'b.id_board IN ({array_int:ignore_boards})' : '0') . ' AS is_ignored
  2005. FROM {db_prefix}boards AS b
  2006. LEFT JOIN {db_prefix}categories AS c ON (c.id_cat = b.id_cat)
  2007. WHERE {query_see_board}
  2008. AND redirect = {string:empty_string}',
  2009. array(
  2010. 'ignore_boards' => !empty($cur_profile['ignore_boards']) ? explode(',', $cur_profile['ignore_boards']) : array(),
  2011. 'empty_string' => '',
  2012. )
  2013. );
  2014. $context['num_boards'] = $smcFunc['db_num_rows']($request);
  2015. $context['categories'] = array();
  2016. while ($row = $smcFunc['db_fetch_assoc']($request))
  2017. {
  2018. // This category hasn't been set up yet..
  2019. if (!isset($context['categories'][$row['id_cat']]))
  2020. $context['categories'][$row['id_cat']] = array(
  2021. 'id' => $row['id_cat'],
  2022. 'name' => $row['cat_name'],
  2023. 'boards' => array()
  2024. );
  2025. // Set this board up, and let the template know when it's a child. (indent them..)
  2026. $context['categories'][$row['id_cat']]['boards'][$row['id_board']] = array(
  2027. 'id' => $row['id_board'],
  2028. 'name' => $row['name'],
  2029. 'child_level' => $row['child_level'],
  2030. 'selected' => $row['is_ignored'],
  2031. );
  2032. }
  2033. $smcFunc['db_free_result']($request);
  2034. // Now, let's sort the list of categories into the boards for templates that like that.
  2035. $temp_boards = array();
  2036. foreach ($context['categories'] as $category)
  2037. {
  2038. // Include a list of boards per category for easy toggling.
  2039. $context['categories'][$category['id']]['child_ids'] = array_keys($category['boards']);
  2040. $temp_boards[] = array(
  2041. 'name' => $category['name'],
  2042. 'child_ids' => array_keys($category['boards'])
  2043. );
  2044. $temp_boards = array_merge($temp_boards, array_values($category['boards']));
  2045. }
  2046. $max_boards = ceil(count($temp_boards) / 2);
  2047. if ($max_boards == 1)
  2048. $max_boards = 2;
  2049. // Now, alternate them so they can be shown left and right ;).
  2050. $context['board_columns'] = array();
  2051. for ($i = 0; $i < $max_boards; $i++)
  2052. {
  2053. $context['board_columns'][] = $temp_boards[$i];
  2054. if (isset($temp_boards[$i + $max_boards]))
  2055. $context['board_columns'][] = $temp_boards[$i + $max_boards];
  2056. else
  2057. $context['board_columns'][] = array();
  2058. }
  2059. loadThemeOptions($memID);
  2060. }
  2061. /**
  2062. * Load all the languages for the profile.
  2063. * @return boolean
  2064. */
  2065. function profileLoadLanguages()
  2066. {
  2067. global $context, $modSettings, $settings, $cur_profile, $language, $smcFunc;
  2068. $context['profile_languages'] = array();
  2069. // Get our languages!
  2070. getLanguages(true, true);
  2071. // Setup our languages.
  2072. foreach ($context['languages'] as $lang)
  2073. {
  2074. $context['profile_languages'][$lang['filename']] = strtr($lang['name'], array('-utf8' => ''));
  2075. }
  2076. ksort($context['profile_languages']);
  2077. // Return whether we should proceed with this.
  2078. return count($context['profile_languages']) > 1 ? true : false;
  2079. }
  2080. /**
  2081. * @todo needs description
  2082. *
  2083. * @return true
  2084. */
  2085. function profileLoadGroups()
  2086. {
  2087. global $cur_profile, $txt, $context, $smcFunc, $user_settings;
  2088. $context['member_groups'] = array(
  2089. 0 => array(
  2090. 'id' => 0,
  2091. 'name' => $txt['no_primary_membergroup'],
  2092. 'is_primary' => $cur_profile['id_group'] == 0,
  2093. 'can_be_additional' => false,
  2094. 'can_be_primary' => true,
  2095. )
  2096. );
  2097. $curGroups = explode(',', $cur_profile['additional_groups']);
  2098. // Load membergroups, but only those groups the user can assign.
  2099. $request = $smcFunc['db_query']('', '
  2100. SELECT group_name, id_group, hidden
  2101. FROM {db_prefix}membergroups
  2102. WHERE id_group != {int:moderator_group}
  2103. AND min_posts = {int:min_posts}' . (allowedTo('admin_forum') ? '' : '
  2104. AND group_type != {int:is_protected}') . '
  2105. ORDER BY min_posts, CASE WHEN id_group < {int:newbie_group} THEN id_group ELSE 4 END, group_name',
  2106. array(
  2107. 'moderator_group' => 3,
  2108. 'min_posts' => -1,
  2109. 'is_protected' => 1,
  2110. 'newbie_group' => 4,
  2111. )
  2112. );
  2113. while ($row = $smcFunc['db_fetch_assoc']($request))
  2114. {
  2115. // We should skip the administrator group if they don't have the admin_forum permission!
  2116. if ($row['id_group'] == 1 && !allowedTo('admin_forum'))
  2117. continue;
  2118. $context['member_groups'][$row['id_group']] = array(
  2119. 'id' => $row['id_group'],
  2120. 'name' => $row['group_name'],
  2121. 'is_primary' => $cur_profile['id_group'] == $row['id_group'],
  2122. 'is_additional' => in_array($row['id_group'], $curGroups),
  2123. 'can_be_additional' => true,
  2124. 'can_be_primary' => $row['hidden'] != 2,
  2125. );
  2126. }
  2127. $smcFunc['db_free_result']($request);
  2128. $context['member']['group_id'] = $user_settings['id_group'];
  2129. return true;
  2130. }
  2131. /**
  2132. * Load key signature context data.
  2133. *
  2134. * @return true
  2135. */
  2136. function profileLoadSignatureData()
  2137. {
  2138. global $modSettings, $context, $txt, $cur_profile, $smcFunc, $memberContext;
  2139. // Signature limits.
  2140. list ($sig_limits, $sig_bbc) = explode(':', $modSettings['signature_settings']);
  2141. $sig_limits = explode(',', $sig_limits);
  2142. $context['signature_enabled'] = isset($sig_limits[0]) ? $sig_limits[0] : 0;
  2143. $context['signature_limits'] = array(
  2144. 'max_length' => isset($sig_limits[1]) ? $sig_limits[1] : 0,
  2145. 'max_lines' => isset($sig_limits[2]) ? $sig_limits[2] : 0,
  2146. 'max_images' => isset($sig_limits[3]) ? $sig_limits[3] : 0,
  2147. 'max_smileys' => isset($sig_limits[4]) ? $sig_limits[4] : 0,
  2148. 'max_image_width' => isset($sig_limits[5]) ? $sig_limits[5] : 0,
  2149. 'max_image_height' => isset($sig_limits[6]) ? $sig_limits[6] : 0,
  2150. 'max_font_size' => isset($sig_limits[7]) ? $sig_limits[7] : 0,
  2151. 'bbc' => !empty($sig_bbc) ? explode(',', $sig_bbc) : array(),
  2152. );
  2153. // Kept this line in for backwards compatibility!
  2154. $context['max_signature_length'] = $context['signature_limits']['max_length'];
  2155. // Warning message for signature image limits?
  2156. $context['signature_warning'] = '';
  2157. if ($context['signature_limits']['max_image_width'] && $context['signature_limits']['max_image_height'])
  2158. $context['signature_warning'] = sprintf($txt['profile_error_signature_max_image_size'], $context['signature_limits']['max_image_width'], $context['signature_limits']['max_image_height']);
  2159. elseif ($context['signature_limits']['max_image_width'] || $context['signature_limits']['max_image_height'])
  2160. $context['signature_warning'] = sprintf($txt['profile_error_signature_max_image_' . ($context['signature_limits']['max_image_width'] ? 'width' : 'height')], $context['signature_limits'][$context['signature_limits']['max_image_width'] ? 'max_image_width' : 'max_image_height']);
  2161. $context['show_spellchecking'] = !empty($modSettings['enableSpellChecking']) && function_exists('pspell_new');
  2162. if (empty($context['do_preview']))
  2163. $context['member']['signature'] = empty($cur_profile['signature']) ? '' : str_replace(array('<br />', '<', '>', '"', '\''), array("\n", '&lt;', '&gt;', '&quot;', '&#039;'), $cur_profile['signature']);
  2164. else
  2165. {
  2166. $signature = !empty($_POST['signature']) ? $_POST['signature'] : '';
  2167. $validation = profileValidateSignature($signature);
  2168. if (empty($context['post_errors']))
  2169. {
  2170. loadLanguage('Errors');
  2171. $context['post_errors'] = array();
  2172. }
  2173. $context['post_errors'][] = 'signature_not_yet_saved';
  2174. if ($validation !== true && $validation !== false)
  2175. $context['post_errors'][] = $validation;
  2176. censorText($context['member']['signature']);
  2177. $context['member']['current_signature'] = $context['member']['signature'];
  2178. censorText($signature);
  2179. $context['member']['signature_preview'] = parse_bbc($signature, true, 'sig' . $memberContext[$context['id_member']]);
  2180. $context['member']['signature'] = $_POST['signature'];
  2181. }
  2182. return true;
  2183. }
  2184. /**
  2185. * Load avatar context data.
  2186. *
  2187. * @return true
  2188. */
  2189. function profileLoadAvatarData()
  2190. {
  2191. global $context, $cur_profile, $modSettings, $scripturl;
  2192. $context['avatar_url'] = $modSettings['avatar_url'];
  2193. // Default context.
  2194. $context['member']['avatar'] += array(
  2195. 'custom' => stristr($cur_profile['avatar'], 'http://') ? $cur_profile['avatar'] : 'http://',
  2196. 'selection' => $cur_profile['avatar'] == '' || stristr($cur_profile['avatar'], 'http://') ? '' : $cur_profile['avatar'],
  2197. 'id_attach' => $cur_profile['id_attach'],
  2198. 'filename' => $cur_profile['filename'],
  2199. 'allow_server_stored' => allowedTo('profile_server_avatar') || (!$context['user']['is_owner'] && allowedTo('profile_extra_any')),
  2200. 'allow_upload' => allowedTo('profile_upload_avatar') || (!$context['user']['is_owner'] && allowedTo('profile_extra_any')),
  2201. 'allow_external' => allowedTo('profile_remote_avatar') || (!$context['user']['is_owner'] && allowedTo('profile_extra_any')),
  2202. );
  2203. if ($cur_profile['avatar'] == '' && $cur_profile['id_attach'] > 0 && $context['member']['avatar']['allow_upload'])
  2204. {
  2205. $context['member']['avatar'] += array(
  2206. 'choice' => 'upload',
  2207. 'server_pic' => 'blank.png',
  2208. 'external' => 'http://'
  2209. );
  2210. $context['member']['avatar']['href'] = empty($cur_profile['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $cur_profile['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $cur_profile['filename'];
  2211. }
  2212. elseif (stristr($cur_profile['avatar'], 'http://') && $context['member']['avatar']['allow_external'])
  2213. $context['member']['avatar'] += array(
  2214. 'choice' => 'external',
  2215. 'server_pic' => 'blank.png',
  2216. 'external' => $cur_profile['avatar']
  2217. );
  2218. elseif ($cur_profile['avatar'] != '' && file_exists($modSettings['avatar_directory'] . '/' . $cur_profile['avatar']) && $context['member']['avatar']['allow_server_stored'])
  2219. $context['member']['avatar'] += array(
  2220. 'choice' => 'server_stored',
  2221. 'server_pic' => $cur_profile['avatar'] == '' ? 'blank.png' : $cur_profile['avatar'],
  2222. 'external' => 'http://'
  2223. );
  2224. else
  2225. $context['member']['avatar'] += array(
  2226. 'choice' => 'none',
  2227. 'server_pic' => 'blank.png',
  2228. 'external' => 'http://'
  2229. );
  2230. // Get a list of all the avatars.
  2231. if ($context['member']['avatar']['allow_server_stored'])
  2232. {
  2233. $context['avatar_list'] = array();
  2234. $context['avatars'] = is_dir($modSettings['avatar_directory']) ? getAvatars('', 0) : array();
  2235. }
  2236. else
  2237. $context['avatars'] = array();
  2238. // Second level selected avatar...
  2239. $context['avatar_selected'] = substr(strrchr($context['member']['avatar']['server_pic'], '/'), 1);
  2240. return true;
  2241. }
  2242. /**
  2243. * Save a members group.
  2244. *
  2245. * @param int &$value
  2246. * @return true
  2247. */
  2248. function profileSaveGroups(&$value)
  2249. {
  2250. global $profile_vars, $old_profile, $context, $smcFunc, $cur_profile;
  2251. // Do we need to protect some groups?
  2252. if (!allowedTo('admin_forum'))
  2253. {
  2254. $request = $smcFunc['db_query']('', '
  2255. SELECT id_group
  2256. FROM {db_prefix}membergroups
  2257. WHERE group_type = {int:is_protected}',
  2258. array(
  2259. 'is_protected' => 1,
  2260. )
  2261. );
  2262. $protected_groups = array(1);
  2263. while ($row = $smcFunc['db_fetch_assoc']($request))
  2264. $protected_groups[] = $row['id_group'];
  2265. $smcFunc['db_free_result']($request);
  2266. $protected_groups = array_unique($protected_groups);
  2267. }
  2268. // The account page allows the change of your id_group - but not to a protected group!
  2269. if (empty($protected_groups) || count(array_intersect(array((int) $value, $old_profile['id_group']), $protected_groups)) == 0)
  2270. $value = (int) $value;
  2271. // ... otherwise it's the old group sir.
  2272. else
  2273. $value = $old_profile['id_group'];
  2274. // Find the additional membergroups (if any)
  2275. if (isset($_POST['additional_groups']) && is_array($_POST['additional_groups']))
  2276. {
  2277. $additional_groups = array();
  2278. foreach ($_POST['additional_groups'] as $group_id)
  2279. {
  2280. $group_id = (int) $group_id;
  2281. if (!empty($group_id) && (empty($protected_groups) || !in_array($group_id, $protected_groups)))
  2282. $additional_groups[] = $group_id;
  2283. }
  2284. // Put the protected groups back in there if you don't have permission to take them away.
  2285. $old_additional_groups = explode(',', $old_profile['additional_groups']);
  2286. foreach ($old_additional_groups as $group_id)
  2287. {
  2288. if (!empty($protected_groups) && in_array($group_id, $protected_groups))
  2289. $additional_groups[] = $group_id;
  2290. }
  2291. if (implode(',', $additional_groups) !== $old_profile['additional_groups'])
  2292. {
  2293. $profile_vars['additional_groups'] = implode(',', $additional_groups);
  2294. $cur_profile['additional_groups'] = implode(',', $additional_groups);
  2295. }
  2296. }
  2297. // Too often, people remove delete their own account, or something.
  2298. if (in_array(1, explode(',', $old_profile['additional_groups'])) || $old_profile['id_group'] == 1)
  2299. {
  2300. $stillAdmin = $value == 1 || (isset($additional_groups) && in_array(1, $additional_groups));
  2301. // If they would no longer be an admin, look for any other...
  2302. if (!$stillAdmin)
  2303. {
  2304. $request = $smcFunc['db_query']('', '
  2305. SELECT id_member
  2306. FROM {db_prefix}members
  2307. WHERE (id_group = {int:admin_group} OR FIND_IN_SET({int:admin_group}, additional_groups) != 0)
  2308. AND id_member != {int:selected_member}
  2309. LIMIT 1',
  2310. array(
  2311. 'admin_group' => 1,
  2312. 'selected_member' => $context['id_member'],
  2313. )
  2314. );
  2315. list ($another) = $smcFunc['db_fetch_row']($request);
  2316. $smcFunc['db_free_result']($request);
  2317. if (empty($another))
  2318. fatal_lang_error('at_least_one_admin', 'critical');
  2319. }
  2320. }
  2321. // If we are changing group status, update permission cache as necessary.
  2322. if ($value != $old_profile['id_group'] || isset($profile_vars['additional_groups']))
  2323. {
  2324. if ($context['user']['is_owner'])
  2325. $_SESSION['mc']['time'] = 0;
  2326. else
  2327. updateSettings(array('settings_updated' => time()));
  2328. }
  2329. return true;
  2330. }
  2331. /**
  2332. * The avatar is incredibly complicated, what with the options... and what not.
  2333. * @todo argh, the avatar here. Take this out of here!
  2334. *
  2335. * @param array &$value
  2336. * @return mixed
  2337. */
  2338. function profileSaveAvatarData(&$value)
  2339. {
  2340. global $modSettings, $sourcedir, $smcFunc, $profile_vars, $cur_profile, $context;
  2341. $memID = $context['id_member'];
  2342. if (empty($memID) && !empty($context['password_auth_failed']))
  2343. return false;
  2344. require_once($sourcedir . '/ManageAttachments.php');
  2345. // We need to know where we're going to be putting it..
  2346. if (!empty($modSettings['custom_avatar_enabled']))
  2347. {
  2348. $uploadDir = $modSettings['custom_avatar_dir'];
  2349. $id_folder = 1;
  2350. }
  2351. elseif (!empty($modSettings['currentAttachmentUploadDir']))
  2352. {
  2353. if (!is_array($modSettings['attachmentUploadDir']))
  2354. $modSettings['attachmentUploadDir'] = unserialize($modSettings['attachmentUploadDir']);
  2355. // Just use the current path for temp files.
  2356. $uploadDir = $modSettings['attachmentUploadDir'][$modSettings['currentAttachmentUploadDir']];
  2357. $id_folder = $modSettings['currentAttachmentUploadDir'];
  2358. }
  2359. else
  2360. {
  2361. $uploadDir = $modSettings['attachmentUploadDir'];
  2362. $id_folder = 1;
  2363. }
  2364. $downloadedExternalAvatar = false;
  2365. if ($value == 'external' && allowedTo('profile_remote_avatar') && stripos($_POST['userpicpersonal'], 'http://') === 0 && strlen($_POST['userpicpersonal']) > 7 && !empty($modSettings['avatar_download_external']))
  2366. {
  2367. if (!is_writable($uploadDir))
  2368. fatal_lang_error('attachments_no_write', 'critical');
  2369. require_once($sourcedir . '/Subs-Package.php');
  2370. $url = parse_url($_POST['userpicpersonal']);
  2371. $contents = fetch_web_data('http://' . $url['host'] . (empty($url['port']) ? '' : ':' . $url['port']) . str_replace(' ', '%20', trim($url['path'])));
  2372. $new_filename = $uploadDir . '/' . getAttachmentFilename('avatar_tmp_' . $memID, false, null, true);
  2373. if ($contents != false && $tmpAvatar = fopen($new_filename, 'wb'))
  2374. {
  2375. fwrite($tmpAvatar, $contents);
  2376. fclose($tmpAvatar);
  2377. $downloadedExternalAvatar = true;
  2378. $_FILES['attachment']['tmp_name'] = $new_filename;
  2379. }
  2380. }
  2381. if ($value == 'none')
  2382. {
  2383. $profile_vars['avatar'] = '';
  2384. // Reset the attach ID.
  2385. $cur_profile['id_attach'] = 0;
  2386. $cur_profile['attachment_type'] = 0;
  2387. $cur_profile['filename'] = '';
  2388. removeAttachments(array('id_member' => $memID));
  2389. }
  2390. elseif ($value == 'server_stored' && allowedTo('profile_server_avatar'))
  2391. {
  2392. $profile_vars['avatar'] = strtr(empty($_POST['file']) ? (empty($_POST['cat']) ? '' : $_POST['cat']) : $_POST['file'], array('&amp;' => '&'));
  2393. $profile_vars['avatar'] = preg_match('~^([\w _!@%*=\-#()\[\]&.,]+/)?[\w _!@%*=\-#()\[\]&.,]+$~', $profile_vars['avatar']) != 0 && preg_match('/\.\./', $profile_vars['avatar']) == 0 && file_exists($modSettings['avatar_directory'] . '/' . $profile_vars['avatar']) ? ($profile_vars['avatar'] == 'blank.png' ? '' : $profile_vars['avatar']) : '';
  2394. // Clear current profile...
  2395. $cur_profile['id_attach'] = 0;
  2396. $cur_profile['attachment_type'] = 0;
  2397. $cur_profile['filename'] = '';
  2398. // Get rid of their old avatar. (if uploaded.)
  2399. removeAttachments(array('id_member' => $memID));
  2400. }
  2401. elseif ($value == 'external' && allowedTo('profile_remote_avatar') && stripos($_POST['userpicpersonal'], 'http://') === 0 && empty($modSettings['avatar_download_external']))
  2402. {
  2403. // We need these clean...
  2404. $cur_profile['id_attach'] = 0;
  2405. $cur_profile['attachment_type'] = 0;
  2406. $cur_profile['filename'] = '';
  2407. // Remove any attached avatar...
  2408. removeAttachments(array('id_member' => $memID));
  2409. // @todo http://www.simplemachines.org/community/index.php?topic=462089.msg3226650#msg3226650
  2410. $profile_vars['avatar'] = str_replace(' ', '%20', preg_replace('~action(?:=|%3d)(?!dlattach)~i', 'action-', $_POST['userpicpersonal']));
  2411. if ($profile_vars['avatar'] == 'http://' || $profile_vars['avatar'] == 'http:///')
  2412. $profile_vars['avatar'] = '';
  2413. // Trying to make us do something we'll regret?
  2414. elseif (substr($profile_vars['avatar'], 0, 7) != 'http://')
  2415. return 'bad_avatar';
  2416. // Should we check dimensions?
  2417. elseif (!empty($modSettings['avatar_max_height_external']) || !empty($modSettings['avatar_max_width_external']))
  2418. {
  2419. // Now let's validate the avatar.
  2420. $sizes = url_image_size($profile_vars['avatar']);
  2421. if (is_array($sizes) && (($sizes[0] > $modSettings['avatar_max_width_external'] && !empty($modSettings['avatar_max_width_external'])) || ($sizes[1] > $modSettings['avatar_max_height_external'] && !empty($modSettings['avatar_max_height_external']))))
  2422. {
  2423. // Houston, we have a problem. The avatar is too large!!
  2424. if ($modSettings['avatar_action_too_large'] == 'option_refuse')
  2425. return 'bad_avatar';
  2426. elseif ($modSettings['avatar_action_too_large'] == 'option_download_and_resize')
  2427. {
  2428. // @todo remove this if appropriate
  2429. require_once($sourcedir . '/Subs-Graphics.php');
  2430. if (downloadAvatar($profile_vars['avatar'], $memID, $modSettings['avatar_max_width_external'], $modSettings['avatar_max_height_external']))
  2431. {
  2432. $profile_vars['avatar'] = '';
  2433. $cur_profile['id_attach'] = $modSettings['new_avatar_data']['id'];
  2434. $cur_profile['filename'] = $modSettings['new_avatar_data']['filename'];
  2435. $cur_profile['attachment_type'] = $modSettings['new_avatar_data']['type'];
  2436. }
  2437. else
  2438. return 'bad_avatar';
  2439. }
  2440. }
  2441. }
  2442. }
  2443. elseif (($value == 'upload' && allowedTo('profile_upload_avatar')) || $downloadedExternalAvatar)
  2444. {
  2445. if ((isset($_FILES['attachment']['name']) && $_FILES['attachment']['name'] != '') || $downloadedExternalAvatar)
  2446. {
  2447. // Get the dimensions of the image.
  2448. if (!$downloadedExternalAvatar)
  2449. {
  2450. if (!is_writable($uploadDir))
  2451. fatal_lang_error('attachments_no_write', 'critical');
  2452. $new_filename = $uploadDir . '/' . getAttachmentFilename('avatar_tmp_' . $memID, false, null, true);
  2453. if (!move_uploaded_file($_FILES['attachment']['tmp_name'], $new_filename))
  2454. fatal_lang_error('attach_timeout', 'critical');
  2455. $_FILES['attachment']['tmp_name'] = $new_filename;
  2456. }
  2457. $sizes = @getimagesize($_FILES['attachment']['tmp_name']);
  2458. // No size, then it's probably not a valid pic.
  2459. if ($sizes === false)
  2460. {
  2461. @unlink($_FILES['attachment']['tmp_name']);
  2462. return 'bad_avatar';
  2463. }
  2464. // Check whether the image is too large.
  2465. elseif ((!empty($modSettings['avatar_max_width_upload']) && $sizes[0] > $modSettings['avatar_max_width_upload']) || (!empty($modSettings['avatar_max_height_upload']) && $sizes[1] > $modSettings['avatar_max_height_upload']))
  2466. {
  2467. if (!empty($modSettings['avatar_resize_upload']))
  2468. {
  2469. // Attempt to chmod it.
  2470. @chmod($_FILES['attachment']['tmp_name'], 0644);
  2471. // @todo remove this require when appropriate
  2472. require_once($sourcedir . '/Subs-Graphics.php');
  2473. if (!downloadAvatar($_FILES['attachment']['tmp_name'], $memID, $modSettings['avatar_max_width_upload'], $modSettings['avatar_max_height_upload']))
  2474. {
  2475. @unlink($_FILES['attachment']['tmp_name']);
  2476. return 'bad_avatar';
  2477. }
  2478. // Reset attachment avatar data.
  2479. $cur_profile['id_attach'] = $modSettings['new_avatar_data']['id'];
  2480. $cur_profile['filename'] = $modSettings['new_avatar_data']['filename'];
  2481. $cur_profile['attachment_type'] = $modSettings['new_avatar_data']['type'];
  2482. }
  2483. else
  2484. {
  2485. @unlink($_FILES['attachment']['tmp_name']);
  2486. return 'bad_avatar';
  2487. }
  2488. }
  2489. elseif (is_array($sizes))
  2490. {
  2491. // Now try to find an infection.
  2492. require_once($sourcedir . '/Subs-Graphics.php');
  2493. if (!checkImageContents($_FILES['attachment']['tmp_name'], !empty($modSettings['avatar_paranoid'])))
  2494. {
  2495. // It's bad. Try to re-encode the contents?
  2496. if (empty($modSettings['avatar_reencode']) || (!reencodeImage($_FILES['attachment']['tmp_name'], $sizes[2])))
  2497. {
  2498. @unlink($_FILES['attachment']['tmp_name']);
  2499. return 'bad_avatar';
  2500. }
  2501. // We were successful. However, at what price?
  2502. $sizes = @getimagesize($_FILES['attachment']['tmp_name']);
  2503. // Hard to believe this would happen, but can you bet?
  2504. if ($sizes === false)
  2505. {
  2506. @unlink($_FILES['attachment']['tmp_name']);
  2507. return 'bad_avatar';
  2508. }
  2509. }
  2510. $extensions = array(
  2511. '1' => 'gif',
  2512. '2' => 'jpg',
  2513. '3' => 'png',
  2514. '6' => 'bmp'
  2515. );
  2516. $extension = isset($extensions[$sizes[2]]) ? $extensions[$sizes[2]] : 'bmp';
  2517. $mime_type = 'image/' . ($extension === 'jpg' ? 'jpeg' : ($extension === 'bmp' ? 'x-ms-bmp' : $extension));
  2518. $destName = 'avatar_' . $memID . '_' . time() . '.' . $extension;
  2519. list ($width, $height) = getimagesize($_FILES['attachment']['tmp_name']);
  2520. $file_hash = empty($modSettings['custom_avatar_enabled']) ? getAttachmentFilename($destName, false, null, true) : '';
  2521. // Remove previous attachments this member might have had.
  2522. removeAttachments(array('id_member' => $memID));
  2523. $smcFunc['db_insert']('',
  2524. '{db_prefix}attachments',
  2525. array(
  2526. 'id_member' => 'int', 'attachment_type' => 'int', 'filename' => 'string', 'file_hash' => 'string', 'fileext' => 'string', 'size' => 'int',
  2527. 'width' => 'int', 'height' => 'int', 'mime_type' => 'string', 'id_folder' => 'int',
  2528. ),
  2529. array(
  2530. $memID, (empty($modSettings['custom_avatar_enabled']) ? 0 : 1), $destName, $file_hash, $extension, filesize($_FILES['attachment']['tmp_name']),
  2531. (int) $width, (int) $height, $mime_type, $id_folder,
  2532. ),
  2533. array('id_attach')
  2534. );
  2535. $cur_profile['id_attach'] = $smcFunc['db_insert_id']('{db_prefix}attachments', 'id_attach');
  2536. $cur_profile['filename'] = $destName;
  2537. $cur_profile['attachment_type'] = empty($modSettings['custom_avatar_enabled']) ? 0 : 1;
  2538. $destinationPath = $uploadDir . '/' . (empty($file_hash) ? $destName : $cur_profile['id_attach'] . '_' . $file_hash);
  2539. if (!rename($_FILES['attachment']['tmp_name'], $destinationPath))
  2540. {
  2541. // I guess a man can try.
  2542. removeAttachments(array('id_member' => $memID));
  2543. fatal_lang_error('attach_timeout', 'critical');
  2544. }
  2545. // Attempt to chmod it.
  2546. @chmod($uploadDir . '/' . $destinationPath, 0644);
  2547. }
  2548. $profile_vars['avatar'] = '';
  2549. // Delete any temporary file.
  2550. if (file_exists($_FILES['attachment']['tmp_name']))
  2551. @unlink($_FILES['attachment']['tmp_name']);
  2552. }
  2553. // Selected the upload avatar option and had one already uploaded before or didn't upload one.
  2554. else
  2555. $profile_vars['avatar'] = '';
  2556. }
  2557. else
  2558. $profile_vars['avatar'] = '';
  2559. // Setup the profile variables so it shows things right on display!
  2560. $cur_profile['avatar'] = $profile_vars['avatar'];
  2561. return false;
  2562. }
  2563. /**
  2564. * Validate the signature
  2565. *
  2566. * @param mixed &$value
  2567. * @return boolean|string
  2568. */
  2569. function profileValidateSignature(&$value)
  2570. {
  2571. global $sourcedir, $modSettings, $smcFunc, $txt;
  2572. require_once($sourcedir . '/Subs-Post.php');
  2573. // Admins can do whatever they hell they want!
  2574. if (!allowedTo('admin_forum'))
  2575. {
  2576. // Load all the signature limits.
  2577. list ($sig_limits, $sig_bbc) = explode(':', $modSettings['signature_settings']);
  2578. $sig_limits = explode(',', $sig_limits);
  2579. $disabledTags = !empty($sig_bbc) ? explode(',', $sig_bbc) : array();
  2580. $unparsed_signature = strtr(un_htmlspecialchars($value), array("\r" => '', '&#039' => '\''));
  2581. // Too many lines?
  2582. if (!empty($sig_limits[2]) && substr_count($unparsed_signature, "\n") >= $sig_limits[2])
  2583. {
  2584. $txt['profile_error_signature_max_lines'] = sprintf($txt['profile_error_signature_max_lines'], $sig_limits[2]);
  2585. return 'signature_max_lines';
  2586. }
  2587. // Too many images?!
  2588. if (!empty($sig_limits[3]) && (substr_count(strtolower($unparsed_signature), '[img') + substr_count(strtolower($unparsed_signature), '<img')) > $sig_limits[3])
  2589. {
  2590. $txt['profile_error_signature_max_image_count'] = sprintf($txt['profile_error_signature_max_image_count'], $sig_limits[3]);
  2591. return 'signature_max_image_count';
  2592. }
  2593. // What about too many smileys!
  2594. $smiley_parsed = $unparsed_signature;
  2595. parsesmileys($smiley_parsed);
  2596. $smiley_count = substr_count(strtolower($smiley_parsed), '<img') - substr_count(strtolower($unparsed_signature), '<img');
  2597. if (!empty($sig_limits[4]) && $sig_limits[4] == -1 && $smiley_count > 0)
  2598. return 'signature_allow_smileys';
  2599. elseif (!empty($sig_limits[4]) && $sig_limits[4] > 0 && $smiley_count > $sig_limits[4])
  2600. {
  2601. $txt['profile_error_signature_max_smileys'] = sprintf($txt['profile_error_signature_max_smileys'], $sig_limits[4]);
  2602. return 'signature_max_smileys';
  2603. }
  2604. // Maybe we are abusing font sizes?
  2605. if (!empty($sig_limits[7]) && preg_match_all('~\[size=([\d\.]+)?(px|pt|em|x-large|larger)~i', $unparsed_signature, $matches) !== false && isset($matches[2]))
  2606. {
  2607. foreach ($matches[1] as $ind => $size)
  2608. {
  2609. $limit_broke = 0;
  2610. // Attempt to allow all sizes of abuse, so to speak.
  2611. if ($matches[2][$ind] == 'px' && $size > $sig_limits[7])
  2612. $limit_broke = $sig_limits[7] . 'px';
  2613. elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75))
  2614. $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt';
  2615. elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16))
  2616. $limit_broke = ((float) $sig_limits[7] / 16) . 'em';
  2617. elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18)
  2618. $limit_broke = 'large';
  2619. if ($limit_broke)
  2620. {
  2621. $txt['profile_error_signature_max_font_size'] = sprintf($txt['profile_error_signature_max_font_size'], $limit_broke);
  2622. return 'signature_max_font_size';
  2623. }
  2624. }
  2625. }
  2626. // The difficult one - image sizes! Don't error on this - just fix it.
  2627. if ((!empty($sig_limits[5]) || !empty($sig_limits[6])))
  2628. {
  2629. // Get all BBC tags...
  2630. preg_match_all('~\[img(\s+width=([\d]+))?(\s+height=([\d]+))?(\s+width=([\d]+))?\s*\](?:<br />)*([^<">]+?)(?:<br />)*\[/img\]~i', $unparsed_signature, $matches);
  2631. // ... and all HTML ones.
  2632. preg_match_all('~<img\s+src=(?:")?((?:http://|ftp://|https://|ftps://).+?)(?:")?(?:\s+alt=(?:")?(.*?)(?:")?)?(?:\s?/)?>~i', $unparsed_signature, $matches2, PREG_PATTERN_ORDER);
  2633. // And stick the HTML in the BBC.
  2634. if (!empty($matches2))
  2635. {
  2636. foreach ($matches2[0] as $ind => $dummy)
  2637. {
  2638. $matches[0][] = $matches2[0][$ind];
  2639. $matches[1][] = '';
  2640. $matches[2][] = '';
  2641. $matches[3][] = '';
  2642. $matches[4][] = '';
  2643. $matches[5][] = '';
  2644. $matches[6][] = '';
  2645. $matches[7][] = $matches2[1][$ind];
  2646. }
  2647. }
  2648. $replaces = array();
  2649. // Try to find all the images!
  2650. if (!empty($matches))
  2651. {
  2652. foreach ($matches[0] as $key => $image)
  2653. {
  2654. $width = -1; $height = -1;
  2655. // Does it have predefined restraints? Width first.
  2656. if ($matches[6][$key])
  2657. $matches[2][$key] = $matches[6][$key];
  2658. if ($matches[2][$key] && $sig_limits[5] && $matches[2][$key] > $sig_limits[5])
  2659. {
  2660. $width = $sig_limits[5];
  2661. $matches[4][$key] = $matches[4][$key] * ($width / $matches[2][$key]);
  2662. }
  2663. elseif ($matches[2][$key])
  2664. $width = $matches[2][$key];
  2665. // ... and height.
  2666. if ($matches[4][$key] && $sig_limits[6] && $matches[4][$key] > $sig_limits[6])
  2667. {
  2668. $height = $sig_limits[6];
  2669. if ($width != -1)
  2670. $width = $width * ($height / $matches[4][$key]);
  2671. }
  2672. elseif ($matches[4][$key])
  2673. $height = $matches[4][$key];
  2674. // If the dimensions are still not fixed - we need to check the actual image.
  2675. if (($width == -1 && $sig_limits[5]) || ($height == -1 && $sig_limits[6]))
  2676. {
  2677. $sizes = url_image_size($matches[7][$key]);
  2678. if (is_array($sizes))
  2679. {
  2680. // Too wide?
  2681. if ($sizes[0] > $sig_limits[5] && $sig_limits[5])
  2682. {
  2683. $width = $sig_limits[5];
  2684. $sizes[1] = $sizes[1] * ($width / $sizes[0]);
  2685. }
  2686. // Too high?
  2687. if ($sizes[1] > $sig_limits[6] && $sig_limits[6])
  2688. {
  2689. $height = $sig_limits[6];
  2690. if ($width == -1)
  2691. $width = $sizes[0];
  2692. $width = $width * ($height / $sizes[1]);
  2693. }
  2694. elseif ($width != -1)
  2695. $height = $sizes[1];
  2696. }
  2697. }
  2698. // Did we come up with some changes? If so remake the string.
  2699. if ($width != -1 || $height != -1)
  2700. $replaces[$image] = '[img' . ($width != -1 ? ' width=' . round($width) : '') . ($height != -1 ? ' height=' . round($height) : '') . ']' . $matches[7][$key] . '[/img]';
  2701. }
  2702. if (!empty($replaces))
  2703. $value = str_replace(array_keys($replaces), array_values($replaces), $value);
  2704. }
  2705. }
  2706. // Any disabled BBC?
  2707. $disabledSigBBC = implode('|', $disabledTags);
  2708. if (!empty($disabledSigBBC))
  2709. {
  2710. if (preg_match('~\[(' . $disabledSigBBC . '[ =\]/])~i', $unparsed_signature, $matches) !== false && isset($matches[1]))
  2711. {
  2712. $disabledTags = array_unique($disabledTags);
  2713. $txt['profile_error_signature_disabled_bbc'] = sprintf($txt['profile_error_signature_disabled_bbc'], implode(', ', $disabledTags));
  2714. return 'signature_disabled_bbc';
  2715. }
  2716. }
  2717. }
  2718. preparsecode($value);
  2719. // Too long?
  2720. if (!allowedTo('admin_forum') && !empty($sig_limits[1]) && $smcFunc['strlen'](str_replace('<br />', "\n", $value)) > $sig_limits[1])
  2721. {
  2722. $_POST['signature'] = trim($smcFunc['htmlspecialchars'](str_replace('<br />', "\n", $value), ENT_QUOTES));
  2723. $txt['profile_error_signature_max_length'] = sprintf($txt['profile_error_signature_max_length'], $sig_limits[1]);
  2724. return 'signature_max_length';
  2725. }
  2726. return true;
  2727. }
  2728. /**
  2729. * Validate an email address.
  2730. *
  2731. * @param string $email
  2732. * @param int $memID = 0
  2733. * @return boolean|string
  2734. */
  2735. function profileValidateEmail($email, $memID = 0)
  2736. {
  2737. global $smcFunc, $context;
  2738. $email = strtr($email, array('&#039;' => '\''));
  2739. // Check the name and email for validity.
  2740. if (trim($email) == '')
  2741. return 'no_email';
  2742. if (preg_match('~^[0-9A-Za-z=_+\-/][0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', $email) == 0)
  2743. return 'bad_email';
  2744. // Email addresses should be and stay unique.
  2745. $request = $smcFunc['db_query']('', '
  2746. SELECT id_member
  2747. FROM {db_prefix}members
  2748. WHERE ' . ($memID != 0 ? 'id_member != {int:selected_member} AND ' : '') . '
  2749. email_address = {string:email_address}
  2750. LIMIT 1',
  2751. array(
  2752. 'selected_member' => $memID,
  2753. 'email_address' => $email,
  2754. )
  2755. );
  2756. if ($smcFunc['db_num_rows']($request) > 0)
  2757. return 'email_taken';
  2758. $smcFunc['db_free_result']($request);
  2759. return true;
  2760. }
  2761. /**
  2762. * Reload a users settings.
  2763. */
  2764. function profileReloadUser()
  2765. {
  2766. global $sourcedir, $modSettings, $context, $cur_profile, $smcFunc, $profile_vars;
  2767. // Log them back in - using the verify password as they must have matched and this one doesn't get changed by anyone!
  2768. if (isset($_POST['passwrd2']) && $_POST['passwrd2'] != '')
  2769. {
  2770. require_once($sourcedir . '/Subs-Auth.php');
  2771. setLoginCookie(60 * $modSettings['cookieTime'], $context['id_member'], sha1(sha1(strtolower($cur_profile['member_name']) . un_htmlspecialchars($_POST['passwrd2'])) . $cur_profile['password_salt']));
  2772. }
  2773. loadUserSettings();
  2774. writeLog();
  2775. }
  2776. /**
  2777. * Send the user a new activation email if they need to reactivate!
  2778. */
  2779. function profileSendActivation()
  2780. {
  2781. global $sourcedir, $profile_vars, $txt, $context, $scripturl, $smcFunc, $cookiename, $cur_profile, $language, $modSettings;
  2782. require_once($sourcedir . '/Subs-Post.php');
  2783. // Shouldn't happen but just in case.
  2784. if (empty($profile_vars['email_address']))
  2785. return;
  2786. $replacements = array(
  2787. 'ACTIVATIONLINK' => $scripturl . '?action=activate;u=' . $context['id_member'] . ';code=' . $profile_vars['validation_code'],
  2788. 'ACTIVATIONCODE' => $profile_vars['validation_code'],
  2789. 'ACTIVATIONLINKWITHOUTCODE' => $scripturl . '?action=activate;u=' . $context['id_member'],
  2790. );
  2791. // Send off the email.
  2792. $emaildata = loadEmailTemplate('activate_reactivate', $replacements, empty($cur_profile['lngfile']) || empty($modSettings['userLanguage']) ? $language : $cur_profile['lngfile']);
  2793. sendmail($profile_vars['email_address'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  2794. // Log the user out.
  2795. $smcFunc['db_query']('', '
  2796. DELETE FROM {db_prefix}log_online
  2797. WHERE id_member = {int:selected_member}',
  2798. array(
  2799. 'selected_member' => $context['id_member'],
  2800. )
  2801. );
  2802. $_SESSION['log_time'] = 0;
  2803. $_SESSION['login_' . $cookiename] = serialize(array(0, '', 0));
  2804. if (isset($_COOKIE[$cookiename]))
  2805. $_COOKIE[$cookiename] = '';
  2806. loadUserSettings();
  2807. $context['user']['is_logged'] = false;
  2808. $context['user']['is_guest'] = true;
  2809. // Send them to the done-with-registration-login screen.
  2810. loadTemplate('Register');
  2811. $context['page_title'] = $txt['profile'];
  2812. $context['sub_template'] = 'after';
  2813. $context['title'] = $txt['activate_changed_email_title'];
  2814. $context['description'] = $txt['activate_changed_email_desc'];
  2815. // We're gone!
  2816. obExit();
  2817. }
  2818. /**
  2819. * Function to allow the user to choose group membership etc...
  2820. *
  2821. * @param int $memID id_member
  2822. */
  2823. function groupMembership($memID)
  2824. {
  2825. global $txt, $scripturl, $user_profile, $user_info, $context, $modSettings, $smcFunc;
  2826. $curMember = $user_profile[$memID];
  2827. $context['primary_group'] = $curMember['id_group'];
  2828. // Can they manage groups?
  2829. $context['can_manage_membergroups'] = allowedTo('manage_membergroups');
  2830. $context['can_manage_protected'] = allowedTo('admin_forum');
  2831. $context['can_edit_primary'] = $context['can_manage_protected'];
  2832. $context['update_message'] = isset($_GET['msg']) && isset($txt['group_membership_msg_' . $_GET['msg']]) ? $txt['group_membership_msg_' . $_GET['msg']] : '';
  2833. // Get all the groups this user is a member of.
  2834. $groups = explode(',', $curMember['additional_groups']);
  2835. $groups[] = $curMember['id_group'];
  2836. // Ensure the query doesn't croak!
  2837. if (empty($groups))
  2838. $groups = array(0);
  2839. // Just to be sure...
  2840. foreach ($groups as $k => $v)
  2841. $groups[$k] = (int) $v;
  2842. // Get all the membergroups they can join.
  2843. $request = $smcFunc['db_query']('', '
  2844. SELECT mg.id_group, mg.group_name, mg.description, mg.group_type, mg.online_color, mg.hidden,
  2845. IFNULL(lgr.id_member, 0) AS pending
  2846. FROM {db_prefix}membergroups AS mg
  2847. LEFT JOIN {db_prefix}log_group_requests AS lgr ON (lgr.id_member = {int:selected_member} AND lgr.id_group = mg.id_group)
  2848. WHERE (mg.id_group IN ({array_int:group_list})
  2849. OR mg.group_type > {int:nonjoin_group_id})
  2850. AND mg.min_posts = {int:min_posts}
  2851. AND mg.id_group != {int:moderator_group}
  2852. ORDER BY group_name',
  2853. array(
  2854. 'group_list' => $groups,
  2855. 'selected_member' => $memID,
  2856. 'nonjoin_group_id' => 1,
  2857. 'min_posts' => -1,
  2858. 'moderator_group' => 3,
  2859. )
  2860. );
  2861. // This beast will be our group holder.
  2862. $context['groups'] = array(
  2863. 'member' => array(),
  2864. 'available' => array()
  2865. );
  2866. while ($row = $smcFunc['db_fetch_assoc']($request))
  2867. {
  2868. // Can they edit their primary group?
  2869. if (($row['id_group'] == $context['primary_group'] && $row['group_type'] > 1) || ($row['hidden'] != 2 && $context['primary_group'] == 0 && in_array($row['id_group'], $groups)))
  2870. $context['can_edit_primary'] = true;
  2871. // If they can't manage (protected) groups, and it's not publically joinable or already assigned, they can't see it.
  2872. if (((!$context['can_manage_protected'] && $row['group_type'] == 1) || (!$context['can_manage_membergroups'] && $row['group_type'] == 0)) && $row['id_group'] != $context['primary_group'])
  2873. continue;
  2874. $context['groups'][in_array($row['id_group'], $groups) ? 'member' : 'available'][$row['id_group']] = array(
  2875. 'id' => $row['id_group'],
  2876. 'name' => $row['group_name'],
  2877. 'desc' => $row['description'],
  2878. 'color' => $row['online_color'],
  2879. 'type' => $row['group_type'],
  2880. 'pending' => $row['pending'],
  2881. 'is_primary' => $row['id_group'] == $context['primary_group'],
  2882. 'can_be_primary' => $row['hidden'] != 2,
  2883. // Anything more than this needs to be done through account settings for security.
  2884. 'can_leave' => $row['id_group'] != 1 && $row['group_type'] > 1 ? true : false,
  2885. );
  2886. }
  2887. $smcFunc['db_free_result']($request);
  2888. // Add registered members on the end.
  2889. $context['groups']['member'][0] = array(
  2890. 'id' => 0,
  2891. 'name' => $txt['regular_members'],
  2892. 'desc' => $txt['regular_members_desc'],
  2893. 'type' => 0,
  2894. 'is_primary' => $context['primary_group'] == 0 ? true : false,
  2895. 'can_be_primary' => true,
  2896. 'can_leave' => 0,
  2897. );
  2898. // No changing primary one unless you have enough groups!
  2899. if (count($context['groups']['member']) < 2)
  2900. $context['can_edit_primary'] = false;
  2901. // In the special case that someone is requesting membership of a group, setup some special context vars.
  2902. if (isset($_REQUEST['request']) && isset($context['groups']['available'][(int) $_REQUEST['request']]) && $context['groups']['available'][(int) $_REQUEST['request']]['type'] == 2)
  2903. $context['group_request'] = $context['groups']['available'][(int) $_REQUEST['request']];
  2904. }
  2905. /**
  2906. * This function actually makes all the group changes
  2907. *
  2908. * @param array $profile_vars
  2909. * @param array $post_errors
  2910. * @param int $memID id_member
  2911. * @return mixed
  2912. */
  2913. function groupMembership2($profile_vars, $post_errors, $memID)
  2914. {
  2915. global $user_info, $sourcedir, $context, $user_profile, $modSettings, $txt, $smcFunc, $scripturl, $language;
  2916. // Let's be extra cautious...
  2917. if (!$context['user']['is_owner'] || empty($modSettings['show_group_membership']))
  2918. isAllowedTo('manage_membergroups');
  2919. if (!isset($_REQUEST['gid']) && !isset($_POST['primary']))
  2920. fatal_lang_error('no_access', false);
  2921. checkSession(isset($_GET['gid']) ? 'get' : 'post');
  2922. $old_profile = &$user_profile[$memID];
  2923. $context['can_manage_membergroups'] = allowedTo('manage_membergroups');
  2924. $context['can_manage_protected'] = allowedTo('admin_forum');
  2925. // By default the new primary is the old one.
  2926. $newPrimary = $old_profile['id_group'];
  2927. $addGroups = array_flip(explode(',', $old_profile['additional_groups']));
  2928. $canChangePrimary = $old_profile['id_group'] == 0 ? 1 : 0;
  2929. $changeType = isset($_POST['primary']) ? 'primary' : (isset($_POST['req']) ? 'request' : 'free');
  2930. // One way or another, we have a target group in mind...
  2931. $group_id = isset($_REQUEST['gid']) ? (int) $_REQUEST['gid'] : (int) $_POST['primary'];
  2932. $foundTarget = $changeType == 'primary' && $group_id == 0 ? true : false;
  2933. // Sanity check!!
  2934. if ($group_id == 1)
  2935. isAllowedTo('admin_forum');
  2936. // Protected groups too!
  2937. else
  2938. {
  2939. $request = $smcFunc['db_query']('', '
  2940. SELECT group_type
  2941. FROM {db_prefix}membergroups
  2942. WHERE id_group = {int:current_group}
  2943. LIMIT {int:limit}',
  2944. array(
  2945. 'current_group' => $group_id,
  2946. 'limit' => 1,
  2947. )
  2948. );
  2949. list ($is_protected) = $smcFunc['db_fetch_row']($request);
  2950. $smcFunc['db_free_result']($request);
  2951. if ($is_protected == 1)
  2952. isAllowedTo('admin_forum');
  2953. }
  2954. // What ever we are doing, we need to determine if changing primary is possible!
  2955. $request = $smcFunc['db_query']('', '
  2956. SELECT id_group, group_type, hidden, group_name
  2957. FROM {db_prefix}membergroups
  2958. WHERE id_group IN ({int:group_list}, {int:current_group})',
  2959. array(
  2960. 'group_list' => $group_id,
  2961. 'current_group' => $old_profile['id_group'],
  2962. )
  2963. );
  2964. while ($row = $smcFunc['db_fetch_assoc']($request))
  2965. {
  2966. // Is this the new group?
  2967. if ($row['id_group'] == $group_id)
  2968. {
  2969. $foundTarget = true;
  2970. $group_name = $row['group_name'];
  2971. // Does the group type match what we're doing - are we trying to request a non-requestable group?
  2972. if ($changeType == 'request' && $row['group_type'] != 2)
  2973. fatal_lang_error('no_access', false);
  2974. // What about leaving a requestable group we are not a member of?
  2975. elseif ($changeType == 'free' && $row['group_type'] == 2 && $old_profile['id_group'] != $row['id_group'] && !isset($addGroups[$row['id_group']]))
  2976. fatal_lang_error('no_access', false);
  2977. elseif ($changeType == 'free' && $row['group_type'] != 3 && $row['group_type'] != 2)
  2978. fatal_lang_error('no_access', false);
  2979. // We can't change the primary group if this is hidden!
  2980. if ($row['hidden'] == 2)
  2981. $canChangePrimary = false;
  2982. }
  2983. // If this is their old primary, can we change it?
  2984. if ($row['id_group'] == $old_profile['id_group'] && ($row['group_type'] > 1 || $context['can_manage_membergroups']) && $canChangePrimary !== false)
  2985. $canChangePrimary = 1;
  2986. // If we are not doing a force primary move, don't do it automatically if current primary is not 0.
  2987. if ($changeType != 'primary' && $old_profile['id_group'] != 0)
  2988. $canChangePrimary = false;
  2989. // If this is the one we are acting on, can we even act?
  2990. if ((!$context['can_manage_protected'] && $row['group_type'] == 1) || (!$context['can_manage_membergroups'] && $row['group_type'] == 0))
  2991. $canChangePrimary = false;
  2992. }
  2993. $smcFunc['db_free_result']($request);
  2994. // Didn't find the target?
  2995. if (!$foundTarget)
  2996. fatal_lang_error('no_access', false);
  2997. // Final security check, don't allow users to promote themselves to admin.
  2998. if ($context['can_manage_membergroups'] && !allowedTo('admin_forum'))
  2999. {
  3000. $request = $smcFunc['db_query']('', '
  3001. SELECT COUNT(permission)
  3002. FROM {db_prefix}permissions
  3003. WHERE id_group = {int:selected_group}
  3004. AND permission = {string:admin_forum}
  3005. AND add_deny = {int:not_denied}',
  3006. array(
  3007. 'selected_group' => $group_id,
  3008. 'not_denied' => 1,
  3009. 'admin_forum' => 'admin_forum',
  3010. )
  3011. );
  3012. list ($disallow) = $smcFunc['db_fetch_row']($request);
  3013. $smcFunc['db_free_result']($request);
  3014. if ($disallow)
  3015. isAllowedTo('admin_forum');
  3016. }
  3017. // If we're requesting, add the note then return.
  3018. if ($changeType == 'request')
  3019. {
  3020. $request = $smcFunc['db_query']('', '
  3021. SELECT id_member
  3022. FROM {db_prefix}log_group_requests
  3023. WHERE id_member = {int:selected_member}
  3024. AND id_group = {int:selected_group}',
  3025. array(
  3026. 'selected_member' => $memID,
  3027. 'selected_group' => $group_id,
  3028. )
  3029. );
  3030. if ($smcFunc['db_num_rows']($request) != 0)
  3031. fatal_lang_error('profile_error_already_requested_group');
  3032. $smcFunc['db_free_result']($request);
  3033. // Log the request.
  3034. $smcFunc['db_insert']('',
  3035. '{db_prefix}log_group_requests',
  3036. array(
  3037. 'id_member' => 'int', 'id_group' => 'int', 'time_applied' => 'int', 'reason' => 'string-65534',
  3038. ),
  3039. array(
  3040. $memID, $group_id, time(), $_POST['reason'],
  3041. ),
  3042. array('id_request')
  3043. );
  3044. // Send an email to all group moderators etc.
  3045. require_once($sourcedir . '/Subs-Post.php');
  3046. // Do we have any group moderators?
  3047. $request = $smcFunc['db_query']('', '
  3048. SELECT id_member
  3049. FROM {db_prefix}group_moderators
  3050. WHERE id_group = {int:selected_group}',
  3051. array(
  3052. 'selected_group' => $group_id,
  3053. )
  3054. );
  3055. $moderators = array();
  3056. while ($row = $smcFunc['db_fetch_assoc']($request))
  3057. $moderators[] = $row['id_member'];
  3058. $smcFunc['db_free_result']($request);
  3059. // Otherwise this is the backup!
  3060. if (empty($moderators))
  3061. {
  3062. require_once($sourcedir . '/Subs-Members.php');
  3063. $moderators = membersAllowedTo('manage_membergroups');
  3064. }
  3065. if (!empty($moderators))
  3066. {
  3067. $request = $smcFunc['db_query']('', '
  3068. SELECT id_member, email_address, lngfile, member_name, mod_prefs
  3069. FROM {db_prefix}members
  3070. WHERE id_member IN ({array_int:moderator_list})
  3071. AND notify_types != {int:no_notifications}
  3072. ORDER BY lngfile',
  3073. array(
  3074. 'moderator_list' => $moderators,
  3075. 'no_notifications' => 4,
  3076. )
  3077. );
  3078. while ($row = $smcFunc['db_fetch_assoc']($request))
  3079. {
  3080. // Check whether they are interested.
  3081. if (!empty($row['mod_prefs']))
  3082. {
  3083. list(,, $pref_binary) = explode('|', $row['mod_prefs']);
  3084. if (!($pref_binary & 4))
  3085. continue;
  3086. }
  3087. $replacements = array(
  3088. 'RECPNAME' => $row['member_name'],
  3089. 'APPYNAME' => $old_profile['member_name'],
  3090. 'GROUPNAME' => $group_name,
  3091. 'REASON' => $_POST['reason'],
  3092. 'MODLINK' => $scripturl . '?action=moderate;area=groups;sa=requests',
  3093. );
  3094. $emaildata = loadEmailTemplate('request_membership', $replacements, empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']);
  3095. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, null, false, 2);
  3096. }
  3097. $smcFunc['db_free_result']($request);
  3098. }
  3099. return $changeType;
  3100. }
  3101. // Otherwise we are leaving/joining a group.
  3102. elseif ($changeType == 'free')
  3103. {
  3104. // Are we leaving?
  3105. if ($old_profile['id_group'] == $group_id || isset($addGroups[$group_id]))
  3106. {
  3107. if ($old_profile['id_group'] == $group_id)
  3108. $newPrimary = 0;
  3109. else
  3110. unset($addGroups[$group_id]);
  3111. }
  3112. // ... if not, must be joining.
  3113. else
  3114. {
  3115. // Can we change the primary, and do we want to?
  3116. if ($canChangePrimary)
  3117. {
  3118. if ($old_profile['id_group'] != 0)
  3119. $addGroups[$old_profile['id_group']] = -1;
  3120. $newPrimary = $group_id;
  3121. }
  3122. // Otherwise it's an additional group...
  3123. else
  3124. $addGroups[$group_id] = -1;
  3125. }
  3126. }
  3127. // Finally, we must be setting the primary.
  3128. elseif ($canChangePrimary)
  3129. {
  3130. if ($old_profile['id_group'] != 0)
  3131. $addGroups[$old_profile['id_group']] = -1;
  3132. if (isset($addGroups[$group_id]))
  3133. unset($addGroups[$group_id]);
  3134. $newPrimary = $group_id;
  3135. }
  3136. // Finally, we can make the changes!
  3137. foreach ($addGroups as $id => $dummy)
  3138. if (empty($id))
  3139. unset($addGroups[$id]);
  3140. $addGroups = implode(',', array_flip($addGroups));
  3141. // Ensure that we don't cache permissions if the group is changing.
  3142. if ($context['user']['is_owner'])
  3143. $_SESSION['mc']['time'] = 0;
  3144. else
  3145. updateSettings(array('settings_updated' => time()));
  3146. updateMemberData($memID, array('id_group' => $newPrimary, 'additional_groups' => $addGroups));
  3147. return $changeType;
  3148. }
  3149. ?>