util.php 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /* XXX: break up into separate modules (HTTP, user, files) */
  17. defined('GNUSOCIAL') || die();
  18. /**
  19. * Show a server error.
  20. */
  21. function common_server_error($msg, $code=500)
  22. {
  23. $err = new ServerErrorAction($msg, $code);
  24. $err->showPage();
  25. }
  26. /**
  27. * Show a user error.
  28. */
  29. function common_user_error($msg, $code=400)
  30. {
  31. $err = new ClientErrorAction($msg, $code);
  32. $err->showPage();
  33. }
  34. /**
  35. * This should only be used at setup; processes switching languages
  36. * to send text to other users should use common_switch_locale().
  37. *
  38. * @param string $language Locale language code (optional; empty uses
  39. * current user's preference or site default)
  40. * @return mixed success
  41. */
  42. function common_init_locale($language=null)
  43. {
  44. if (!$language) {
  45. $language = common_language();
  46. }
  47. putenv('LANGUAGE='.$language);
  48. putenv('LANG='.$language);
  49. $ok = setlocale(
  50. LC_ALL,
  51. $language . ".utf8",
  52. $language . ".UTF8",
  53. $language . ".utf-8",
  54. $language . ".UTF-8",
  55. $language
  56. );
  57. return $ok;
  58. }
  59. /**
  60. * Initialize locale and charset settings and gettext with our message catalog,
  61. * using the current user's language preference or the site default.
  62. *
  63. * This should generally only be run at framework initialization; code switching
  64. * languages at runtime should call common_switch_language().
  65. *
  66. * @access private
  67. */
  68. function common_init_language()
  69. {
  70. mb_internal_encoding('UTF-8');
  71. // Note that this setlocale() call may "fail" but this is harmless;
  72. // gettext will still select the right language.
  73. $language = common_language();
  74. $locale_set = common_init_locale($language);
  75. if (!$locale_set) {
  76. // The requested locale doesn't exist on the system.
  77. //
  78. // gettext seems very picky... We first need to setlocale()
  79. // to a locale which _does_ exist on the system, and _then_
  80. // we can set in another locale that may not be set up
  81. // (say, ga_ES for Galego/Galician) it seems to take it.
  82. //
  83. // For some reason C and POSIX which are guaranteed to work
  84. // don't do the job. en_US.UTF-8 should be there most of the
  85. // time, but not guaranteed.
  86. $ok = common_init_locale("en_US");
  87. if (!$ok && strtolower(substr(PHP_OS, 0, 3)) != 'win') {
  88. // Try to find a complete, working locale on Unix/Linux...
  89. // @fixme shelling out feels awfully inefficient
  90. // but I don't think there's a more standard way.
  91. $all = `locale -a`;
  92. foreach (explode("\n", $all) as $locale) {
  93. if (preg_match('/\.utf[-_]?8$/i', $locale)) {
  94. $ok = setlocale(LC_ALL, $locale);
  95. if ($ok) {
  96. break;
  97. }
  98. }
  99. }
  100. }
  101. if (!$ok) {
  102. common_log(LOG_ERR, "Unable to find a UTF-8 locale on this system; UI translations may not work.");
  103. }
  104. $locale_set = common_init_locale($language);
  105. }
  106. common_init_gettext();
  107. }
  108. /**
  109. * @access private
  110. */
  111. function common_init_gettext()
  112. {
  113. setlocale(LC_CTYPE, 'C');
  114. // So we do not have to make people install the gettext locales
  115. $path = common_config('site', 'locale_path');
  116. bindtextdomain("statusnet", $path);
  117. bind_textdomain_codeset("statusnet", "UTF-8");
  118. textdomain("statusnet");
  119. }
  120. /**
  121. * Switch locale during runtime, and poke gettext until it cries uncle.
  122. * Otherwise, sometimes it doesn't actually switch away from the old language.
  123. *
  124. * @param string $language code for locale ('en', 'fr', 'pt_BR' etc)
  125. */
  126. function common_switch_locale($language=null)
  127. {
  128. common_init_locale($language);
  129. setlocale(LC_CTYPE, 'C');
  130. // So we do not have to make people install the gettext locales
  131. $path = common_config('site', 'locale_path');
  132. bindtextdomain("statusnet", $path);
  133. bind_textdomain_codeset("statusnet", "UTF-8");
  134. textdomain("statusnet");
  135. }
  136. function common_timezone()
  137. {
  138. if (common_logged_in()) {
  139. $user = common_current_user();
  140. if ($user->timezone) {
  141. return $user->timezone;
  142. }
  143. }
  144. return common_config('site', 'timezone');
  145. }
  146. function common_valid_language($lang)
  147. {
  148. if ($lang) {
  149. // Validate -- we don't want to end up with a bogus code
  150. // left over from some old junk.
  151. foreach (common_config('site', 'languages') as $code => $info) {
  152. if ($info['lang'] == $lang) {
  153. return true;
  154. }
  155. }
  156. }
  157. return false;
  158. }
  159. function common_language()
  160. {
  161. // Allow ?uselang=xx override, very useful for debugging
  162. // and helping translators check usage and context.
  163. if (isset($_GET['uselang'])) {
  164. $uselang = strval($_GET['uselang']);
  165. if (common_valid_language($uselang)) {
  166. return $uselang;
  167. }
  168. }
  169. // If there is a user logged in and they've set a language preference
  170. // then return that one...
  171. if (_have_config() && common_logged_in()) {
  172. $user = common_current_user();
  173. if (common_valid_language($user->language)) {
  174. return $user->language;
  175. }
  176. }
  177. // Otherwise, find the best match for the languages requested by the
  178. // user's browser...
  179. if (common_config('site', 'langdetect')) {
  180. $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : null;
  181. if (!empty($httplang)) {
  182. $language = client_preferred_language($httplang);
  183. if ($language) {
  184. return $language;
  185. }
  186. }
  187. }
  188. // Finally, if none of the above worked, use the site's default...
  189. return common_config('site', 'language');
  190. }
  191. /**
  192. * Salted, hashed passwords are stored in the DB.
  193. */
  194. function common_munge_password($password, Profile $profile=null)
  195. {
  196. $hashed = null;
  197. if (Event::handle('StartHashPassword', [&$hashed, $password, $profile])) {
  198. Event::handle('EndHashPassword', [&$hashed, $password, $profile]);
  199. }
  200. if (empty($hashed)) {
  201. throw new PasswordHashException();
  202. }
  203. return $hashed;
  204. }
  205. /**
  206. * Check if a username exists and has matching password.
  207. */
  208. function common_check_user($nickname, $password)
  209. {
  210. // empty nickname always unacceptable
  211. if (empty($nickname)) {
  212. return false;
  213. }
  214. $authenticatedUser = false;
  215. if (Event::handle('StartCheckPassword', [$nickname, $password, &$authenticatedUser])) {
  216. if (common_is_email($nickname)) {
  217. $user = User::getKV('email', common_canonical_email($nickname));
  218. } else {
  219. $user = User::getKV('nickname', Nickname::normalize($nickname));
  220. }
  221. if ($user instanceof User && !empty($password)) {
  222. if (0 == strcmp(common_munge_password($password, $user->getProfile()), $user->password)) {
  223. //internal checking passed
  224. $authenticatedUser = $user;
  225. }
  226. }
  227. }
  228. Event::handle('EndCheckPassword', [$nickname, $password, $authenticatedUser]);
  229. return $authenticatedUser;
  230. }
  231. /**
  232. * Is the current user logged in?
  233. */
  234. function common_logged_in()
  235. {
  236. return (!is_null(common_current_user()));
  237. }
  238. function common_local_referer()
  239. {
  240. return isset($_SERVER['HTTP_REFERER'])
  241. && parse_url($_SERVER['HTTP_REFERER'], PHP_URL_HOST) === common_config('site', 'server');
  242. }
  243. function common_have_session()
  244. {
  245. return (0 != strcmp(session_id(), ''));
  246. }
  247. /**
  248. * Make sure session is started and handled by
  249. * the correct handler.
  250. */
  251. function common_ensure_session()
  252. {
  253. if (!common_have_session()) {
  254. if (common_config('sessions', 'handle')) {
  255. session_set_save_handler(new InternalSessionHandler(), true);
  256. }
  257. if (array_key_exists(session_name(), $_GET)) {
  258. $id = $_GET[session_name()];
  259. } elseif (array_key_exists(session_name(), $_COOKIE)) {
  260. $id = $_COOKIE[session_name()];
  261. }
  262. if (isset($id)) {
  263. session_id($id);
  264. }
  265. session_start();
  266. if (!isset($_SESSION['started'])) {
  267. $_SESSION['started'] = time();
  268. if (!empty($id)) {
  269. common_log(LOG_WARNING, 'Session cookie "' . $_COOKIE[session_name()] . '" ' .
  270. ' is set but started value is null');
  271. }
  272. }
  273. }
  274. }
  275. // Three kinds of arguments:
  276. // 1) a user object
  277. // 2) a nickname
  278. // 3) null to clear
  279. // Initialize to false; set to null if none found
  280. $_cur = false;
  281. function common_set_user($user)
  282. {
  283. global $_cur;
  284. if (is_null($user) && common_have_session()) {
  285. $_cur = null;
  286. unset($_SESSION['userid']);
  287. return true;
  288. } elseif (is_string($user)) {
  289. $nickname = $user;
  290. $user = User::getKV('nickname', $nickname);
  291. } elseif (!$user instanceof User) {
  292. return false;
  293. }
  294. if ($user) {
  295. if (Event::handle('StartSetUser', [&$user])) {
  296. if (!empty($user)) {
  297. if (!$user->hasRight(Right::WEBLOGIN)) {
  298. // TRANS: Authorisation exception thrown when a user a not allowed to login.
  299. throw new AuthorizationException(_('Not allowed to log in.'));
  300. }
  301. common_ensure_session();
  302. $_SESSION['userid'] = $user->id;
  303. $_cur = $user;
  304. Event::handle('EndSetUser', [$user]);
  305. return $_cur;
  306. }
  307. }
  308. }
  309. return false;
  310. }
  311. function common_set_cookie($key, $value, $expiration=0)
  312. {
  313. $path = common_config('site', 'path');
  314. $server = common_config('site', 'server');
  315. if ($path && ($path != '/')) {
  316. $cookiepath = '/' . $path . '/';
  317. } else {
  318. $cookiepath = '/';
  319. }
  320. return setcookie(
  321. $key,
  322. $value,
  323. $expiration,
  324. $cookiepath,
  325. $server,
  326. GNUsocial::useHTTPS()
  327. );
  328. }
  329. define('REMEMBERME', 'rememberme');
  330. define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
  331. function common_rememberme($user=null)
  332. {
  333. if (!$user) {
  334. $user = common_current_user();
  335. if (!$user) {
  336. return false;
  337. }
  338. }
  339. $rm = new Remember_me();
  340. $rm->code = common_random_hexstr(16);
  341. $rm->user_id = $user->id;
  342. // Wrap the insert in some good ol' fashioned transaction code
  343. $rm->query('BEGIN');
  344. $result = $rm->insert();
  345. if (!$result) {
  346. common_log_db_error($rm, 'INSERT', __FILE__);
  347. $rm->query('ROLLBACK');
  348. return false;
  349. }
  350. $rm->query('COMMIT');
  351. $cookieval = $rm->user_id . ':' . $rm->code;
  352. common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
  353. common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
  354. return true;
  355. }
  356. function common_remembered_user()
  357. {
  358. $user = null;
  359. $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
  360. if (!$packed) {
  361. return null;
  362. }
  363. list($id, $code) = explode(':', $packed);
  364. if (!$id || !$code) {
  365. common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
  366. common_forgetme();
  367. return null;
  368. }
  369. $rm = Remember_me::getKV('code', $code);
  370. if (!$rm) {
  371. common_log(LOG_WARNING, 'No such remember code: ' . $code);
  372. common_forgetme();
  373. return null;
  374. }
  375. if ($rm->user_id != $id) {
  376. common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
  377. common_forgetme();
  378. return null;
  379. }
  380. $user = User::getKV('id', $rm->user_id);
  381. if (!$user instanceof User) {
  382. common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
  383. common_forgetme();
  384. return null;
  385. }
  386. // successful!
  387. $result = $rm->delete();
  388. if (!$result) {
  389. common_log_db_error($rm, 'DELETE', __FILE__);
  390. common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
  391. common_forgetme();
  392. return null;
  393. }
  394. common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
  395. common_set_user($user);
  396. common_real_login(false);
  397. // We issue a new cookie, so they can log in
  398. // automatically again after this session
  399. common_rememberme($user);
  400. return $user;
  401. }
  402. /**
  403. * must be called with a valid user!
  404. */
  405. function common_forgetme()
  406. {
  407. common_set_cookie(REMEMBERME, '', 0);
  408. }
  409. /**
  410. * Who is the current user?
  411. */
  412. function common_current_user()
  413. {
  414. global $_cur;
  415. if (!_have_config()) {
  416. return null;
  417. }
  418. if ($_cur === false) {
  419. if (isset($_COOKIE[session_name()]) || isset($_GET[session_name()])
  420. || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
  421. common_ensure_session();
  422. $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
  423. if ($id) {
  424. $user = User::getKV('id', $id);
  425. if ($user instanceof User) {
  426. $_cur = $user;
  427. return $_cur;
  428. }
  429. }
  430. }
  431. // that didn't work; try to remember; will init $_cur to null on failure
  432. $_cur = common_remembered_user();
  433. if ($_cur) {
  434. // XXX: Is this necessary?
  435. $_SESSION['userid'] = $_cur->id;
  436. }
  437. }
  438. return $_cur;
  439. }
  440. /**
  441. * Logins that are 'remembered' aren't 'real' -- they're subject to
  442. * cookie-stealing. So, we don't let them do certain things. New reg,
  443. * OpenID, and password logins _are_ real.
  444. */
  445. function common_real_login($real=true)
  446. {
  447. common_ensure_session();
  448. $_SESSION['real_login'] = $real;
  449. }
  450. function common_is_real_login()
  451. {
  452. return common_logged_in() && $_SESSION['real_login'];
  453. }
  454. /**
  455. * Get a hash portion for HTTP caching Etags and such including
  456. * info on the current user's session. If login/logout state changes,
  457. * or we've changed accounts, or we've renamed the current user,
  458. * we'll get a new hash value.
  459. *
  460. * This should not be considered secure information.
  461. *
  462. * @param User $user (optional; uses common_current_user() if left out)
  463. * @return string
  464. */
  465. function common_user_cache_hash($user=false)
  466. {
  467. if ($user === false) {
  468. $user = common_current_user();
  469. }
  470. if ($user) {
  471. return crc32($user->id . ':' . $user->nickname);
  472. } else {
  473. return '0';
  474. }
  475. }
  476. /**
  477. * get canonical version of nickname for comparison
  478. *
  479. * @param string $nickname
  480. * @return string
  481. *
  482. * @throws NicknameException on invalid input
  483. * @deprecated call Nickname::normalize() directly.
  484. */
  485. function common_canonical_nickname($nickname)
  486. {
  487. return Nickname::normalize($nickname);
  488. }
  489. /**
  490. * get canonical version of email for comparison
  491. *
  492. * @fixme actually normalize
  493. * @fixme reject invalid input
  494. *
  495. * @param string $email
  496. * @return string
  497. */
  498. function common_canonical_email($email)
  499. {
  500. // XXX: canonicalize UTF-8
  501. // XXX: lcase the domain part
  502. return $email;
  503. }
  504. function common_to_alphanumeric($str)
  505. {
  506. $filtered = preg_replace('/[^A-Za-z0-9]\s*/', '', $str);
  507. if (strlen($filtered) < 1) {
  508. throw new Exception('Filtered string was zero-length.');
  509. }
  510. return $filtered;
  511. }
  512. function common_purify($html, array $args=[])
  513. {
  514. $cfg = \HTMLPurifier_Config::createDefault();
  515. /**
  516. * rel values that should be avoided since they can be used to infer
  517. * information about the _current_ page, not the h-entry:
  518. *
  519. * directory, home, license, payment
  520. *
  521. * Source: http://microformats.org/wiki/rel
  522. */
  523. $cfg->set('Attr.AllowedRel', ['bookmark', 'enclosure', 'nofollow', 'tag', 'noreferrer']);
  524. $cfg->set('HTML.ForbiddenAttributes', ['style']); // id, on* etc. are already filtered by default
  525. $cfg->set('URI.AllowedSchemes', array_fill_keys(common_url_schemes(), true));
  526. if (isset($args['URI.Base'])) {
  527. $cfg->set('URI.Base', $args['URI.Base']); // if null this is like unsetting it I presume
  528. $cfg->set('URI.MakeAbsolute', !is_null($args['URI.Base'])); // if we have a URI base, convert relative URLs to absolute ones.
  529. }
  530. if (common_config('cache', 'dir')) {
  531. $cfg->set('Cache.SerializerPath', common_config('cache', 'dir'));
  532. }
  533. // if you don't want to use the default cache dir for htmlpurifier, set it specifically as $config['htmlpurifier']['Cache.SerializerPath'] = '/tmp'; or something.
  534. foreach (common_config('htmlpurifier') as $key=>$val) {
  535. $cfg->set($key, $val);
  536. }
  537. // Remove more elements than what the default filter removes, default in GNU social are remotely
  538. // linked resources such as img, video, audio
  539. $forbiddenElements = [];
  540. foreach (common_config('htmlfilter') as $tag=>$filter) {
  541. if ($filter === true) {
  542. $forbiddenElements[] = $tag;
  543. }
  544. }
  545. $cfg->set('HTML.ForbiddenElements', $forbiddenElements);
  546. $html = common_remove_unicode_formatting($html);
  547. $purifier = new HTMLPurifier($cfg);
  548. $purified = $purifier->purify($html);
  549. Event::handle('EndCommonPurify', [&$purified, $html]);
  550. return $purified;
  551. }
  552. function common_remove_unicode_formatting($text)
  553. {
  554. // Strip Unicode text formatting/direction codes
  555. // this is pretty dangerous for visualisation of text and can be used for mischief
  556. return preg_replace('/[\\x{200b}-\\x{200f}\\x{202a}-\\x{202e}]/u', '', $text);
  557. }
  558. /**
  559. * Partial notice markup rendering step: build links to !group references.
  560. *
  561. * @param string $text partially rendered HTML
  562. * @param Profile $author the Profile that is composing the current notice
  563. * @param Notice $parent the Notice this is sent in reply to, if any
  564. * @return string partially rendered HTML
  565. */
  566. function common_render_content($text, Profile $author, Notice $parent=null)
  567. {
  568. $text = common_render_text($text);
  569. $text = common_linkify_mentions($text, $author, $parent);
  570. return $text;
  571. }
  572. /**
  573. * Finds @-mentions within the partially-rendered text section and
  574. * turns them into live links.
  575. *
  576. * Should generally not be called except from common_render_content().
  577. *
  578. * @param string $text partially-rendered HTML
  579. * @param Profile $author the Profile that is composing the current notice
  580. * @param Notice $parent the Notice this is sent in reply to, if any
  581. * @return string partially-rendered HTML
  582. */
  583. function common_linkify_mentions($text, Profile $author, Notice $parent=null)
  584. {
  585. $mentions = common_find_mentions($text, $author, $parent);
  586. // We need to go through in reverse order by position,
  587. // so our positions stay valid despite our fudging with the
  588. // string!
  589. $points = [];
  590. foreach ($mentions as $mention) {
  591. $points[$mention['position']] = $mention;
  592. }
  593. krsort($points);
  594. foreach ($points as $position => $mention) {
  595. $linkText = common_linkify_mention($mention);
  596. $text = substr_replace($text, $linkText, $position, $mention['length']);
  597. }
  598. return $text;
  599. }
  600. function common_linkify_mention(array $mention)
  601. {
  602. $output = null;
  603. if (Event::handle('StartLinkifyMention', [$mention, &$output])) {
  604. $xs = new XMLStringer(false);
  605. $attrs = ['href' => $mention['url'],
  606. 'class' => 'h-card u-url p-nickname '.$mention['type']];
  607. if (!empty($mention['title'])) {
  608. $attrs['title'] = $mention['title'];
  609. }
  610. $xs->element('a', $attrs, $mention['text']);
  611. $output = $xs->getString();
  612. Event::handle('EndLinkifyMention', [$mention, &$output]);
  613. }
  614. return $output;
  615. }
  616. function common_get_attentions($text, Profile $sender, Notice $parent=null)
  617. {
  618. $mentions = common_find_mentions($text, $sender, $parent);
  619. $atts = [];
  620. foreach ($mentions as $mention) {
  621. foreach ($mention['mentioned'] as $mentioned) {
  622. $atts[$mentioned->getUri()] = $mentioned->getObjectType();
  623. }
  624. }
  625. if ($parent instanceof Notice) {
  626. $parentAuthor = $parent->getProfile();
  627. // afaik groups can't be authors
  628. $atts[$parentAuthor->getUri()] = ActivityObject::PERSON;
  629. }
  630. return $atts;
  631. }
  632. /**
  633. * Find @-mentions in the given text, using the given notice object as context.
  634. * References will be resolved with common_relative_profile() against the user
  635. * who posted the notice.
  636. *
  637. * Note the return data format is internal, to be used for building links and
  638. * such. Should not be used directly; rather, call common_linkify_mentions().
  639. *
  640. * @param string $text
  641. * @param Profile $sender the Profile that is sending the current text
  642. * @param Notice $parent the Notice this text is in reply to, if any
  643. *
  644. * @return array
  645. *
  646. * @access private
  647. */
  648. function common_find_mentions($text, Profile $sender, Notice $parent=null)
  649. {
  650. $mentions = [];
  651. if (Event::handle('StartFindMentions', [$sender, $text, &$mentions])) {
  652. // Get the context of the original notice, if any
  653. $origMentions = [];
  654. // Does it have a parent notice for context?
  655. if ($parent instanceof Notice) {
  656. foreach ($parent->getAttentionProfiles() as $repliedTo) {
  657. if (!$repliedTo->isPerson()) {
  658. continue;
  659. }
  660. $origMentions[$repliedTo->id] = $repliedTo;
  661. }
  662. }
  663. $matches = common_find_mentions_raw($text, '@');
  664. foreach ($matches as $match) {
  665. try {
  666. $nickname = Nickname::normalize($match[0]);
  667. } catch (NicknameException $e) {
  668. // Bogus match? Drop it.
  669. continue;
  670. }
  671. // primarily mention the profiles mentioned in the parent
  672. $mention_found_in_origMentions = false;
  673. foreach ($origMentions as $origMentionsId=>$origMention) {
  674. if ($origMention->getNickname() == $nickname) {
  675. $mention_found_in_origMentions = $origMention;
  676. // don't mention same twice! the parent might have mentioned
  677. // two users with same nickname on different instances
  678. unset($origMentions[$origMentionsId]);
  679. break;
  680. }
  681. }
  682. // Try to get a profile for this nickname.
  683. // Start with parents mentions, then go to parents sender context
  684. if ($mention_found_in_origMentions) {
  685. $mentioned = $mention_found_in_origMentions;
  686. } elseif ($parent instanceof Notice && $parent->getProfile()->getNickname() === $nickname) {
  687. $mentioned = $parent->getProfile();
  688. } else {
  689. // sets to null if no match
  690. $mentioned = common_relative_profile($sender, $nickname);
  691. }
  692. if ($mentioned instanceof Profile) {
  693. try {
  694. $url = $mentioned->getUri(); // prefer the URI as URL, if it is one.
  695. if (!common_valid_http_url($url)) {
  696. $url = $mentioned->getUrl();
  697. }
  698. } catch (InvalidUrlException $e) {
  699. $url = common_local_url('userbyid', ['id' => $mentioned->getID()]);
  700. }
  701. $mention = ['mentioned' => [$mentioned],
  702. 'type' => 'mention',
  703. 'text' => $match[0],
  704. 'position' => $match[1],
  705. 'length' => mb_strlen($match[0]),
  706. 'title' => $mentioned->getFullname(),
  707. 'url' => $url];
  708. $mentions[] = $mention;
  709. }
  710. }
  711. // @#tag => mention of all subscriptions tagged 'tag'
  712. preg_match_all(
  713. '/'.Nickname::BEFORE_MENTIONS.'@#([\pL\pN_\-\.]{1,64})/',
  714. $text,
  715. $hmatches,
  716. PREG_OFFSET_CAPTURE
  717. );
  718. foreach ($hmatches[1] as $hmatch) {
  719. $tag = common_canonical_tag($hmatch[0]);
  720. $plist = Profile_list::getByTaggerAndTag($sender->getID(), $tag);
  721. if (!$plist instanceof Profile_list || $plist->private) {
  722. continue;
  723. }
  724. $tagged = $sender->getTaggedSubscribers($tag);
  725. $url = common_local_url(
  726. 'showprofiletag',
  727. ['nickname' => $sender->getNickname(),
  728. 'tag' => $tag]
  729. );
  730. $mentions[] = ['mentioned' => $tagged,
  731. 'type' => 'list',
  732. 'text' => $hmatch[0],
  733. 'position' => $hmatch[1],
  734. 'length' => mb_strlen($hmatch[0]),
  735. 'url' => $url];
  736. }
  737. $hmatches = common_find_mentions_raw($text, '!');
  738. foreach ($hmatches as $hmatch) {
  739. $nickname = Nickname::normalize($hmatch[0]);
  740. $group = User_group::getForNickname($nickname, $sender);
  741. if (!$group instanceof User_group || !$sender->isMember($group)) {
  742. continue;
  743. }
  744. $profile = $group->getProfile();
  745. $mentions[] = ['mentioned' => [$profile],
  746. 'type' => 'group',
  747. 'text' => $hmatch[0],
  748. 'position' => $hmatch[1],
  749. 'length' => mb_strlen($hmatch[0]),
  750. 'url' => $group->permalink(),
  751. 'title' => $group->getFancyName()];
  752. }
  753. Event::handle('EndFindMentions', [$sender, $text, &$mentions]);
  754. }
  755. return $mentions;
  756. }
  757. /**
  758. * Does the actual regex pulls to find @-mentions in text.
  759. * Should generally not be called directly; for use in common_find_mentions.
  760. *
  761. * @param string $text
  762. * @param string $preMention Character(s) that signals a mention ('@', '!'...)
  763. * @return array of PCRE match arrays
  764. */
  765. function common_find_mentions_raw($text, $preMention='@')
  766. {
  767. $tmatches = [];
  768. preg_match_all(
  769. '/^T (' . Nickname::DISPLAY_FMT . ') /',
  770. $text,
  771. $tmatches,
  772. PREG_OFFSET_CAPTURE
  773. );
  774. $atmatches = [];
  775. // the regexp's "(?!\@)" makes sure it doesn't matches the single "@remote" in "@remote@server.com"
  776. preg_match_all(
  777. '/'.Nickname::BEFORE_MENTIONS.preg_quote($preMention, '/').'(' . Nickname::DISPLAY_FMT . ')\b(?!\@)/',
  778. $text,
  779. $atmatches,
  780. PREG_OFFSET_CAPTURE
  781. );
  782. $matches = array_merge($tmatches[1], $atmatches[1]);
  783. return $matches;
  784. }
  785. function common_render_text($text)
  786. {
  787. $text = common_remove_unicode_formatting($text);
  788. $text = nl2br(htmlspecialchars($text));
  789. $text = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $text);
  790. $text = common_replace_urls_callback($text, 'common_linkify');
  791. $text = preg_replace_callback(
  792. '/(^|\&quot\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/u',
  793. function ($m) {
  794. return "{$m[1]}#".common_tag_link($m[2]);
  795. },
  796. $text
  797. );
  798. // XXX: machine tags
  799. return $text;
  800. }
  801. define('_URL_SCHEME_COLON_DOUBLE_SLASH', 1);
  802. define('_URL_SCHEME_SINGLE_COLON', 2);
  803. define('_URL_SCHEME_NO_DOMAIN', 4);
  804. define('_URL_SCHEME_COLON_COORDINATES', 8);
  805. function common_url_schemes($filter = null)
  806. {
  807. // TODO: move these to $config
  808. $schemes = ['http' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  809. 'https' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  810. 'ftp' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  811. 'ftps' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  812. 'mms' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  813. 'rtsp' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  814. 'gopher' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  815. 'news' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  816. 'nntp' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  817. 'telnet' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  818. 'wais' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  819. 'file' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  820. 'prospero' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  821. 'webcal' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  822. 'irc' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  823. 'ircs' => _URL_SCHEME_COLON_DOUBLE_SLASH,
  824. 'aim' => _URL_SCHEME_SINGLE_COLON,
  825. 'bitcoin' => _URL_SCHEME_SINGLE_COLON,
  826. 'fax' => _URL_SCHEME_SINGLE_COLON,
  827. 'jabber' => _URL_SCHEME_SINGLE_COLON,
  828. 'mailto' => _URL_SCHEME_SINGLE_COLON,
  829. 'tel' => _URL_SCHEME_SINGLE_COLON,
  830. 'xmpp' => _URL_SCHEME_SINGLE_COLON,
  831. 'magnet' => _URL_SCHEME_NO_DOMAIN,
  832. 'geo' => _URL_SCHEME_COLON_COORDINATES,];
  833. return array_keys(
  834. array_filter(
  835. $schemes,
  836. function ($scheme) use ($filter) {
  837. return is_null($filter) || ($scheme & $filter);
  838. }
  839. )
  840. );
  841. }
  842. /**
  843. * Find links in the given text and pass them to the given callback function.
  844. *
  845. * @param string $text
  846. * @param function($text, $arg) $callback: return replacement text
  847. * @param mixed $arg: optional argument will be passed on to the callback
  848. */
  849. function common_replace_urls_callback($text, $callback, $arg = null)
  850. {
  851. $geouri_labeltext_regex = '\pN\pL\-';
  852. $geouri_mark_regex = '\-\_\.\!\~\*\\\'\(\)'; // the \\\' is really pretty
  853. $geouri_unreserved_regex = '\pN\pL' . $geouri_mark_regex;
  854. $geouri_punreserved_regex = '\[\]\:\&\+\$';
  855. $geouri_pctencoded_regex = '(?:\%[0-9a-fA-F][0-9a-fA-F])';
  856. $geouri_paramchar_regex = $geouri_unreserved_regex . $geouri_punreserved_regex; //FIXME: add $geouri_pctencoded_regex here so it works
  857. // Start off with a regex
  858. $regex = '#'.
  859. '(?:^|[\s\<\>\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'.
  860. '('.
  861. '(?:'.
  862. '(?:'. //Known protocols
  863. '(?:'.
  864. '(?:(?:' . implode('|', common_url_schemes(_URL_SCHEME_COLON_DOUBLE_SLASH)) . ')://)'.
  865. '|'.
  866. '(?:(?:' . implode('|', common_url_schemes(_URL_SCHEME_SINGLE_COLON)) . '):)'.
  867. ')'.
  868. '(?:[\pN\pL\-\_\+\%\~]+(?::[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
  869. '(?:'.
  870. '(?:'.
  871. '\[[\pN\pL\-\_\:\.]+(?<![\.\:])\]'. //[dns]
  872. ')|(?:'.
  873. '[\pN\pL\-\_\:\.]+(?<![\.\:])'. //dns
  874. ')'.
  875. ')'.
  876. ')'.
  877. '|(?:'.
  878. '(?:' . implode('|', common_url_schemes(_URL_SCHEME_COLON_COORDINATES)) . '):'.
  879. // There's an order that must be followed here too, if ;crs= is used, it must precede ;u=
  880. // Also 'crsp' (;crs=$crsp) must match $geouri_labeltext_regex
  881. // Also 'uval' (;u=$uval) must be a pnum: \-?[0-9]+
  882. '(?:'.
  883. '(?:[0-9]+(?:\.[0-9]+)?(?:\,[0-9]+(?:\.[0-9]+)?){1,2})'. // 1(.23)?(,4(.56)){1,2}
  884. '(?:\;(?:['.$geouri_labeltext_regex.']+)(?:\=['.$geouri_paramchar_regex.']+)*)*'.
  885. ')'.
  886. ')'.
  887. // URLs without domain name, like magnet:?xt=...
  888. '|(?:(?:' . implode('|', common_url_schemes(_URL_SCHEME_NO_DOMAIN)) . '):(?=\?))'. // zero-length lookahead requires ? after :
  889. (common_config('linkify', 'bare_ipv4') // Convert IPv4 addresses to hyperlinks
  890. ? '|(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)'
  891. : '').
  892. (common_config('linkify', 'bare_ipv6') // Convert IPv6 addresses to hyperlinks
  893. ? '|(?:'. //IPv6
  894. '\[?(?:(?:(?:[0-9A-Fa-f]{1,4}:){7}(?:(?:[0-9A-Fa-f]{1,4})|:))|(?:(?:[0-9A-Fa-f]{1,4}:){6}(?::|(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})|(?::[0-9A-Fa-f]{1,4})))|(?:(?:[0-9A-Fa-f]{1,4}:){5}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:){4}(?::[0-9A-Fa-f]{1,4}){0,1}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:){3}(?::[0-9A-Fa-f]{1,4}){0,2}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:){2}(?::[0-9A-Fa-f]{1,4}){0,3}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:)(?::[0-9A-Fa-f]{1,4}){0,4}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?::(?::[0-9A-Fa-f]{1,4}){0,5}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})))\]?(?<!:)'.
  895. ')'
  896. : '').
  897. (common_config('linkify', 'bare_domains')
  898. ? '|(?:'. //DNS
  899. '(?:[\pN\pL\-\_\+\%\~]+(?:\:[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
  900. '[\pN\pL\-\_]+(?:\.[\pN\pL\-\_]+)*\.'.
  901. //tld list from http://data.iana.org/TLD/tlds-alpha-by-domain.txt, also added local, loc, and onion
  902. '(?:AC|AD|AE|AERO|AF|AG|AI|AL|AM|AN|AO|AQ|AR|ARPA|AS|ASIA|AT|AU|AW|AX|AZ|BA|BB|BD|BE|BF|BG|BH|BI|BIZ|BJ|BM|BN|BO|BR|BS|BT|BV|BW|BY|BZ|CA|CAT|CC|CD|CF|CG|CH|CI|CK|CL|CM|CN|CO|COM|COOP|CR|CU|CV|CX|CY|CZ|DE|DJ|DK|DM|DO|DZ|EC|EDU|EE|EG|ER|ES|ET|EU|FI|FJ|FK|FM|FO|FR|GA|GB|GD|GE|GF|GG|GH|GI|GL|GM|GN|GOV|GP|GQ|GR|GS|GT|GU|GW|GY|HK|HM|HN|HR|HT|HU|ID|IE|IL|IM|IN|INFO|INT|IO|IQ|IR|IS|IT|JE|JM|JO|JOBS|JP|KE|KG|KH|KI|KM|KN|KP|KR|KW|KY|KZ|LA|LB|LC|LI|LK|LR|LS|LT|LU|LV|LY|MA|MC|MD|ME|MG|MH|MIL|MK|ML|MM|MN|MO|MOBI|MP|MQ|MR|MS|MT|MU|MUSEUM|MV|MW|MX|MY|MZ|NA|NAME|NC|NE|NET|NF|NG|NI|NL|NO|NP|NR|NU|NZ|OM|ORG|PA|PE|PF|PG|PH|PK|PL|PM|PN|PR|PRO|PS|PT|PW|PY|QA|RE|RO|RS|RU|RW|SA|SB|SC|SD|SE|SG|SH|SI|SJ|SK|SL|SM|SN|SO|SR|ST|SU|SV|SY|SZ|TC|TD|TEL|TF|TG|TH|TJ|TK|TL|TM|TN|TO|TP|TR|TRAVEL|TT|TV|TW|TZ|UA|UG|UK|US|UY|UZ|VA|VC|VE|VG|VI|VN|VU|WF|WS|XN--0ZWM56D|测试|XN--11B5BS3A9AJ6G|परीक्षा|XN--80AKHBYKNJ4F|испытание|XN--9T4B11YI5A|테스트|XN--DEBA0AD|טעסט|XN--G6W251D|測試|XN--HGBK6AJ7F53BBA|آزمایشی|XN--HLCJ6AYA9ESC7A|பரிட்சை|XN--JXALPDLP|δοκιμή|XN--KGBECHTV|إختبار|XN--ZCKZAH|テスト|YE|YT|YU|ZA|ZM|ZONE|ZW|local|loc|onion)'.
  903. ')(?![\pN\pL\-\_])'
  904. : '') . // if common_config('linkify', 'bare_domains') is false, don't add anything here
  905. ')'.
  906. '(?:'.
  907. '(?:\:\d+)?'. //:port
  908. '(?:/[' . URL_REGEX_VALID_PATH_CHARS . ']*)?'. // path
  909. '(?:\?[' . URL_REGEX_VALID_QSTRING_CHARS . ']*)?'. // ?query string
  910. '(?:\#[' . URL_REGEX_VALID_FRAGMENT_CHARS . ']*)?'. // #fragment
  911. ')(?<!['. URL_REGEX_EXCLUDED_END_CHARS .'])'.
  912. ')'.
  913. '#ixu';
  914. //preg_match_all($regex,$text,$matches);
  915. //print_r($matches);
  916. return preg_replace_callback($regex, callableLeftCurry('callback_helper', $callback, $arg), $text);
  917. }
  918. /**
  919. * Intermediate callback for common_replace_links(), helps resolve some
  920. * ambiguous link forms before passing on to the final callback.
  921. *
  922. * @param array $matches
  923. * @param callable $callback
  924. * @param mixed $arg optional argument to pass on as second param to callback
  925. * @return string
  926. *
  927. * @access private
  928. */
  929. function callback_helper($matches, $callback, $arg = null)
  930. {
  931. $url = $matches[1];
  932. $left = strpos($matches[0], $url);
  933. $right = $left + strlen($url);
  934. $groupSymbolSets=[
  935. [
  936. 'left'=>'(',
  937. 'right'=>')'
  938. ],
  939. [
  940. 'left'=>'[',
  941. 'right'=>']'
  942. ],
  943. [
  944. 'left'=>'{',
  945. 'right'=>'}'
  946. ],
  947. [
  948. 'left'=>'<',
  949. 'right'=>'>'
  950. ]
  951. ];
  952. $cannotEndWith = ['.','?',',','#'];
  953. do {
  954. $original_url = $url;
  955. foreach ($groupSymbolSets as $groupSymbolSet) {
  956. if (substr($url, -1) == $groupSymbolSet['right']) {
  957. $group_left_count = substr_count($url, $groupSymbolSet['left']);
  958. $group_right_count = substr_count($url, $groupSymbolSet['right']);
  959. if ($group_left_count < $group_right_count) {
  960. $right -= 1;
  961. $url = substr($url, 0, -1);
  962. }
  963. }
  964. }
  965. if (in_array(substr($url, -1), $cannotEndWith)) {
  966. $right -= 1;
  967. $url=substr($url, 0, -1);
  968. }
  969. } while ($original_url != $url);
  970. $result = call_user_func_array($callback, [$url, $arg]);
  971. return substr($matches[0], 0, $left) . $result . substr($matches[0], $right);
  972. }
  973. require_once INSTALLDIR . "/lib/callableleftcurry.php";
  974. function common_linkify($url)
  975. {
  976. // It comes in special'd, so we unspecial it before passing to the stringifying
  977. // functions
  978. $url = htmlspecialchars_decode($url);
  979. if (strpos($url, '@') !== false && strpos($url, ':') === false && Validate::email($url)) {
  980. //url is an email address without the mailto: protocol
  981. $canon = "mailto:$url";
  982. $longurl = "mailto:$url";
  983. } else {
  984. $canon = File_redirection::_canonUrl($url);
  985. $longurl_data = File_redirection::where($canon, common_config('attachments', 'process_links'));
  986. if (isset($longurl_data->redir_url)) {
  987. $longurl = $longurl_data->redir_url;
  988. } else {
  989. // e.g. local files
  990. $longurl = $longurl_data->url;
  991. }
  992. }
  993. $attrs = ['href' => $longurl, 'title' => $longurl];
  994. $is_attachment = false;
  995. $attachment_id = null;
  996. $has_thumb = false;
  997. // Check to see whether this is a known "attachment" URL.
  998. try {
  999. $f = File::getByUrl($longurl);
  1000. } catch (NoResultException $e) {
  1001. if (common_config('attachments', 'process_links')) {
  1002. // XXX: this writes to the database. :<
  1003. try {
  1004. $f = File::processNew($longurl);
  1005. } catch (ServerException $e) {
  1006. $f = null;
  1007. }
  1008. }
  1009. }
  1010. if ($f instanceof File) {
  1011. try {
  1012. $enclosure = $f->getEnclosure();
  1013. $is_attachment = true;
  1014. $attachment_id = $f->id;
  1015. $thumb = File_thumbnail::getKV('file_id', $f->id);
  1016. $has_thumb = ($thumb instanceof File_thumbnail);
  1017. } catch (ServerException $e) {
  1018. // There was not enough metadata available
  1019. }
  1020. }
  1021. // Whether to nofollow
  1022. $nf = common_config('nofollow', 'external');
  1023. if ($nf == 'never') {
  1024. $attrs['rel'] = 'external';
  1025. } else {
  1026. $attrs['rel'] = 'nofollow external';
  1027. }
  1028. // Add clippy
  1029. if ($is_attachment) {
  1030. $attrs['class'] = 'attachment';
  1031. if ($has_thumb) {
  1032. $attrs['class'] = 'attachment thumbnail';
  1033. }
  1034. $attrs['id'] = "attachment-{$attachment_id}";
  1035. $attrs['rel'] .= ' noreferrer';
  1036. }
  1037. return XMLStringer::estring('a', $attrs, $url);
  1038. }
  1039. /**
  1040. * Find and shorten links in a given chunk of text if it's longer than the
  1041. * configured notice content limit (or unconditionally).
  1042. *
  1043. * Side effects: may save file and file_redirection records for referenced URLs.
  1044. *
  1045. * Pass the $user option or call $user->shortenLinks($text) to ensure the proper
  1046. * user's options are used; otherwise the current web session user's setitngs
  1047. * will be used or ur1.ca if there is no active web login.
  1048. *
  1049. * @param string $text
  1050. * @param boolean $always (optional)
  1051. * @param User $user (optional)
  1052. *
  1053. * @return string
  1054. */
  1055. function common_shorten_links($text, $always = false, User $user=null)
  1056. {
  1057. if ($user === null) {
  1058. $user = common_current_user();
  1059. }
  1060. $maxLength = User_urlshortener_prefs::maxNoticeLength($user);
  1061. if ($always || ($maxLength != -1 && mb_strlen($text) > $maxLength)) {
  1062. return common_replace_urls_callback($text, ['File_redirection', 'forceShort'], $user);
  1063. } else {
  1064. return common_replace_urls_callback($text, ['File_redirection', 'makeShort'], $user);
  1065. }
  1066. }
  1067. /**
  1068. * Very basic stripping of invalid UTF-8 input text.
  1069. *
  1070. * @param string $str
  1071. * @return mixed string or null if invalid input
  1072. *
  1073. * @todo ideally we should drop bad chars, and maybe do some of the checks
  1074. * from common_xml_safe_str. But we can't strip newlines, etc.
  1075. * @todo Unicode normalization might also be useful, but not needed now.
  1076. */
  1077. function common_validate_utf8($str)
  1078. {
  1079. // preg_replace will return NULL on invalid UTF-8 input.
  1080. //
  1081. // Note: empty regex //u also caused NULL return on some
  1082. // production machines, but none of our test machines.
  1083. //
  1084. // This should be replaced with a more reliable check.
  1085. return preg_replace('/\x00/u', '', $str);
  1086. }
  1087. /**
  1088. * Make sure an arbitrary string is safe for output in XML as a single line.
  1089. *
  1090. * @param string $str
  1091. * @return string
  1092. */
  1093. function common_xml_safe_str($str)
  1094. {
  1095. // Replace common eol and extra whitespace input chars
  1096. $unWelcome = ["\t", // tab
  1097. "\n", // newline
  1098. "\r", // cr
  1099. "\0", // null byte eos
  1100. "\x0B"]; // vertical tab
  1101. $replacement = [' ', // single space
  1102. ' ',
  1103. '', // nothing
  1104. '',
  1105. ' '];
  1106. $str = str_replace($unWelcome, $replacement, $str);
  1107. // Neutralize any additional control codes and UTF-16 surrogates
  1108. // (Twitter uses '*')
  1109. return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
  1110. }
  1111. function common_slugify($str)
  1112. {
  1113. // php5-intl is highly recommended...
  1114. if (!function_exists('transliterator_transliterate')) {
  1115. $str = preg_replace('/[^\pL\pN]/u', '', $str);
  1116. $str = mb_convert_case($str, MB_CASE_LOWER, 'UTF-8');
  1117. $str = substr($str, 0, 64);
  1118. return $str;
  1119. }
  1120. $str = transliterator_transliterate('Any-Latin;' . // any charset to latin compatible
  1121. 'NFD;' . // decompose
  1122. '[:Nonspacing Mark:] Remove;' . // remove nonspacing marks (accents etc.)
  1123. 'NFC;' . // composite again
  1124. '[:Punctuation:] Remove;' . // remove punctuation (.,¿? etc.)
  1125. 'Lower();' . // turn into lowercase
  1126. 'Latin-ASCII;', // get ASCII equivalents (ð to d for example)
  1127. $str);
  1128. return preg_replace('/[^\pL\pN]/', '', $str);
  1129. }
  1130. function common_tag_link($tag)
  1131. {
  1132. $canonical = common_canonical_tag($tag);
  1133. if (common_config('singleuser', 'enabled')) {
  1134. // regular TagAction isn't set up in 1user mode
  1135. $nickname = User::singleUserNickname();
  1136. $url = common_local_url('showstream', ['nickname' => $nickname, 'tag' => $canonical]);
  1137. } else {
  1138. $url = common_local_url('tag', ['tag' => $canonical]);
  1139. }
  1140. $xs = new XMLStringer();
  1141. $xs->elementStart('span', 'tag');
  1142. $xs->element('a', ['href' => $url, 'rel' => 'tag'], $tag);
  1143. $xs->elementEnd('span');
  1144. return $xs->getString();
  1145. }
  1146. function common_canonical_tag($tag)
  1147. {
  1148. $tag = common_slugify($tag);
  1149. $tag = substr($tag, 0, 64);
  1150. return $tag;
  1151. }
  1152. function common_valid_profile_tag($str)
  1153. {
  1154. return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
  1155. }
  1156. /**
  1157. * Resolve an ambiguous profile nickname reference, checking in following order:
  1158. * - profiles that $sender subscribes to
  1159. * - profiles that subscribe to $sender
  1160. * - local user profiles
  1161. *
  1162. * WARNING: does not validate or normalize $nickname -- MUST BE PRE-VALIDATED
  1163. * OR THERE MAY BE A RISK OF SQL INJECTION ATTACKS. THIS FUNCTION DOES NOT
  1164. * ESCAPE SQL.
  1165. *
  1166. * @fixme validate input
  1167. * @fixme escape SQL
  1168. * @fixme fix or remove mystery third parameter
  1169. * @fixme is $sender a User or Profile?
  1170. *
  1171. * @param <type> $sender the user or profile in whose context we're looking
  1172. * @param string $nickname validated nickname of
  1173. * @param <type> $dt unused mystery parameter; in Notice reply-to handling a timestamp is passed.
  1174. *
  1175. * @return Profile or null
  1176. */
  1177. function common_relative_profile($sender, $nickname, $dt=null)
  1178. {
  1179. // Will throw exception on invalid input.
  1180. $nickname = Nickname::normalize($nickname);
  1181. // Try to find profiles this profile is subscribed to that have this nickname
  1182. $recipient = new Profile();
  1183. $recipient->whereAdd(
  1184. sprintf('id IN (SELECT subscribed FROM subscription WHERE subscriber = %d)', $sender->id),
  1185. 'AND'
  1186. );
  1187. $recipient->whereAdd("nickname = '" . $recipient->escape($nickname) . "'", 'AND');
  1188. if ($recipient->find(true)) {
  1189. // XXX: should probably differentiate between profiles with
  1190. // the same name by date of most recent update
  1191. return $recipient;
  1192. }
  1193. // Try to find profiles that listen to this profile and that have this nickname
  1194. $recipient = new Profile();
  1195. $recipient->whereAdd(
  1196. sprintf('id IN (SELECT subscriber FROM subscription WHERE subscribed = %d)', $sender->id),
  1197. 'AND'
  1198. );
  1199. $recipient->whereAdd("nickname = '" . $recipient->escape($nickname) . "'", 'AND');
  1200. if ($recipient->find(true)) {
  1201. // XXX: should probably differentiate between profiles with
  1202. // the same name by date of most recent update
  1203. return $recipient;
  1204. }
  1205. // If this is a local user, try to find a local user with that nickname.
  1206. $sender = User::getKV('id', $sender->id);
  1207. if ($sender instanceof User) {
  1208. $recipient_user = User::getKV('nickname', $nickname);
  1209. if ($recipient_user instanceof User) {
  1210. return $recipient_user->getProfile();
  1211. }
  1212. }
  1213. // Otherwise, no links. @messages from local users to remote users,
  1214. // or from remote users to other remote users, are just
  1215. // outside our ability to make intelligent guesses about
  1216. return null;
  1217. }
  1218. function common_local_url($action, $args=null, $params=null, $fragment=null, $addSession=true)
  1219. {
  1220. if (Event::handle('StartLocalURL', [&$action, &$params, &$fragment, &$addSession, &$url])) {
  1221. $r = Router::get();
  1222. $path = $r->build($action, $args, $params, $fragment);
  1223. $ssl = GNUsocial::useHTTPS();
  1224. if (common_config('site', 'fancy')) {
  1225. $url = common_path($path, $ssl, $addSession);
  1226. } else {
  1227. if (mb_strpos($path, '/index.php') === 0) {
  1228. $url = common_path($path, $ssl, $addSession);
  1229. } else {
  1230. $url = common_path('index.php/'.$path, $ssl, $addSession);
  1231. }
  1232. }
  1233. Event::handle('EndLocalURL', [&$action, &$params, &$fragment, &$addSession, &$url]);
  1234. }
  1235. return $url;
  1236. }
  1237. function common_path($relative, $ssl=false, $addSession=true)
  1238. {
  1239. $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
  1240. if ($ssl && GNUsocial::useHTTPS()) {
  1241. $proto = 'https';
  1242. if (is_string(common_config('site', 'sslserver')) &&
  1243. mb_strlen(common_config('site', 'sslserver')) > 0) {
  1244. $serverpart = common_config('site', 'sslserver');
  1245. } elseif (common_config('site', 'server')) {
  1246. $serverpart = common_config('site', 'server');
  1247. } else {
  1248. common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
  1249. }
  1250. } else {
  1251. $proto = 'http';
  1252. if (common_config('site', 'server')) {
  1253. $serverpart = common_config('site', 'server');
  1254. } else {
  1255. common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
  1256. }
  1257. }
  1258. if ($addSession) {
  1259. $relative = common_inject_session($relative, $serverpart);
  1260. }
  1261. return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
  1262. }
  1263. // FIXME: Maybe this should also be able to handle non-fancy URLs with index.php?p=...
  1264. function common_fake_local_fancy_url($url)
  1265. {
  1266. /**
  1267. * This is a hacky fix to make URIs generated with "index.php/" match against
  1268. * locally stored URIs without that. So for example if the remote site is looking
  1269. * up the webfinger for some user and for some reason knows about https://some.example/user/1
  1270. * but we locally store and report only https://some.example/index.php/user/1 then they would
  1271. * dismiss the profile for not having an identified alias.
  1272. *
  1273. * There are various live instances where these issues occur, for various reasons.
  1274. * Most of them being users fiddling with configuration while already having
  1275. * started federating (distributing the URI to other servers) or maybe manually
  1276. * editing the local database.
  1277. */
  1278. if (!preg_match(
  1279. // [1] protocol part, we can only rewrite http/https anyway.
  1280. '/^(https?:\/\/)' .
  1281. // [2] site name.
  1282. // FIXME: Dunno how this acts if we're aliasing ourselves with a .onion domain etc.
  1283. '('.preg_quote(common_config('site', 'server'), '/').')' .
  1284. // [3] site path, or if that is empty just '/' (to retain the /)
  1285. '('.preg_quote(common_config('site', 'path') ?: '/', '/').')' .
  1286. // [4] + [5] extract index.php (+ possible leading double /) and the rest of the URL separately.
  1287. '(\/?index\.php\/)(.*)$/',
  1288. $url,
  1289. $matches
  1290. )) {
  1291. // if preg_match failed to match
  1292. throw new Exception('No known change could be made to the URL.');
  1293. }
  1294. // now reconstruct the URL with everything except the "index.php/" part
  1295. $fancy_url = '';
  1296. foreach ([1,2,3,5] as $idx) {
  1297. $fancy_url .= $matches[$idx];
  1298. }
  1299. return $fancy_url;
  1300. }
  1301. // FIXME: Maybe this should also be able to handle non-fancy URLs with index.php?p=...
  1302. function common_fake_local_nonfancy_url($url)
  1303. {
  1304. /**
  1305. * This is a hacky fix to make URIs NOT generated with "index.php/" match against
  1306. * locally stored URIs WITH that. The reverse from the above.
  1307. *
  1308. * It will also "repair" index.php URLs with multiple / prepended. Like https://some.example///index.php/user/1
  1309. */
  1310. if (!preg_match(
  1311. // [1] protocol part, we can only rewrite http/https anyway.
  1312. '/^(https?:\/\/)' .
  1313. // [2] site name.
  1314. // FIXME: Dunno how this acts if we're aliasing ourselves with a .onion domain etc.
  1315. '('.preg_quote(common_config('site', 'server'), '/').')' .
  1316. // [3] site path, or if that is empty just '/' (to retain the /)
  1317. '('.preg_quote(common_config('site', 'path') ?: '/', '/').')' .
  1318. // [4] should be empty (might contain one or more / and then maybe also index.php). Will be overwritten.
  1319. // [5] will have the extracted actual URL part (besides site path)
  1320. '((?!index.php\/)\/*(?:index.php\/)?)(.*)$/',
  1321. $url,
  1322. $matches
  1323. )) {
  1324. // if preg_match failed to match
  1325. throw new Exception('No known change could be made to the URL.');
  1326. }
  1327. $matches[4] = 'index.php/'; // inject the index.php/ rewritethingy
  1328. // remove the first element, which is the full matching string
  1329. array_shift($matches);
  1330. return implode($matches);
  1331. }
  1332. function common_inject_session($url, $serverpart = null)
  1333. {
  1334. if (!common_have_session()) {
  1335. return $url;
  1336. }
  1337. if (empty($serverpart)) {
  1338. $serverpart = parse_url($url, PHP_URL_HOST);
  1339. }
  1340. $currentServer = (array_key_exists('HTTP_HOST', $_SERVER)) ? $_SERVER['HTTP_HOST'] : null;
  1341. // Are we pointing to another server (like an SSL server?)
  1342. if (!empty($currentServer) && 0 != strcasecmp($currentServer, $serverpart)) {
  1343. // Pass the session ID as a GET parameter
  1344. $sesspart = session_name() . '=' . session_id();
  1345. $i = strpos($url, '?');
  1346. if ($i === false) { // no GET params, just append
  1347. $url .= '?' . $sesspart;
  1348. } else {
  1349. $url = substr($url, 0, $i + 1).$sesspart.'&'.substr($url, $i + 1);
  1350. }
  1351. }
  1352. return $url;
  1353. }
  1354. function common_date_string($dt)
  1355. {
  1356. // XXX: do some sexy date formatting
  1357. // return date(DATE_RFC822, $dt);
  1358. $t = strtotime($dt);
  1359. $now = time();
  1360. $diff = $now - $t;
  1361. if ($now < $t) { // that shouldn't happen!
  1362. return common_exact_date($dt);
  1363. } elseif ($diff < 60) {
  1364. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1365. return _('a few seconds ago');
  1366. } elseif ($diff < 92) {
  1367. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1368. return _('about a minute ago');
  1369. } elseif ($diff < 3300) {
  1370. $minutes = round($diff/60);
  1371. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1372. return sprintf(_m('about one minute ago', 'about %d minutes ago', $minutes), $minutes);
  1373. } elseif ($diff < 5400) {
  1374. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1375. return _('about an hour ago');
  1376. } elseif ($diff < 22 * 3600) {
  1377. $hours = round($diff/3600);
  1378. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1379. return sprintf(_m('about one hour ago', 'about %d hours ago', $hours), $hours);
  1380. } elseif ($diff < 37 * 3600) {
  1381. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1382. return _('about a day ago');
  1383. } elseif ($diff < 24 * 24 * 3600) {
  1384. $days = round($diff/(24*3600));
  1385. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1386. return sprintf(_m('about one day ago', 'about %d days ago', $days), $days);
  1387. } elseif ($diff < 46 * 24 * 3600) {
  1388. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1389. return _('about a month ago');
  1390. } elseif ($diff < 330 * 24 * 3600) {
  1391. $months = round($diff/(30*24*3600));
  1392. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1393. return sprintf(_m('about one month ago', 'about %d months ago', $months), $months);
  1394. } elseif ($diff < 480 * 24 * 3600) {
  1395. // TRANS: Used in notices to indicate when the notice was made compared to now.
  1396. return _('about a year ago');
  1397. } else {
  1398. return common_exact_date($dt);
  1399. }
  1400. }
  1401. function common_exact_date($dt)
  1402. {
  1403. static $_utc;
  1404. static $_siteTz;
  1405. if (!$_utc) {
  1406. $_utc = new DateTimeZone('UTC');
  1407. $_siteTz = new DateTimeZone(common_timezone());
  1408. }
  1409. $dateStr = date('d F Y H:i:s', strtotime($dt));
  1410. $d = new DateTime($dateStr, $_utc);
  1411. $d->setTimezone($_siteTz);
  1412. // TRANS: Human-readable full date-time specification (formatting on http://php.net/date)
  1413. return $d->format(_('l, d-M-Y H:i:s T'));
  1414. }
  1415. function common_date_w3dtf($dt)
  1416. {
  1417. $dateStr = date('d F Y H:i:s', strtotime($dt));
  1418. $d = new DateTime($dateStr, new DateTimeZone('UTC'));
  1419. $d->setTimezone(new DateTimeZone(common_timezone()));
  1420. return $d->format(DATE_W3C);
  1421. }
  1422. function common_date_rfc2822($dt)
  1423. {
  1424. $dateStr = date('d F Y H:i:s', strtotime($dt));
  1425. $d = new DateTime($dateStr, new DateTimeZone('UTC'));
  1426. $d->setTimezone(new DateTimeZone(common_timezone()));
  1427. return $d->format('r');
  1428. }
  1429. function common_date_iso8601($dt)
  1430. {
  1431. $dateStr = date('d F Y H:i:s', strtotime($dt));
  1432. $d = new DateTime($dateStr, new DateTimeZone('UTC'));
  1433. $d->setTimezone(new DateTimeZone(common_timezone()));
  1434. return $d->format('c');
  1435. }
  1436. function common_sql_now()
  1437. {
  1438. return common_sql_date(time());
  1439. }
  1440. function common_sql_date($datetime)
  1441. {
  1442. return strftime('%Y-%m-%d %H:%M:%S', $datetime);
  1443. }
  1444. /**
  1445. * Return an SQL fragment to calculate an age-based weight from a given
  1446. * timestamp or datetime column.
  1447. *
  1448. * @param string $column name of field we're comparing against current time
  1449. * @param integer $dropoff divisor for age in seconds before exponentiation
  1450. * @return string SQL fragment
  1451. */
  1452. function common_sql_weight($column, $dropoff)
  1453. {
  1454. if (common_config('db', 'type') == 'pgsql') {
  1455. // PostgreSQL doesn't support timestampdiff function.
  1456. // @fixme will this use the right time zone?
  1457. // @fixme does this handle cross-year subtraction correctly?
  1458. return "sum(exp(-extract(epoch from (now() - $column)) / $dropoff))";
  1459. } else {
  1460. return "sum(exp(timestampdiff(second, utc_timestamp(), $column) / $dropoff))";
  1461. }
  1462. }
  1463. function common_redirect($url, $code=307)
  1464. {
  1465. static $status = [301 => "Moved Permanently",
  1466. 302 => "Found",
  1467. 303 => "See Other",
  1468. 307 => "Temporary Redirect"];
  1469. header('HTTP/1.1 '.$code.' '.$status[$code]);
  1470. header("Location: $url");
  1471. header("Connection: close");
  1472. $xo = new XMLOutputter();
  1473. $xo->startXML(
  1474. 'a',
  1475. '-//W3C//DTD XHTML 1.0 Strict//EN',
  1476. 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'
  1477. );
  1478. $xo->element('a', ['href' => $url], $url);
  1479. $xo->endXML();
  1480. exit;
  1481. }
  1482. // Stick the notice on the queue
  1483. function common_enqueue_notice($notice)
  1484. {
  1485. static $localTransports = ['ping'];
  1486. $transports = [];
  1487. if (common_config('sms', 'enabled')) {
  1488. $transports[] = 'sms';
  1489. }
  1490. if (Event::hasHandler('HandleQueuedNotice')) {
  1491. $transports[] = 'plugin';
  1492. }
  1493. // We can skip these for gatewayed notices.
  1494. if ($notice->isLocal()) {
  1495. $transports = array_merge($transports, $localTransports);
  1496. }
  1497. if (Event::handle('StartEnqueueNotice', [$notice, &$transports])) {
  1498. $qm = QueueManager::get();
  1499. foreach ($transports as $transport) {
  1500. $qm->enqueue($notice, $transport);
  1501. }
  1502. Event::handle('EndEnqueueNotice', [$notice, $transports]);
  1503. }
  1504. return true;
  1505. }
  1506. function common_profile_url($nickname)
  1507. {
  1508. return common_local_url(
  1509. 'showstream',
  1510. ['nickname' => $nickname],
  1511. null,
  1512. null,
  1513. false
  1514. );
  1515. }
  1516. /**
  1517. * Should make up a reasonable root URL
  1518. *
  1519. * @param bool $tls true or false to force TLS scheme, null to use server configuration
  1520. */
  1521. function common_root_url($tls=null)
  1522. {
  1523. if (is_null($tls)) {
  1524. $tls = GNUsocial::useHTTPS();
  1525. }
  1526. $url = common_path('', $tls, false);
  1527. $i = strpos($url, '?');
  1528. if ($i !== false) {
  1529. $url = substr($url, 0, $i);
  1530. }
  1531. return $url;
  1532. }
  1533. /**
  1534. * returns $bytes bytes of raw random data
  1535. */
  1536. function common_random_rawstr($bytes)
  1537. {
  1538. $rawstr = @file_exists('/dev/urandom')
  1539. ? common_urandom($bytes)
  1540. : common_mtrand($bytes);
  1541. return $rawstr;
  1542. }
  1543. /**
  1544. * returns $bytes bytes of random data as a hexadecimal string
  1545. */
  1546. function common_random_hexstr($bytes)
  1547. {
  1548. return bin2hex(random_bytes($bytes));
  1549. }
  1550. function common_urandom($bytes)
  1551. {
  1552. $h = fopen('/dev/urandom', 'rb');
  1553. // should not block
  1554. $src = fread($h, $bytes);
  1555. fclose($h);
  1556. return $src;
  1557. }
  1558. function common_mtrand($bytes)
  1559. {
  1560. $str = '';
  1561. for ($i = 0; $i < $bytes; $i++) {
  1562. $str .= chr(mt_rand(0, 255));
  1563. }
  1564. return $str;
  1565. }
  1566. /**
  1567. * Record the given URL as the return destination for a future
  1568. * form submission, to be read by common_get_returnto().
  1569. *
  1570. * @param string $url
  1571. *
  1572. * @fixme as a session-global setting, this can allow multiple forms
  1573. * to conflict and overwrite each others' returnto destinations if
  1574. * the user has multiple tabs or windows open.
  1575. *
  1576. * Should refactor to index with a token or otherwise only pass the
  1577. * data along its intended path.
  1578. */
  1579. function common_set_returnto($url)
  1580. {
  1581. common_ensure_session();
  1582. $_SESSION['returnto'] = $url;
  1583. }
  1584. /**
  1585. * Fetch a return-destination URL previously recorded by
  1586. * common_set_returnto().
  1587. *
  1588. * @return mixed URL string or null
  1589. *
  1590. * @fixme as a session-global setting, this can allow multiple forms
  1591. * to conflict and overwrite each others' returnto destinations if
  1592. * the user has multiple tabs or windows open.
  1593. *
  1594. * Should refactor to index with a token or otherwise only pass the
  1595. * data along its intended path.
  1596. */
  1597. function common_get_returnto()
  1598. {
  1599. common_ensure_session();
  1600. return (array_key_exists('returnto', $_SESSION)) ? $_SESSION['returnto'] : null;
  1601. }
  1602. function common_timestamp()
  1603. {
  1604. return date('YmdHis');
  1605. }
  1606. function common_ensure_syslog()
  1607. {
  1608. static $initialized = false;
  1609. if (!$initialized) {
  1610. openlog(
  1611. common_config('syslog', 'appname'),
  1612. 0,
  1613. common_config('syslog', 'facility')
  1614. );
  1615. $initialized = true;
  1616. }
  1617. }
  1618. function common_log_line($priority, $msg)
  1619. {
  1620. static $syslog_priorities = ['LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
  1621. 'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG'];
  1622. return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . PHP_EOL;
  1623. }
  1624. function common_request_id()
  1625. {
  1626. $pid = getmypid();
  1627. $server = common_config('site', 'server');
  1628. if (php_sapi_name() == 'cli') {
  1629. $script = basename($_SERVER['PHP_SELF']);
  1630. return "$server:$script:$pid";
  1631. } else {
  1632. static $req_id = null;
  1633. if (!isset($req_id)) {
  1634. $req_id = substr(md5(mt_rand()), 0, 8);
  1635. }
  1636. if (isset($_SERVER['REQUEST_URI'])) {
  1637. $url = $_SERVER['REQUEST_URI'];
  1638. }
  1639. $method = $_SERVER['REQUEST_METHOD'];
  1640. return "$server:$pid.$req_id $method $url";
  1641. }
  1642. }
  1643. function common_log($priority, $msg, $filename=null)
  1644. {
  1645. // Don't write LOG_DEBUG if that's not wanted
  1646. if ($priority === LOG_DEBUG && !common_config('site', 'logdebug')) {
  1647. return;
  1648. }
  1649. if (Event::handle('StartLog', [&$priority, &$msg, &$filename])) {
  1650. $msg = (empty($filename)) ? $msg : basename($filename) . ' - ' . $msg;
  1651. $msg = '[' . common_request_id() . '] ' . $msg;
  1652. $logfile = common_config('site', 'logfile');
  1653. if ($logfile) {
  1654. $log = fopen($logfile, "a");
  1655. if ($log) {
  1656. $output = common_log_line($priority, $msg);
  1657. fwrite($log, $output);
  1658. fclose($log);
  1659. }
  1660. } else {
  1661. common_ensure_syslog();
  1662. syslog($priority, $msg);
  1663. }
  1664. Event::handle('EndLog', [$priority, $msg, $filename]);
  1665. }
  1666. }
  1667. function common_debug($msg, $filename=null)
  1668. {
  1669. if ($filename) {
  1670. common_log(LOG_DEBUG, basename($filename).' - '.$msg);
  1671. } else {
  1672. common_log(LOG_DEBUG, $msg);
  1673. }
  1674. }
  1675. function common_log_db_error(&$object, $verb, $filename=null)
  1676. {
  1677. global $_PEAR;
  1678. $objstr = common_log_objstring($object);
  1679. $last_error = &$_PEAR->getStaticProperty('DB_DataObject', 'lastError');
  1680. if (is_object($last_error)) {
  1681. $msg = $last_error->message;
  1682. } else {
  1683. $msg = 'Unknown error (' . var_export($last_error, true) . ')';
  1684. }
  1685. common_log(LOG_ERR, $msg . '(' . $verb . ' on ' . $objstr . ')', $filename);
  1686. }
  1687. function common_log_objstring(&$object)
  1688. {
  1689. if (is_null($object)) {
  1690. return "null";
  1691. }
  1692. if (!($object instanceof DB_DataObject)) {
  1693. return "(unknown)";
  1694. }
  1695. $arr = $object->toArray();
  1696. $fields = [];
  1697. foreach ($arr as $k => $v) {
  1698. if (is_object($v)) {
  1699. $fields[] = "$k='".get_class($v)."'";
  1700. } else {
  1701. $fields[] = "$k='$v'";
  1702. }
  1703. }
  1704. $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
  1705. return $objstring;
  1706. }
  1707. function common_valid_http_url($url, $secure=false)
  1708. {
  1709. if (empty($url)) {
  1710. return false;
  1711. }
  1712. // If $secure is true, only allow https URLs to pass
  1713. // (if false, we use '?' in 'https?' to say the 's' is optional)
  1714. $regex = $secure ? '/^https$/' : '/^https?$/';
  1715. return filter_var($url, FILTER_VALIDATE_URL)
  1716. && preg_match($regex, parse_url($url, PHP_URL_SCHEME));
  1717. }
  1718. function common_valid_tag($tag)
  1719. {
  1720. if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
  1721. return (Validate::email($matches[1]) ||
  1722. preg_match('/^([\w-\.]+)$/', $matches[1]));
  1723. }
  1724. return false;
  1725. }
  1726. /**
  1727. * Determine if given domain or address literal is valid
  1728. * eg for use in JIDs and URLs. Does not check if the domain
  1729. * exists!
  1730. *
  1731. * @param string $domain
  1732. * @return boolean valid or not
  1733. */
  1734. function common_valid_domain($domain)
  1735. {
  1736. $octet = "(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])";
  1737. $ipv4 = "(?:$octet(?:\.$octet){3})";
  1738. if (preg_match("/^$ipv4$/u", $domain)) {
  1739. return true;
  1740. }
  1741. $group = "(?:[0-9a-f]{1,4})";
  1742. $ipv6 = "(?:\[($group(?::$group){0,7})?(::)?($group(?::$group){0,7})?\])"; // http://tools.ietf.org/html/rfc3513#section-2.2
  1743. if (preg_match("/^$ipv6$/ui", $domain, $matches)) {
  1744. $before = explode(":", $matches[1]);
  1745. $zeroes = $matches[2];
  1746. $after = explode(":", $matches[3]);
  1747. if ($zeroes) {
  1748. $min = 0;
  1749. $max = 7;
  1750. } else {
  1751. $min = 1;
  1752. $max = 8;
  1753. }
  1754. $explicit = count($before) + count($after);
  1755. if ($explicit < $min || $explicit > $max) {
  1756. return false;
  1757. }
  1758. return true;
  1759. }
  1760. try {
  1761. require_once "Net/IDNA2.php";
  1762. $idn = Net_IDNA2::getInstance();
  1763. $domain = $idn->encode($domain);
  1764. } catch (Exception $e) {
  1765. return false;
  1766. }
  1767. $subdomain = "(?:[a-z0-9][a-z0-9-]*)"; // @fixme
  1768. $fqdn = "(?:$subdomain(?:\.$subdomain)*\.?)";
  1769. return preg_match("/^$fqdn$/ui", $domain);
  1770. }
  1771. /* Following functions are copied from MediaWiki GlobalFunctions.php
  1772. * and written by Evan Prodromou. */
  1773. function common_accept_to_prefs($accept, $def = '*/*')
  1774. {
  1775. // No arg means accept anything (per HTTP spec)
  1776. if (!$accept) {
  1777. return [$def => 1];
  1778. }
  1779. $prefs = [];
  1780. $parts = explode(',', $accept);
  1781. foreach ($parts as $part) {
  1782. // FIXME: doesn't deal with params like 'text/html; level=1'
  1783. @list($value, $qpart) = explode(';', trim($part));
  1784. $match = [];
  1785. if (!isset($qpart)) {
  1786. $prefs[$value] = 1;
  1787. } elseif (preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
  1788. $prefs[$value] = $match[1];
  1789. }
  1790. }
  1791. return $prefs;
  1792. }
  1793. // Match by our supported file extensions
  1794. function common_supported_filename_to_mime($filename)
  1795. {
  1796. // Accept a filename and take out the extension
  1797. if (strpos($filename, '.') === false) {
  1798. throw new ServerException(sprintf('No extension on filename: %1$s', _ve($filename)));
  1799. }
  1800. $fileext = substr(strrchr($filename, '.'), 1);
  1801. return common_supported_ext_to_mime($fileext);
  1802. }
  1803. function common_supported_ext_to_mime($fileext)
  1804. {
  1805. $supported = common_config('attachments', 'supported');
  1806. if ($supported === true) {
  1807. // FIXME: Should we just accept the extension straight off when supported === true?
  1808. throw new UnknownExtensionMimeException($fileext);
  1809. }
  1810. foreach ($supported as $type => $ext) {
  1811. if ($ext === $fileext) {
  1812. return $type;
  1813. }
  1814. }
  1815. throw new ServerException('Unsupported file extension');
  1816. }
  1817. // Match by our supported mime types
  1818. function common_supported_mime_to_ext($mimetype)
  1819. {
  1820. $supported = common_config('attachments', 'supported');
  1821. if (is_array($supported)) {
  1822. foreach ($supported as $type => $ext) {
  1823. if ($mimetype === $type) {
  1824. return $ext;
  1825. }
  1826. }
  1827. }
  1828. throw new UnknownMimeExtensionException($mimetype);
  1829. }
  1830. // The MIME "media" is the part before the slash (video in video/webm)
  1831. function common_get_mime_media($type)
  1832. {
  1833. $tmp = explode('/', $type);
  1834. return strtolower($tmp[0]);
  1835. }
  1836. // Get only the mimetype and not additional info (separated from bare mime with semi-colon)
  1837. function common_bare_mime($mimetype)
  1838. {
  1839. $mimetype = mb_strtolower($mimetype);
  1840. if ($semicolon = mb_strpos($mimetype, ';')) {
  1841. $mimetype = mb_substr($mimetype, 0, $semicolon);
  1842. }
  1843. return trim($mimetype);
  1844. }
  1845. function common_mime_type_match($type, $avail)
  1846. {
  1847. if (array_key_exists($type, $avail)) {
  1848. return $type;
  1849. } else {
  1850. $parts = explode('/', $type);
  1851. if (array_key_exists($parts[0] . '/*', $avail)) {
  1852. return $parts[0] . '/*';
  1853. } elseif (array_key_exists('*/*', $avail)) {
  1854. return '*/*';
  1855. } else {
  1856. return null;
  1857. }
  1858. }
  1859. }
  1860. function common_negotiate_type($cprefs, $sprefs)
  1861. {
  1862. $combine = [];
  1863. foreach (array_keys($sprefs) as $type) {
  1864. $parts = explode('/', $type);
  1865. if ($parts[1] != '*') {
  1866. $ckey = common_mime_type_match($type, $cprefs);
  1867. if ($ckey) {
  1868. $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
  1869. }
  1870. }
  1871. }
  1872. foreach (array_keys($cprefs) as $type) {
  1873. $parts = explode('/', $type);
  1874. if ($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
  1875. $skey = common_mime_type_match($type, $sprefs);
  1876. if ($skey) {
  1877. $combine[$type] = $sprefs[$skey] * $cprefs[$type];
  1878. }
  1879. }
  1880. }
  1881. $bestq = 0;
  1882. $besttype = 'text/html';
  1883. foreach (array_keys($combine) as $type) {
  1884. if ($combine[$type] > $bestq) {
  1885. $besttype = $type;
  1886. $bestq = $combine[$type];
  1887. }
  1888. }
  1889. if ('text/html' === $besttype) {
  1890. return "text/html; charset=utf-8";
  1891. }
  1892. return $besttype;
  1893. }
  1894. function common_config($main, $sub=null)
  1895. {
  1896. global $config;
  1897. if (is_null($sub)) {
  1898. // Return the config category array
  1899. return array_key_exists($main, $config) ? $config[$main] : [];
  1900. }
  1901. // Return the config value
  1902. return (array_key_exists($main, $config) &&
  1903. array_key_exists($sub, $config[$main])) ? $config[$main][$sub] : false;
  1904. }
  1905. function common_config_set($main, $sub, $value)
  1906. {
  1907. global $config;
  1908. if (!array_key_exists($main, $config)) {
  1909. $config[$main] = [];
  1910. }
  1911. $config[$main][$sub] = $value;
  1912. }
  1913. function common_config_append($main, $sub, $value)
  1914. {
  1915. global $config;
  1916. if (!array_key_exists($main, $config)) {
  1917. $config[$main] = [];
  1918. }
  1919. if (!array_key_exists($sub, $config[$main])) {
  1920. $config[$main][$sub] = [];
  1921. }
  1922. if (!is_array($config[$main][$sub])) {
  1923. $config[$main][$sub] = [$config[$main][$sub]];
  1924. }
  1925. array_push($config[$main][$sub], $value);
  1926. }
  1927. /**
  1928. * Pull arguments from a GET/POST/REQUEST array with first-level input checks:
  1929. * strips "magic quotes" slashes if necessary, and kills invalid UTF-8 strings.
  1930. *
  1931. * @param array $from
  1932. * @return array
  1933. */
  1934. function common_copy_args($from)
  1935. {
  1936. $to = [];
  1937. $strip = get_magic_quotes_gpc();
  1938. foreach ($from as $k => $v) {
  1939. if (is_array($v)) {
  1940. $to[$k] = common_copy_args($v);
  1941. } else {
  1942. if ($strip) {
  1943. $v = stripslashes($v);
  1944. }
  1945. $to[$k] = strval(common_validate_utf8($v));
  1946. }
  1947. }
  1948. return $to;
  1949. }
  1950. /**
  1951. * Neutralise the evil effects of magic_quotes_gpc in the current request.
  1952. * This is used before handing a request off to OAuthRequest::from_request.
  1953. * @fixme Doesn't consider vars other than _POST and _GET?
  1954. * @fixme Can't be undone and could corrupt data if run twice.
  1955. */
  1956. function common_remove_magic_from_request()
  1957. {
  1958. if (get_magic_quotes_gpc()) {
  1959. $_POST=array_map('stripslashes', $_POST);
  1960. $_GET=array_map('stripslashes', $_GET);
  1961. }
  1962. }
  1963. function common_user_uri(&$user)
  1964. {
  1965. return common_local_url(
  1966. 'userbyid',
  1967. ['id' => $user->id],
  1968. null,
  1969. null,
  1970. false
  1971. );
  1972. }
  1973. /**
  1974. * Generates cryptographically secure pseudo-random strings out of a allowed chars string
  1975. *
  1976. * @param $bits int strength of the confirmation code
  1977. * @param $codechars allowed characters to be used in the confirmation code, by default we use 36 upper case
  1978. * alphanums and remove lookalikes (0, O, 1, I) = 32 chars = 5 bits to make it easy for the user to type in
  1979. * @return string confirmation_code of length $bits/5
  1980. */
  1981. function common_confirmation_code($bits, $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ')
  1982. {
  1983. $chars = ceil($bits/5);
  1984. $codechars_length = strlen($codechars)-1;
  1985. $code = '';
  1986. for ($i = 0; $i < $chars; ++$i) {
  1987. $random_char = $codechars[random_int(0, $codechars_length)];
  1988. $code .= $random_char;
  1989. }
  1990. return $code;
  1991. }
  1992. // convert markup to HTML
  1993. function common_markup_to_html($c, $args=null)
  1994. {
  1995. if ($c === null) {
  1996. return '';
  1997. }
  1998. if (is_null($args)) {
  1999. $args = [];
  2000. }
  2001. // XXX: not very efficient
  2002. foreach ($args as $name => $value) {
  2003. $c = preg_replace('/%%arg.'.$name.'%%/', $value, $c);
  2004. }
  2005. $c = preg_replace_callback('/%%user.(\w+)%%/', function ($m) {
  2006. return common_user_property($m[1]);
  2007. }, $c);
  2008. $c = preg_replace_callback('/%%action.(\w+)%%/', function ($m) {
  2009. return common_local_url($m[1]);
  2010. }, $c);
  2011. $c = preg_replace_callback('/%%doc.(\w+)%%/', function ($m) {
  2012. return common_local_url('doc', ['title'=>$m[1]]);
  2013. }, $c);
  2014. $c = preg_replace_callback('/%%(\w+).(\w+)%%/', function ($m) {
  2015. return common_config($m[1], $m[2]);
  2016. }, $c);
  2017. return \Michelf\Markdown::defaultTransform($c);
  2018. }
  2019. function common_user_property($property)
  2020. {
  2021. $profile = Profile::current();
  2022. if (empty($profile)) {
  2023. return null;
  2024. }
  2025. switch ($property) {
  2026. case 'profileurl':
  2027. case 'nickname':
  2028. case 'fullname':
  2029. case 'location':
  2030. case 'bio':
  2031. return $profile->$property;
  2032. break;
  2033. case 'avatar':
  2034. try {
  2035. return $profile->getAvatar(AVATAR_STREAM_SIZE);
  2036. } catch (Exception $e) {
  2037. return null;
  2038. }
  2039. break;
  2040. case 'bestname':
  2041. return $profile->getBestName();
  2042. break;
  2043. default:
  2044. return null;
  2045. }
  2046. }
  2047. function common_profile_uri($profile)
  2048. {
  2049. $uri = null;
  2050. if (!empty($profile)) {
  2051. if (Event::handle('StartCommonProfileURI', [$profile, &$uri])) {
  2052. $user = User::getKV('id', $profile->id);
  2053. if ($user instanceof User) {
  2054. $uri = $user->getUri();
  2055. }
  2056. Event::handle('EndCommonProfileURI', [$profile, &$uri]);
  2057. }
  2058. }
  2059. // XXX: this is a very bad profile!
  2060. return $uri;
  2061. }
  2062. function common_canonical_sms($sms)
  2063. {
  2064. // strip non-digits
  2065. preg_replace('/\D/', '', $sms);
  2066. return $sms;
  2067. }
  2068. function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
  2069. {
  2070. switch ($errno) {
  2071. case E_ERROR:
  2072. case E_COMPILE_ERROR:
  2073. case E_CORE_ERROR:
  2074. case E_USER_ERROR:
  2075. case E_PARSE:
  2076. case E_RECOVERABLE_ERROR:
  2077. common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
  2078. die();
  2079. break;
  2080. case E_WARNING:
  2081. case E_COMPILE_WARNING:
  2082. case E_CORE_WARNING:
  2083. case E_USER_WARNING:
  2084. common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
  2085. break;
  2086. case E_NOTICE:
  2087. case E_USER_NOTICE:
  2088. common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
  2089. break;
  2090. case E_STRICT:
  2091. case E_DEPRECATED:
  2092. case E_USER_DEPRECATED:
  2093. // XXX: config variable to log this stuff, too
  2094. break;
  2095. default:
  2096. common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
  2097. die();
  2098. break;
  2099. }
  2100. // FIXME: show error page if we're on the Web
  2101. /* Don't execute PHP internal error handler */
  2102. return true;
  2103. }
  2104. function common_session_token()
  2105. {
  2106. common_ensure_session();
  2107. if (!array_key_exists('token', $_SESSION)) {
  2108. $_SESSION['token'] = common_random_hexstr(64);
  2109. }
  2110. return $_SESSION['token'];
  2111. }
  2112. function common_license_terms($uri)
  2113. {
  2114. if (preg_match('/creativecommons.org\/licenses\/([^\/]+)/', $uri, $matches)) {
  2115. return explode('-', $matches[1]);
  2116. }
  2117. return [$uri];
  2118. }
  2119. function common_compatible_license($from, $to)
  2120. {
  2121. $from_terms = common_license_terms($from);
  2122. // public domain and cc-by are compatible with everything
  2123. if (count($from_terms) == 1 && ($from_terms[0] == 'publicdomain' || $from_terms[0] == 'by')) {
  2124. return true;
  2125. }
  2126. $to_terms = common_license_terms($to);
  2127. // sa is compatible across versions. IANAL
  2128. if (in_array('sa', $from_terms) || in_array('sa', $to_terms)) {
  2129. return count(array_diff($from_terms, $to_terms)) == 0;
  2130. }
  2131. // XXX: better compatibility check needed here!
  2132. // Should at least normalise URIs
  2133. return ($from == $to);
  2134. }
  2135. /**
  2136. * returns a quoted table name
  2137. */
  2138. function common_database_tablename($tablename)
  2139. {
  2140. $schema = Schema::get();
  2141. // table prefixes could be added here later
  2142. return $schema->quoteIdentifier($tablename);
  2143. }
  2144. /**
  2145. * Shorten a URL with the current user's configured shortening service,
  2146. * or ur1.ca if configured, or not at all if no shortening is set up.
  2147. *
  2148. * @param string $long_url original URL
  2149. * @param User $user to specify a particular user's options
  2150. * @param boolean $force Force shortening (used when notice is too long)
  2151. * @return string may return the original URL if shortening failed
  2152. *
  2153. * @fixme provide a way to specify a particular shortener
  2154. */
  2155. function common_shorten_url($long_url, User $user=null, $force = false)
  2156. {
  2157. $long_url = trim($long_url);
  2158. $user = common_current_user();
  2159. $maxUrlLength = User_urlshortener_prefs::maxUrlLength($user);
  2160. // $force forces shortening even if it's not strictly needed
  2161. // I doubt URL shortening is ever 'strictly' needed. - ESP
  2162. if (($maxUrlLength == -1 || mb_strlen($long_url) < $maxUrlLength) && !$force) {
  2163. return $long_url;
  2164. }
  2165. $shortenerName = User_urlshortener_prefs::urlShorteningService($user);
  2166. if (Event::handle(
  2167. 'StartShortenUrl',
  2168. [$long_url, $shortenerName, &$shortenedUrl]
  2169. )) {
  2170. if ($shortenerName == 'internal') {
  2171. try {
  2172. $f = File::processNew($long_url);
  2173. $shortenedUrl = common_local_url('redirecturl', ['id' => $f->id]);
  2174. if ((mb_strlen($shortenedUrl) < mb_strlen($long_url)) || $force) {
  2175. return $shortenedUrl;
  2176. } else {
  2177. return $long_url;
  2178. }
  2179. } catch (ServerException $e) {
  2180. return $long_url;
  2181. }
  2182. } else {
  2183. return $long_url;
  2184. }
  2185. } else {
  2186. //URL was shortened, so return the result
  2187. return trim($shortenedUrl);
  2188. }
  2189. }
  2190. /**
  2191. * @return mixed array($proxy, $ip) for web requests; proxy may be null
  2192. * null if not a web request
  2193. *
  2194. * @fixme X-Forwarded-For can be chained by multiple proxies;
  2195. we should parse the list and provide a cleaner array
  2196. * @fixme X-Forwarded-For can be forged by clients; only use them if trusted
  2197. * @fixme X_Forwarded_For headers will override X-Forwarded-For read through $_SERVER;
  2198. * use function to get exact request headers from Apache if possible.
  2199. */
  2200. function common_client_ip()
  2201. {
  2202. if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
  2203. return null;
  2204. }
  2205. if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
  2206. if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
  2207. $proxy = $_SERVER['HTTP_CLIENT_IP'];
  2208. } else {
  2209. $proxy = $_SERVER['REMOTE_ADDR'];
  2210. }
  2211. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  2212. } else {
  2213. $proxy = null;
  2214. if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
  2215. $ip = $_SERVER['HTTP_CLIENT_IP'];
  2216. } else {
  2217. $ip = $_SERVER['REMOTE_ADDR'];
  2218. }
  2219. }
  2220. return [$proxy, $ip];
  2221. }
  2222. function common_url_to_nickname($url)
  2223. {
  2224. static $bad = ['query', 'user', 'password', 'port', 'fragment'];
  2225. $parts = parse_url($url);
  2226. // If any of these parts exist, this won't work
  2227. foreach ($bad as $badpart) {
  2228. if (array_key_exists($badpart, $parts)) {
  2229. return null;
  2230. }
  2231. }
  2232. // We just have host and/or path
  2233. // If it's just a host...
  2234. if (array_key_exists('host', $parts) &&
  2235. (!array_key_exists('path', $parts) || strcmp($parts['path'], '/') == 0)) {
  2236. $hostparts = explode('.', $parts['host']);
  2237. // Try to catch common idiom of nickname.service.tld
  2238. if ((count($hostparts) > 2) &&
  2239. (strlen($hostparts[count($hostparts) - 2]) > 3) && # try to skip .co.uk, .com.au
  2240. (strcmp($hostparts[0], 'www') != 0)) {
  2241. return common_nicknamize($hostparts[0]);
  2242. } else {
  2243. // Do the whole hostname
  2244. return common_nicknamize($parts['host']);
  2245. }
  2246. } else {
  2247. if (array_key_exists('path', $parts)) {
  2248. // Strip starting, ending slashes
  2249. $path = preg_replace('@/$@', '', $parts['path']);
  2250. $path = preg_replace('@^/@', '', $path);
  2251. $path = basename($path);
  2252. // Hack for MediaWiki user pages, in the form:
  2253. // http://example.com/wiki/User:Myname
  2254. // ('User' may be localized.)
  2255. if (strpos($path, ':')) {
  2256. $parts = array_filter(explode(':', $path));
  2257. $path = $parts[count($parts) - 1];
  2258. }
  2259. if ($path) {
  2260. return common_nicknamize($path);
  2261. }
  2262. }
  2263. }
  2264. return null;
  2265. }
  2266. function common_nicknamize($str)
  2267. {
  2268. try {
  2269. return Nickname::normalize($str);
  2270. } catch (NicknameException $e) {
  2271. return null;
  2272. }
  2273. }
  2274. function common_perf_counter($key, $val=null)
  2275. {
  2276. global $_perfCounters;
  2277. if (isset($_perfCounters)) {
  2278. if (common_config('site', 'logperf')) {
  2279. if (array_key_exists($key, $_perfCounters)) {
  2280. $_perfCounters[$key][] = $val;
  2281. } else {
  2282. $_perfCounters[$key] = [$val];
  2283. }
  2284. if (common_config('site', 'logperf_detail')) {
  2285. common_log(LOG_DEBUG, "PERF COUNTER HIT: $key $val");
  2286. }
  2287. }
  2288. }
  2289. }
  2290. function common_log_perf_counters()
  2291. {
  2292. if (common_config('site', 'logperf')) {
  2293. global $_startTime, $_perfCounters;
  2294. if (isset($_startTime)) {
  2295. $endTime = microtime(true);
  2296. $diff = round(($endTime - $_startTime) * 1000);
  2297. common_log(LOG_DEBUG, "PERF runtime: ${diff}ms");
  2298. }
  2299. $counters = $_perfCounters;
  2300. ksort($counters);
  2301. foreach ($counters as $key => $values) {
  2302. $count = count($values);
  2303. $unique = count(array_unique($values));
  2304. common_log(LOG_DEBUG, "PERF COUNTER: $key $count ($unique unique)");
  2305. }
  2306. }
  2307. }
  2308. function common_is_email($str)
  2309. {
  2310. return (strpos($str, '@') !== false);
  2311. }
  2312. function common_init_stats()
  2313. {
  2314. global $_mem, $_ts;
  2315. $_mem = memory_get_usage(true);
  2316. $_ts = microtime(true);
  2317. }
  2318. function common_log_delta($comment=null)
  2319. {
  2320. global $_mem, $_ts;
  2321. $mold = $_mem;
  2322. $told = $_ts;
  2323. $_mem = memory_get_usage(true);
  2324. $_ts = microtime(true);
  2325. $mtotal = $_mem - $mold;
  2326. $ttotal = $_ts - $told;
  2327. if (empty($comment)) {
  2328. $comment = 'Delta';
  2329. }
  2330. common_debug(sprintf("%s: %d %d", $comment, $mtotal, round($ttotal * 1000000)));
  2331. }
  2332. function common_strip_html($html, $trim=true, $save_whitespace=false)
  2333. {
  2334. // first replace <br /> with \n
  2335. $html = preg_replace('/\<(\s*)?br(\s*)?\/?(\s*)?\>/i', "\n", $html);
  2336. // then, unless explicitly avoided, remove excessive whitespace
  2337. if (!$save_whitespace) {
  2338. $html = preg_replace('/\s+/', ' ', $html);
  2339. }
  2340. $text = html_entity_decode(strip_tags($html), ENT_QUOTES, 'UTF-8');
  2341. return $trim ? trim($text) : $text;
  2342. }
  2343. /**
  2344. * An internal helper function that converts a $size from php.ini for
  2345. * file size limit from the 'human-readable' shorthand into a int. If
  2346. * $size is empty (the value is not set in php.ini), returns a default
  2347. * value (5000000)
  2348. *
  2349. * @param string|bool $size
  2350. * @return int the php.ini upload limit in machine-readable format
  2351. */
  2352. function _common_size_str_to_int($size): int
  2353. {
  2354. // `memory_limit` can be -1 and `post_max_size` can be 0
  2355. // for unlimited. Consistency.
  2356. if (empty($size) || $size === '-1' || $size === '0') {
  2357. return 5000000;
  2358. }
  2359. $suffix = substr($size, -1);
  2360. $size = substr($size, 0, -1);
  2361. switch (strtoupper($suffix)) {
  2362. case 'P':
  2363. $size *= 1024;
  2364. // no break
  2365. case 'T':
  2366. $size *= 1024;
  2367. // no break
  2368. case 'G':
  2369. $size *= 1024;
  2370. // no break
  2371. case 'M':
  2372. $size *= 1024;
  2373. // no break
  2374. case 'K':
  2375. $size *= 1024;
  2376. break;
  2377. }
  2378. return $size;
  2379. }
  2380. /**
  2381. * Uses `_common_size_str_to_int()` to find the smallest value for uploads in php.ini
  2382. *
  2383. * @return int
  2384. */
  2385. function common_get_preferred_php_upload_limit(): int
  2386. {
  2387. return min(
  2388. _common_size_str_to_int(ini_get('post_max_size')),
  2389. _common_size_str_to_int(ini_get('upload_max_filesize')),
  2390. _common_size_str_to_int(ini_get('memory_limit'))
  2391. );
  2392. }
  2393. function html_sprintf()
  2394. {
  2395. $args = func_get_args();
  2396. for ($i=1; $i<count($args); $i++) {
  2397. $args[$i] = htmlspecialchars($args[$i]);
  2398. }
  2399. return call_user_func_array('sprintf', $args);
  2400. }
  2401. function _ve($var)
  2402. {
  2403. return var_export($var, true);
  2404. }