Escape global namespaced get_app() calls

- Add deprecated status
Dieser Commit ist enthalten in:
Hypolite Petovan 2018-12-27 19:22:35 -05:00
Ursprung b8030313e5
Commit 5e1ceb57de
52 geänderte Dateien mit 135 neuen und 133 gelöschten Zeilen

Datei anzeigen

@ -327,6 +327,8 @@ if (!defined('CURLE_OPERATION_TIMEDOUT')) {
*
* Useful in functions which require it but don't get it passed to them
*
* @deprecated since version 2018.09
* @see BaseObject::getApp()
* @return App
*/
function get_app()
@ -457,7 +459,7 @@ function notice($s)
return;
}
$a = get_app();
$a = \get_app();
if (empty($_SESSION['sysmsg'])) {
$_SESSION['sysmsg'] = [];
}
@ -475,7 +477,7 @@ function notice($s)
*/
function info($s)
{
$a = get_app();
$a = \get_app();
if (local_user() && PConfig::get(local_user(), 'system', 'ignore_info')) {
return;
@ -538,7 +540,7 @@ function feed_birthday($uid, $tz)
*/
function is_site_admin()
{
$a = get_app();
$a = \get_app();
$admin_email = Config::get('config', 'admin_email');
@ -647,7 +649,7 @@ function get_server()
function get_temppath()
{
$a = get_app();
$a = \get_app();
$temppath = Config::get("system", "temppath");

Datei anzeigen

@ -430,7 +430,7 @@ function api_call(App $a)
*/
function api_error($type, $e)
{
$a = get_app();
$a = \get_app();
$error = ($e->getMessage() !== "" ? $e->getMessage() : $e->httpdesc);
/// @TODO: https://dev.twitter.com/overview/api/response-codes
@ -963,7 +963,7 @@ function api_format_data($root_element, $type, $data)
function api_account_verify_credentials($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -1027,7 +1027,7 @@ function requestdata($k)
*/
function api_statuses_mediap($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
Logger::log('api_statuses_update: no user');
@ -1075,7 +1075,7 @@ api_register_func('api/statuses/mediap', 'api_statuses_mediap', true, API_METHOD
*/
function api_statuses_update($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
Logger::log('api_statuses_update: no user');
@ -1217,7 +1217,7 @@ api_register_func('api/statuses/update_with_media', 'api_statuses_update', true,
*/
function api_media_upload()
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
Logger::log('no user');
@ -1261,7 +1261,7 @@ api_register_func('api/media/upload', 'api_media_upload', true, API_METHOD_POST)
*/
function api_status_show($type, $item_id = 0)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
@ -1360,7 +1360,7 @@ function api_status_show($type, $item_id = 0)
*/
function api_users_show($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
@ -1436,7 +1436,7 @@ api_register_func('api/externalprofile/show', 'api_users_show');
*/
function api_users_search($type)
{
$a = get_app();
$a = \get_app();
$userlist = [];
@ -1516,7 +1516,7 @@ api_register_func('api/users/lookup', 'api_users_lookup', true);
*/
function api_search($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -1577,7 +1577,7 @@ api_register_func('api/search', 'api_search', true);
*/
function api_statuses_home_timeline($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -1665,7 +1665,7 @@ api_register_func('api/statuses/friends_timeline', 'api_statuses_home_timeline',
*/
function api_statuses_public_timeline($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -1747,7 +1747,7 @@ api_register_func('api/statuses/public_timeline', 'api_statuses_public_timeline'
*/
function api_statuses_networkpublic_timeline($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -1802,7 +1802,7 @@ api_register_func('api/statuses/networkpublic_timeline', 'api_statuses_networkpu
*/
function api_statuses_show($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -1875,7 +1875,7 @@ api_register_func('api/statuses/show', 'api_statuses_show', true);
*/
function api_conversation_show($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -1954,7 +1954,7 @@ function api_statuses_repeat($type)
{
global $called_api;
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -2019,7 +2019,7 @@ api_register_func('api/statuses/retweet', 'api_statuses_repeat', true, API_METHO
*/
function api_statuses_destroy($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -2060,7 +2060,7 @@ api_register_func('api/statuses/destroy', 'api_statuses_destroy', true, API_METH
*/
function api_statuses_mentions($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -2128,7 +2128,7 @@ api_register_func('api/statuses/replies', 'api_statuses_mentions', true);
*/
function api_statuses_user_timeline($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -2206,7 +2206,7 @@ api_register_func('api/statuses/user_timeline', 'api_statuses_user_timeline', tr
*/
function api_favorites_create_destroy($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -2284,7 +2284,7 @@ function api_favorites($type)
{
global $called_api;
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -2737,7 +2737,7 @@ function api_contactlink_to_array($txt)
*/
function api_format_items_activities($item, $type = "json")
{
$a = get_app();
$a = \get_app();
$activities = [
'like' => [],
@ -2859,7 +2859,7 @@ function api_format_items_profiles($profile_row)
*/
function api_format_items($r, $user_info, $filter_user = false, $type = "json")
{
$a = get_app();
$a = \get_app();
$ret = [];
@ -3049,7 +3049,7 @@ api_register_func('api/lists/subscriptions', 'api_lists_list', true);
*/
function api_lists_ownerships($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -3093,7 +3093,7 @@ api_register_func('api/lists/ownerships', 'api_lists_ownerships', true);
*/
function api_lists_statuses($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -3170,7 +3170,7 @@ api_register_func('api/lists/statuses', 'api_lists_statuses', true);
*/
function api_statuses_f($qtype)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -3346,7 +3346,7 @@ api_register_func('api/friendships/incoming', 'api_friendships_incoming', true);
*/
function api_statusnet_config($type)
{
$a = get_app();
$a = \get_app();
$name = Config::get('config', 'sitename');
$server = $a->getHostName();
@ -3410,7 +3410,7 @@ function api_ff_ids($type)
throw new ForbiddenException();
}
$a = get_app();
$a = \get_app();
api_get_user($a);
@ -3478,7 +3478,7 @@ api_register_func('api/followers/ids', 'api_followers_ids', true);
*/
function api_direct_messages_new($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -3566,7 +3566,7 @@ api_register_func('api/direct_messages/new', 'api_direct_messages_new', true, AP
*/
function api_direct_messages_destroy($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -3724,7 +3724,7 @@ api_register_func('api/friendships/destroy', 'api_friendships_destroy', true, AP
*/
function api_direct_messages_box($type, $box, $verbose)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
}
@ -4353,7 +4353,7 @@ function api_account_update_profile_image($type)
Contact::updateSelfFromUserID(api_user(), true);
// Update global directory in background
$url = System::baseUrl() . '/profile/' . get_app()->user['nickname'];
$url = System::baseUrl() . '/profile/' . \get_app()->user['nickname'];
if ($url && strlen(Config::get('system', 'directory'))) {
Worker::add(PRIORITY_LOW, "Directory", $url);
}
@ -4668,7 +4668,7 @@ function post_photo_item($hash, $allow_cid, $deny_cid, $allow_gid, $deny_gid, $f
*/
function prepare_photo_data($type, $scale, $photo_id)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if ($user_info === false) {
@ -5209,7 +5209,7 @@ function api_best_nickname(&$contacts)
*/
function api_friendica_group_show($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5274,7 +5274,7 @@ api_register_func('api/friendica/group_show', 'api_friendica_group_show', true);
*/
function api_friendica_group_delete($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5336,7 +5336,7 @@ api_register_func('api/friendica/group_delete', 'api_friendica_group_delete', tr
*/
function api_lists_destroy($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5452,7 +5452,7 @@ function group_create($name, $uid, $users = [])
*/
function api_friendica_group_create($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5481,7 +5481,7 @@ api_register_func('api/friendica/group_create', 'api_friendica_group_create', tr
*/
function api_lists_create($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5515,7 +5515,7 @@ api_register_func('api/lists/create', 'api_lists_create', true, API_METHOD_POST)
*/
function api_friendica_group_update($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5589,7 +5589,7 @@ api_register_func('api/friendica/group_update', 'api_friendica_group_update', tr
*/
function api_lists_update($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5635,7 +5635,7 @@ api_register_func('api/lists/update', 'api_lists_update', true, API_METHOD_POST)
*/
function api_friendica_activity($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5679,7 +5679,7 @@ api_register_func('api/friendica/activity/unattendmaybe', 'api_friendica_activit
*/
function api_friendica_notification($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5715,7 +5715,7 @@ function api_friendica_notification($type)
*/
function api_friendica_notification_seen($type)
{
$a = get_app();
$a = \get_app();
$user_info = api_get_user($a);
if (api_user() === false || $user_info === false) {
@ -5760,7 +5760,7 @@ api_register_func('api/friendica/notification', 'api_friendica_notification', tr
*/
function api_friendica_direct_messages_setseen($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
}
@ -5809,7 +5809,7 @@ api_register_func('api/friendica/direct_messages_setseen', 'api_friendica_direct
*/
function api_friendica_direct_messages_search($type, $box = "")
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();
@ -5872,7 +5872,7 @@ api_register_func('api/friendica/direct_messages_search', 'api_friendica_direct_
*/
function api_friendica_profile_show($type)
{
$a = get_app();
$a = \get_app();
if (api_user() === false) {
throw new ForbiddenException();

Datei anzeigen

@ -28,7 +28,7 @@ use Friendica\Util\Strings;
*/
function notification($params)
{
$a = get_app();
$a = \get_app();
// Temporary logging for finding the origin
if (!isset($params['language']) || !isset($params['uid'])) {

Datei anzeigen

@ -72,7 +72,7 @@ function fbrowser_content(App $a)
function _map_files1($rr)
{
$a = get_app();
$a = \get_app();
$types = Image::supportedTypes();
$ext = $types[$rr['type']];
$filename_e = $rr['filename'];
@ -116,7 +116,7 @@ function fbrowser_content(App $a)
function _map_files2($rr)
{
$a = get_app();
$a = \get_app();
list($m1,$m2) = explode("/", $rr['filetype']);
$filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
$filename_e = $rr['filename'];

Datei anzeigen

@ -853,7 +853,7 @@ function item_post(App $a) {
function item_post_return($baseurl, $api_source, $return_path)
{
// figure out how to return, depending on from whence we came
$a = get_app();
$a = \get_app();
if ($api_source) {
return;

Datei anzeigen

@ -127,7 +127,7 @@ function lostpass_form()
function lostpass_generate_password($user)
{
$o = '';
$a = get_app();
$a = \get_app();
$new_password = User::generateNewPassword();
$result = User::updatePassword($user['uid'], $new_password);

Datei anzeigen

@ -502,7 +502,7 @@ function get_messages($uid, $start, $limit)
function render_messages(array $msg, $t)
{
$a = get_app();
$a = \get_app();
$tpl = Renderer::getMarkupTemplate($t);
$rslt = '';

Datei anzeigen

@ -145,7 +145,7 @@ function nodeinfo_init(App $a) {
function nodeinfo_cron() {
$a = get_app();
$a = \get_app();
// If the addon 'statistics_json' is enabled then disable it and activate nodeinfo.
if (Addon::isEnabled('statistics_json')) {

Datei anzeigen

@ -24,7 +24,7 @@ function ostatus_subscribe_content(App $a)
$uid = local_user();
$a = get_app();
$a = \get_app();
$counter = intval($_REQUEST['counter']);

Datei anzeigen

@ -15,7 +15,7 @@ use Friendica\Module\Login;
function user_allow($hash)
{
$a = get_app();
$a = \get_app();
$register = Register::getByHash($hash);
if (!DBA::isResult($register)) {

Datei anzeigen

@ -22,7 +22,7 @@ function repair_ostatus_content(App $a) {
$uid = local_user();
$a = get_app();
$a = \get_app();
$counter = intval($_REQUEST['counter']);

Datei anzeigen

@ -30,7 +30,7 @@ use Friendica\Util\Temporal;
function get_theme_config_file($theme)
{
$a = get_app();
$a = \get_app();
$base_theme = defaults($a->theme_info, 'extends');
if (file_exists("view/theme/$theme/config.php")) {

Datei anzeigen

@ -88,7 +88,7 @@ abstract class BaseModule extends BaseObject
*/
public static function getFormSecurityToken($typename = '')
{
$a = get_app();
$a = \get_app();
$timestamp = time();
$sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $timestamp . $typename);
@ -116,7 +116,7 @@ abstract class BaseModule extends BaseObject
$max_livetime = 10800; // 3 hours
$a = get_app();
$a = \get_app();
$x = explode('.', $hash);
if (time() > (IntVal($x[0]) + $max_livetime)) {
@ -136,7 +136,7 @@ abstract class BaseModule extends BaseObject
public static function checkFormSecurityTokenRedirectOnError($err_redirect, $typename = '', $formname = 'form_security_token')
{
if (!self::checkFormSecurityToken($typename, $formname)) {
$a = get_app();
$a = \get_app();
Logger::log('checkFormSecurityToken failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
Logger::log('checkFormSecurityToken failed: _REQUEST data: ' . print_r($_REQUEST, true), Logger::DATA);
notice(self::getFormSecurityStandardErrorMessage());
@ -147,7 +147,7 @@ abstract class BaseModule extends BaseObject
public static function checkFormSecurityTokenForbiddenOnError($typename = '', $formname = 'form_security_token')
{
if (!self::checkFormSecurityToken($typename, $formname)) {
$a = get_app();
$a = \get_app();
Logger::log('checkFormSecurityToken failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
Logger::log('checkFormSecurityToken failed: _REQUEST data: ' . print_r($_REQUEST, true), Logger::DATA);
header('HTTP/1.1 403 Forbidden');

Datei anzeigen

@ -56,7 +56,7 @@ class OEmbed
{
$embedurl = trim($embedurl, '\'"');
$a = get_app();
$a = \get_app();
$cache_key = 'oembed:' . $a->videowidth . ':' . $embedurl;
@ -364,7 +364,7 @@ class OEmbed
*/
private static function iframe($src, $width, $height)
{
$a = get_app();
$a = \get_app();
if (!$height || strstr($height, '%')) {
$height = '200';

Datei anzeigen

@ -811,7 +811,7 @@ class HTML
public static function contactBlock()
{
$o = '';
$a = get_app();
$a = \get_app();
$shown = PConfig::get($a->profile['uid'], 'system', 'display_friend_count', 24);
if ($shown == 0) {

Datei anzeigen

@ -44,7 +44,7 @@ class Widget
*/
public static function findPeople()
{
$a = get_app();
$a = \get_app();
$global_dir = Config::get('system', 'directory');
if (Config::get('system', 'invitation_only')) {
@ -207,7 +207,7 @@ class Widget
*/
public static function categories($baseurl, $selected = '')
{
$a = get_app();
$a = \get_app();
if (!Feature::isEnabled($a->profile['profile_uid'], 'categories')) {
return '';
@ -316,7 +316,7 @@ class Widget
*/
public static function tagCloud($limit = 50)
{
$a = get_app();
$a = \get_app();
if (!$a->profile['profile_uid'] || !$a->profile['url']) {
return '';

Datei anzeigen

@ -23,7 +23,7 @@ class CalendarExport
* @return string Formated HTML of the calendar widget.
*/
public static function getHTML() {
$a = get_app();
$a = \get_app();
if (empty($a->data['user'])) {
return;

Datei anzeigen

@ -59,7 +59,7 @@ HELP;
throw new \RuntimeException('DocBlox isn\'t available.');
}
$dir = get_app()->getBasePath();
$dir = \get_app()->getBasePath();
//stack for dirs to search
$dirstack = [];

Datei anzeigen

@ -39,7 +39,7 @@ HELP;
protected function doExecute()
{
$a = get_app();
$a = \get_app();
if ($this->getOption('v')) {
$this->out('Class: ' . __CLASS__);

Datei anzeigen

@ -47,7 +47,7 @@ HELP;
protected function doExecute()
{
$a = get_app();
$a = \get_app();
if ($this->getOption('v')) {
$this->out('Class: ' . __CLASS__);

Datei anzeigen

@ -40,7 +40,7 @@ HELP;
protected function doExecute()
{
$a = get_app();
$a = \get_app();
if ($this->getOption('v')) {
$this->out('Class: ' . __CLASS__);

Datei anzeigen

@ -51,7 +51,7 @@ HELP;
throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
}
$a = get_app();
$a = \get_app();
$phpfile = realpath($this->getArgument(0));

Datei anzeigen

@ -47,7 +47,7 @@ HELP;
throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
}
$a = get_app();
$a = \get_app();
$pofile = realpath($this->getArgument(0));

Datei anzeigen

@ -41,7 +41,7 @@ HELP;
throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
}
$a = get_app();
$a = \get_app();
$php_path = $a->getConfigValue('config', 'php_path', 'php');

Datei anzeigen

@ -46,7 +46,7 @@ class Theme
return $info;
}
$a = get_app();
$a = \get_app();
$stamp1 = microtime(true);
$theme_file = file_get_contents("view/theme/$theme/theme.php");
$a->saveTimestamp($stamp1, "file");
@ -155,13 +155,13 @@ class Theme
if ($root !== '' && $root[strlen($root) - 1] !== '/') {
$root = $root . '/';
}
$theme_info = get_app()->theme_info;
$theme_info = \get_app()->theme_info;
if (is_array($theme_info) && array_key_exists('extends', $theme_info)) {
$parent = $theme_info['extends'];
} else {
$parent = 'NOPATH';
}
$theme = get_app()->getCurrentTheme();
$theme = \get_app()->getCurrentTheme();
$thname = $theme;
$ext = substr($file, strrpos($file, '.') + 1);
$paths = [
@ -191,7 +191,7 @@ class Theme
*/
public static function getStylesheetPath($theme)
{
$a = get_app();
$a = \get_app();
$opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
if (file_exists('view/theme/' . $theme . '/style.php')) {

Datei anzeigen

@ -35,7 +35,7 @@ class Worker
*/
public static function processQueue($run_cron = true)
{
$a = get_app();
$a = \get_app();
self::$up_start = microtime(true);
@ -206,7 +206,7 @@ class Worker
*/
public static function execute($queue)
{
$a = get_app();
$a = \get_app();
$mypid = getmypid();
@ -319,7 +319,7 @@ class Worker
*/
private static function execFunction($queue, $funcname, $argv, $method_call)
{
$a = get_app();
$a = \get_app();
$mypid = getmypid();

Datei anzeigen

@ -208,7 +208,7 @@ class DBA
* @param string $query The database query that will be analyzed
*/
private static function logIndex($query) {
$a = get_app();
$a = \get_app();
if (!$a->getConfigVariable('system', 'db_log_index')) {
return;
@ -388,7 +388,7 @@ class DBA
* @return bool|object statement object or result object
*/
public static function p($sql) {
$a = get_app();
$a = \get_app();
$stamp1 = microtime(true);
@ -606,7 +606,7 @@ class DBA
* @return boolean Was the query successfull? False is returned only if an error occurred
*/
public static function e($sql) {
$a = get_app();
$a = \get_app();
$stamp = microtime(true);
@ -770,7 +770,7 @@ class DBA
* @return array current row
*/
public static function fetch($stmt) {
$a = get_app();
$a = \get_app();
$stamp1 = microtime(true);
@ -1518,7 +1518,7 @@ class DBA
* @return boolean was the close successful?
*/
public static function close($stmt) {
$a = get_app();
$a = \get_app();
$stamp1 = microtime(true);

Datei anzeigen

@ -909,7 +909,7 @@ class Contact extends BaseObject
public static function photoMenu(array $contact, $uid = 0)
{
// @todo Unused, to be removed
$a = get_app();
$a = \get_app();
$contact_url = '';
$pm_url = '';
@ -1631,7 +1631,7 @@ class Contact extends BaseObject
{
$result = ['cid' => -1, 'success' => false, 'message' => ''];
$a = get_app();
$a = \get_app();
// remove ajax junk, e.g. Twitter
$url = str_replace('/#!/', '/', $url);

Datei anzeigen

@ -518,7 +518,7 @@ class GContact
*/
public static function updateSuggestions()
{
$a = get_app();
$a = \get_app();
$done = [];

Datei anzeigen

@ -1148,7 +1148,7 @@ class Item extends BaseObject
if ($notify) {
// We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
// We add the hash of our own host because our host is the original creator of the post.
$prefix_host = get_app()->getHostName();
$prefix_host = \get_app()->getHostName();
} else {
$prefix_host = '';
@ -1238,7 +1238,7 @@ class Item extends BaseObject
public static function insert($item, $force_parent = false, $notify = false, $dontcache = false)
{
$a = get_app();
$a = \get_app();
// If it is a posting where users should get notifications, then define it as wall posting
if ($notify) {
@ -2611,7 +2611,7 @@ class Item extends BaseObject
public static function isRemoteSelf($contact, &$datarray)
{
$a = get_app();
$a = \get_app();
if (!$contact['remote_self']) {
return false;

Datei anzeigen

@ -28,7 +28,7 @@ class Mail
*/
public static function send($recipient = 0, $body = '', $subject = '', $replyto = '')
{
$a = get_app();
$a = \get_app();
if (!$recipient) {
return -1;

Datei anzeigen

@ -144,7 +144,7 @@ class Photo
$micro = System::baseUrl() . '/photo/' . $hash . '-6.' . $Image->getExt() . $suffix;
// Remove the cached photo
$a = get_app();
$a = \get_app();
$basepath = $a->getBasePath();
if (is_dir($basepath . "/photo")) {

Datei anzeigen

@ -280,7 +280,7 @@ class Profile
*/
private static function sidebar($profile, $block = 0, $show_connect = true)
{
$a = get_app();
$a = \get_app();
$o = '';
$location = false;
@ -551,7 +551,7 @@ class Profile
public static function getBirthdays()
{
$a = get_app();
$a = \get_app();
$o = '';
if (!local_user() || $a->is_mobile || $a->is_tablet) {
@ -649,7 +649,7 @@ class Profile
public static function getEventsReminderHTML()
{
$a = get_app();
$a = \get_app();
$o = '';
if (!local_user() || $a->is_mobile || $a->is_tablet) {
@ -1090,7 +1090,7 @@ class Profile
*/
public static function openWebAuthInit($token)
{
$a = get_app();
$a = \get_app();
// Clean old OpenWebAuthToken entries.
OpenWebAuthToken::purge('owt', '3 MINUTE');

Datei anzeigen

@ -406,7 +406,7 @@ class User
*/
public static function create(array $data)
{
$a = get_app();
$a = \get_app();
$return = ['user' => null, 'password' => ''];
$using_invites = Config::get('system', 'invitation_only');
@ -795,7 +795,7 @@ class User
return false;
}
$a = get_app();
$a = \get_app();
Logger::log('Removing user: ' . $uid);

Datei anzeigen

@ -36,7 +36,7 @@ class FKOAuth1 extends OAuthServer
public function loginUser($uid)
{
Logger::log("FKOAuth1::loginUser $uid");
$a = get_app();
$a = \get_app();
$record = DBA::selectFirst('user', [], ['uid' => $uid, 'blocked' => 0, 'account_expired' => 0, 'account_removed' => 0, 'verified' => 1]);
if (!DBA::isResult($record)) {

Datei anzeigen

@ -74,7 +74,7 @@ class Probe
*/
private static function ownHost($host)
{
$own_host = get_app()->getHostName();
$own_host = \get_app()->getHostName();
$parts = parse_url($host);

Datei anzeigen

@ -652,7 +652,7 @@ class Image
$string = $this->asString();
$a = get_app();
$a = \get_app();
$stamp1 = microtime(true);
file_put_contents($path, $string);
@ -730,7 +730,7 @@ class Image
Logger::log('Image: guessType: '.$filename . ($fromcurl?' from curl headers':''), Logger::DEBUG);
$type = null;
if ($fromcurl) {
$a = get_app();
$a = \get_app();
$headers=[];
$h = explode("\n", $header);
foreach ($h as $l) {
@ -798,7 +798,7 @@ class Image
} else {
$tempfile = tempnam(get_temppath(), "cache");
$a = get_app();
$a = \get_app();
$stamp1 = microtime(true);
file_put_contents($tempfile, $img_str);
$a->saveTimestamp($stamp1, "file");

Datei anzeigen

@ -137,7 +137,7 @@ class DFRN
*/
public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false)
{
$a = get_app();
$a = \get_app();
$sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
$public_feed = (($dfrn_id) ? false : true);
@ -1160,7 +1160,7 @@ class DFRN
*/
public static function deliver($owner, $contact, $atom, $dissolve = false, $legacy_transport = false)
{
$a = get_app();
$a = \get_app();
// At first try the Diaspora transport layer
if (!$dissolve && !$legacy_transport) {
@ -1420,7 +1420,7 @@ class DFRN
*/
public static function transmit($owner, $contact, $atom, $public_batch = false)
{
$a = get_app();
$a = \get_app();
if (!$public_batch) {
if (empty($contact['addr'])) {
@ -1894,7 +1894,7 @@ class DFRN
*/
private static function processSuggestion($xpath, $suggestion, $importer)
{
$a = get_app();
$a = \get_app();
Logger::log("Processing suggestions");
@ -2457,7 +2457,7 @@ class DFRN
/// @todo Do we really need this check for HTML elements? (It was copied from the old function)
if ((strpos($item['body'], '<') !== false) && (strpos($item['body'], '>') !== false)) {
$base_url = get_app()->getBaseURL();
$base_url = \get_app()->getBaseURL();
$item['body'] = HTML::relToAbs($item['body'], $base_url);
$item['body'] = HTML::toBBCodeVideo($item['body']);

Datei anzeigen

@ -2305,7 +2305,7 @@ class Diaspora
*/
private static function receiveRequestMakeFriend(array $importer, array $contact)
{
$a = get_app();
$a = \get_app();
if ($contact["rel"] == Contact::SHARING) {
DBA::update(
@ -3064,7 +3064,7 @@ class Diaspora
*/
public static function transmit(array $owner, array $contact, $envelope, $public_batch, $queue_run = false, $guid = "", $no_queue = false)
{
$a = get_app();
$a = \get_app();
$enabled = intval(Config::get("system", "diaspora_enabled"));
if (!$enabled) {

Datei anzeigen

@ -35,7 +35,7 @@ class Feed {
*/
public static function import($xml, $importer, &$contact, &$hub, $simulate = false) {
$a = get_app();
$a = \get_app();
if (!$simulate) {
Logger::log("Import Atom/RSS feed '".$contact["name"]."' (Contact ".$contact["id"].") for user ".$importer["uid"], Logger::DEBUG);

Datei anzeigen

@ -1266,7 +1266,7 @@ class OStatus
*/
private static function addHeader(DOMDocument $doc, array $owner, $filter, $feed_mode = false)
{
$a = get_app();
$a = \get_app();
$root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
$doc->appendChild($root);

Datei anzeigen

@ -63,7 +63,7 @@ class PortableContact
*/
public static function load($cid, $uid, $zcid, $url)
{
$a = get_app();
$a = \get_app();
if ($cid) {
if (!$url || !$uid) {

Datei anzeigen

@ -22,7 +22,7 @@ class FriendicaSmarty extends Smarty
{
parent::__construct();
$a = get_app();
$a = \get_app();
$theme = $a->getCurrentTheme();
// setTemplateDir can be set to an array, which Smarty will parse in order.

Datei anzeigen

@ -32,7 +32,7 @@ class FriendicaSmartyEngine implements ITemplateEngine
$s = new FriendicaSmarty();
}
$r['$APP'] = get_app();
$r['$APP'] = \get_app();
// "middleware": inject variables into templates
$arr = [
@ -54,7 +54,7 @@ class FriendicaSmartyEngine implements ITemplateEngine
public function getTemplateFile($file, $root = '')
{
$a = get_app();
$a = \get_app();
$template = new FriendicaSmarty();
// Make sure $root ends with a slash /

Datei anzeigen

@ -122,7 +122,7 @@ class ExAuth
*/
private function isUser(array $aCommand)
{
$a = get_app();
$a = \get_app();
// Check if there is a username
if (!isset($aCommand[1])) {
@ -202,7 +202,7 @@ class ExAuth
*/
private function auth(array $aCommand)
{
$a = get_app();
$a = \get_app();
// check user authentication
if (sizeof($aCommand) != 4) {

Datei anzeigen

@ -94,7 +94,7 @@ class Network
$stamp1 = microtime(true);
$a = get_app();
$a = \get_app();
$parts = parse_url($url);
$path_parts = explode('/', defaults($parts, 'path', ''));
@ -251,7 +251,7 @@ class Network
return CurlResult::createErrorCurl($url);
}
$a = get_app();
$a = \get_app();
$ch = curl_init($url);
if (($redirects > 8) || (!$ch)) {
@ -604,7 +604,7 @@ class Network
*/
public static function finalUrl($url, $depth = 1, $fetchbody = false)
{
$a = get_app();
$a = \get_app();
$url = self::stripTrackingQueryParams($url);

Datei anzeigen

@ -111,7 +111,7 @@ class ParseUrl
*/
public static function getSiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1)
{
$a = get_app();
$a = \get_app();
$siteinfo = [];

Datei anzeigen

@ -126,7 +126,7 @@ class Temporal
*/
public static function getDateofBirthField($dob)
{
$a = get_app();
$a = \get_app();
list($year, $month, $day) = sscanf($dob, '%4d-%2d-%2d');

Datei anzeigen

@ -1242,7 +1242,7 @@ class ApiTest extends DatabaseTest
'type' => 'image/png'
]
];
$app = get_app();
$app = \get_app();
$app->argc = 2;
$result = api_media_upload();

Datei anzeigen

@ -21,7 +21,7 @@ use Friendica\Core\PConfig;
function get_scheme_info($scheme)
{
$theme = get_app()->getCurrentTheme();
$theme = \get_app()->getCurrentTheme();
$themepath = 'view/theme/' . $theme . '/';
$scheme = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'scheme'));

Datei anzeigen

@ -107,7 +107,7 @@ if (! function_exists('_js_in_foot')) {
function _js_in_foot() {
/** @purpose insert stuff in bottom of page
*/
$a = get_app();
$a = \get_app();
$ssl_state = null;
$baseurl = System::baseUrl($ssl_state);
$bottom['$baseurl'] = $baseurl;

Datei anzeigen

@ -129,7 +129,7 @@ function get_vier_config($key, $default = false, $admin = false)
function vier_community_info()
{
$a = get_app();
$a = \get_app();
$show_pages = get_vier_config("show_pages", 1);
$show_profiles = get_vier_config("show_profiles", 1);