Profile-Modify.php 115 KB

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