PHPStan: Fix missing requires/namespaces
This commit is contained in:
parent
e40917b792
commit
10b72b0e9e
|
@ -14,6 +14,9 @@ use Detection\MobileDetect;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
|
require_once 'boot.php';
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* class: App
|
* class: App
|
||||||
|
|
|
@ -11,6 +11,8 @@ use Friendica\Core\System;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This class handles methods related to the forum functionality
|
* @brief This class handles methods related to the forum functionality
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -9,6 +9,8 @@ use Friendica\Core\PConfig;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Class for storing data for a short time
|
* @brief Class for storing data for a short time
|
||||||
*/
|
*/
|
||||||
|
@ -32,7 +34,7 @@ class Cache
|
||||||
$memcache_host = Config::get('system', 'memcache_host', '127.0.0.1');
|
$memcache_host = Config::get('system', 'memcache_host', '127.0.0.1');
|
||||||
$memcache_port = Config::get('system', 'memcache_port', 11211);
|
$memcache_port = Config::get('system', 'memcache_port', 11211);
|
||||||
|
|
||||||
$memcache = new Memcache;
|
$memcache = new \Memcache;
|
||||||
|
|
||||||
if (!$memcache->connect($memcache_host, $memcache_port)) {
|
if (!$memcache->connect($memcache_host, $memcache_port)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -11,6 +11,8 @@ namespace Friendica\Core;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Arbitrary sytem configuration storage
|
* @brief Arbitrary sytem configuration storage
|
||||||
*
|
*
|
||||||
|
|
|
@ -6,11 +6,12 @@
|
||||||
*/
|
*/
|
||||||
namespace Friendica\Core;
|
namespace Friendica\Core;
|
||||||
|
|
||||||
use Friendica\Core\Pconfig;
|
use Friendica\Core\PConfig;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/html2plain.php';
|
require_once 'include/html2plain.php';
|
||||||
require_once 'include/datetime.php';
|
require_once 'include/datetime.php';
|
||||||
require_once 'include/bbcode.php';
|
require_once 'include/bbcode.php';
|
||||||
|
|
|
@ -7,6 +7,8 @@ namespace Friendica\Core;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file include/Core/PConfig.php
|
* @file include/Core/PConfig.php
|
||||||
* @brief contains the class with methods for the management
|
* @brief contains the class with methods for the management
|
||||||
|
|
|
@ -13,6 +13,8 @@ use Friendica\Util\Lock;
|
||||||
|
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file src/Core/Worker.php
|
* @file src/Core/Worker.php
|
||||||
*
|
*
|
||||||
|
|
|
@ -6,6 +6,8 @@ namespace Friendica\Database;
|
||||||
|
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This class contain functions for the database management
|
* @brief This class contain functions for the database management
|
||||||
*
|
*
|
||||||
|
|
|
@ -9,6 +9,8 @@ use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
require_once "boot.php";
|
require_once "boot.php";
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
require_once 'include/enotify.php';
|
||||||
require_once "include/text.php";
|
require_once "include/text.php";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -565,7 +567,7 @@ class DBStructure {
|
||||||
private static function createIndex($indexname, $fieldnames, $method = "ADD") {
|
private static function createIndex($indexname, $fieldnames, $method = "ADD") {
|
||||||
$method = strtoupper(trim($method));
|
$method = strtoupper(trim($method));
|
||||||
if ($method!="" && $method!="ADD") {
|
if ($method!="" && $method!="ADD") {
|
||||||
throw new Exception("Invalid parameter 'method' in self::createIndex(): '$method'");
|
throw new \Exception("Invalid parameter 'method' in self::createIndex(): '$method'");
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($fieldnames[0] == "UNIQUE") {
|
if ($fieldnames[0] == "UNIQUE") {
|
||||||
|
|
|
@ -20,6 +20,7 @@ use Friendica\Protocol\Salmon;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
require_once 'boot.php';
|
require_once 'boot.php';
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/text.php';
|
require_once 'include/text.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -17,6 +17,7 @@ use dba;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
require_once 'include/datetime.php';
|
require_once 'include/datetime.php';
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/network.php';
|
require_once 'include/network.php';
|
||||||
require_once 'include/html2bbcode.php';
|
require_once 'include/html2bbcode.php';
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
require_once 'boot.php';
|
require_once 'boot.php';
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/text.php';
|
require_once 'include/text.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -12,7 +12,9 @@ use Friendica\Database\DBM;
|
||||||
use Friendica\Object\Image;
|
use Friendica\Object\Image;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once "include/photos.php";
|
require_once "include/photos.php";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class to handle photo dabatase table
|
* Class to handle photo dabatase table
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -21,6 +21,7 @@ use Exception;
|
||||||
|
|
||||||
require_once 'boot.php';
|
require_once 'boot.php';
|
||||||
require_once 'include/crypto.php';
|
require_once 'include/crypto.php';
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/enotify.php';
|
require_once 'include/enotify.php';
|
||||||
require_once 'include/network.php';
|
require_once 'include/network.php';
|
||||||
require_once 'library/openid.php';
|
require_once 'library/openid.php';
|
||||||
|
@ -186,7 +187,7 @@ class User
|
||||||
$_SESSION['register'] = 1;
|
$_SESSION['register'] = 1;
|
||||||
$_SESSION['openid'] = $openid_url;
|
$_SESSION['openid'] = $openid_url;
|
||||||
|
|
||||||
$openid = new LightOpenID;
|
$openid = new \LightOpenID;
|
||||||
$openid->identity = $openid_url;
|
$openid->identity = $openid_url;
|
||||||
$openid->returnUrl = System::baseUrl() . '/openid';
|
$openid->returnUrl = System::baseUrl() . '/openid';
|
||||||
$openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
|
$openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
|
||||||
|
|
|
@ -17,6 +17,8 @@ use OAuthDataStore;
|
||||||
define('REQUEST_TOKEN_DURATION', 300);
|
define('REQUEST_TOKEN_DURATION', 300);
|
||||||
define('ACCESS_TOKEN_DURATION', 31536000);
|
define('ACCESS_TOKEN_DURATION', 31536000);
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
require_once "library/OAuth1.php";
|
require_once "library/OAuth1.php";
|
||||||
require_once "library/oauth2-php/lib/OAuth2.inc";
|
require_once "library/oauth2-php/lib/OAuth2.inc";
|
||||||
|
|
||||||
|
@ -45,7 +47,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
||||||
$r = dba::inArray($r);
|
$r = dba::inArray($r);
|
||||||
|
|
||||||
if (DBM::is_result($r)) {
|
if (DBM::is_result($r)) {
|
||||||
return new OAuthConsumer($r[0]['client_id'], $r[0]['pw'], $r[0]['redirect_uri']);
|
return new \OAuthConsumer($r[0]['client_id'], $r[0]['pw'], $r[0]['redirect_uri']);
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
@ -65,7 +67,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
||||||
$r = dba::inArray($s);
|
$r = dba::inArray($s);
|
||||||
|
|
||||||
if (DBM::is_result($r)) {
|
if (DBM::is_result($r)) {
|
||||||
$ot=new OAuthToken($r[0]['id'], $r[0]['secret']);
|
$ot = new \OAuthToken($r[0]['id'], $r[0]['secret']);
|
||||||
$ot->scope = $r[0]['scope'];
|
$ot->scope = $r[0]['scope'];
|
||||||
$ot->expires = $r[0]['expires'];
|
$ot->expires = $r[0]['expires'];
|
||||||
$ot->uid = $r[0]['uid'];
|
$ot->uid = $r[0]['uid'];
|
||||||
|
@ -87,7 +89,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
||||||
$r = dba::select('tokens', ['id', 'secret'], ['client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp], ['limit' => 1]);
|
$r = dba::select('tokens', ['id', 'secret'], ['client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp], ['limit' => 1]);
|
||||||
|
|
||||||
if (DBM::is_result($r)) {
|
if (DBM::is_result($r)) {
|
||||||
return new OAuthToken($r['id'], $r['secret']);
|
return new \OAuthToken($r['id'], $r['secret']);
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
@ -124,7 +126,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new OAuthToken($key, $sec);
|
return new \OAuthToken($key, $sec);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -163,7 +165,7 @@ class FKOAuthDataStore extends OAuthDataStore
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($r) {
|
if ($r) {
|
||||||
$ret = new OAuthToken($key, $sec);
|
$ret = new \OAuthToken($key, $sec);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,9 +20,10 @@ use Friendica\Protocol\Feed;
|
||||||
use Friendica\Util\XML;
|
use Friendica\Util\XML;
|
||||||
|
|
||||||
use dba;
|
use dba;
|
||||||
use DomXPath;
|
use DOMXPath;
|
||||||
use DOMDocument;
|
use DOMDocument;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/network.php';
|
require_once 'include/network.php';
|
||||||
require_once "include/crypto.php";
|
require_once "include/crypto.php";
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ use Friendica\Database\DBM;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/text.php';
|
require_once 'include/text.php';
|
||||||
require_once 'boot.php';
|
require_once 'boot.php';
|
||||||
require_once 'include/conversation.php';
|
require_once 'include/conversation.php';
|
||||||
|
|
|
@ -10,9 +10,10 @@ use Friendica\Object\Image;
|
||||||
use Friendica\Util\XML;
|
use Friendica\Util\XML;
|
||||||
|
|
||||||
use dba;
|
use dba;
|
||||||
use DomXPath;
|
use DOMXPath;
|
||||||
use DOMDocument;
|
use DOMDocument;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once "include/network.php";
|
require_once "include/network.php";
|
||||||
require_once "include/oembed.php";
|
require_once "include/oembed.php";
|
||||||
|
|
||||||
|
@ -215,7 +216,7 @@ class ParseUrl
|
||||||
XML::deleteNode($doc, "ol");
|
XML::deleteNode($doc, "ol");
|
||||||
XML::deleteNode($doc, "ul");
|
XML::deleteNode($doc, "ul");
|
||||||
|
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
|
|
||||||
$list = $xpath->query("//meta[@content]");
|
$list = $xpath->query("//meta[@content]");
|
||||||
foreach ($list as $node) {
|
foreach ($list as $node) {
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
*/
|
*/
|
||||||
namespace Friendica\Protocol;
|
namespace Friendica\Protocol;
|
||||||
|
|
||||||
use Friendica\App;
|
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Core\Worker;
|
use Friendica\Core\Worker;
|
||||||
|
@ -22,8 +21,10 @@ use Friendica\Util\XML;
|
||||||
|
|
||||||
use dba;
|
use dba;
|
||||||
use DOMDocument;
|
use DOMDocument;
|
||||||
use DomXPath;
|
use DOMXPath;
|
||||||
|
|
||||||
|
require_once 'boot.php';
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once "include/enotify.php";
|
require_once "include/enotify.php";
|
||||||
require_once "include/threads.php";
|
require_once "include/threads.php";
|
||||||
require_once "include/items.php";
|
require_once "include/items.php";
|
||||||
|
@ -1298,7 +1299,7 @@ class DFRN
|
||||||
case 2:
|
case 2:
|
||||||
// RINO 2 based on php-encryption
|
// RINO 2 based on php-encryption
|
||||||
try {
|
try {
|
||||||
$key = \Crypto::createNewRandomKey();
|
$key = \Crypto::CreateNewRandomKey();
|
||||||
} catch (\CryptoTestFailedException $ex) {
|
} catch (\CryptoTestFailedException $ex) {
|
||||||
logger('Cannot safely create a key');
|
logger('Cannot safely create a key');
|
||||||
return -4;
|
return -4;
|
||||||
|
@ -1307,7 +1308,7 @@ class DFRN
|
||||||
return -5;
|
return -5;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
$data = \Crypto::encrypt($postvars['data'], $key);
|
$data = \Crypto::Encrypt($postvars['data'], $key);
|
||||||
} catch (\CryptoTestFailedException $ex) {
|
} catch (\CryptoTestFailedException $ex) {
|
||||||
logger('Cannot safely perform encryption');
|
logger('Cannot safely perform encryption');
|
||||||
return -6;
|
return -6;
|
||||||
|
@ -2505,13 +2506,13 @@ class DFRN
|
||||||
|
|
||||||
$item['body'] = oembed_html2bbcode($item['body']);
|
$item['body'] = oembed_html2bbcode($item['body']);
|
||||||
|
|
||||||
$config = HTMLPurifier_Config::createDefault();
|
$config = \HTMLPurifier_Config::createDefault();
|
||||||
$config->set('Cache.DefinitionImpl', null);
|
$config->set('Cache.DefinitionImpl', null);
|
||||||
|
|
||||||
// we shouldn't need a whitelist, because the bbcode converter
|
// we shouldn't need a whitelist, because the bbcode converter
|
||||||
// will strip out any unsupported tags.
|
// will strip out any unsupported tags.
|
||||||
|
|
||||||
$purifier = new HTMLPurifier($config);
|
$purifier = new \HTMLPurifier($config);
|
||||||
$item['body'] = $purifier->purify($item['body']);
|
$item['body'] = $purifier->purify($item['body']);
|
||||||
|
|
||||||
$item['body'] = @html2bbcode($item['body']);
|
$item['body'] = @html2bbcode($item['body']);
|
||||||
|
@ -2977,7 +2978,7 @@ class DFRN
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadXML($xml);
|
@$doc->loadXML($xml);
|
||||||
|
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$xpath->registerNamespace("atom", NAMESPACE_ATOM1);
|
$xpath->registerNamespace("atom", NAMESPACE_ATOM1);
|
||||||
$xpath->registerNamespace("thr", NAMESPACE_THREAD);
|
$xpath->registerNamespace("thr", NAMESPACE_THREAD);
|
||||||
$xpath->registerNamespace("at", NAMESPACE_TOMB);
|
$xpath->registerNamespace("at", NAMESPACE_TOMB);
|
||||||
|
|
|
@ -27,6 +27,7 @@ use Friendica\Util\XML;
|
||||||
use dba;
|
use dba;
|
||||||
use SimpleXMLElement;
|
use SimpleXMLElement;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/items.php';
|
require_once 'include/items.php';
|
||||||
require_once 'include/bb2diaspora.php';
|
require_once 'include/bb2diaspora.php';
|
||||||
require_once 'include/datetime.php';
|
require_once 'include/datetime.php';
|
||||||
|
|
|
@ -10,10 +10,11 @@ use Friendica\Database\DBM;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use dba;
|
use dba;
|
||||||
use DOMDocument;
|
use DOMDocument;
|
||||||
use DomXPath;
|
use DOMXPath;
|
||||||
|
|
||||||
require_once("include/html2bbcode.php");
|
require_once 'include/dba.php';
|
||||||
require_once("include/items.php");
|
require_once 'include/html2bbcode.php';
|
||||||
|
require_once 'include/items.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This class contain functions to import feeds
|
* @brief This class contain functions to import feeds
|
||||||
|
@ -55,7 +56,7 @@ class Feed {
|
||||||
|
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadXML(trim($xml));
|
@$doc->loadXML(trim($xml));
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
||||||
$xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/");
|
$xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/");
|
||||||
$xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/");
|
$xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/");
|
||||||
|
|
|
@ -17,8 +17,9 @@ use Friendica\Util\Lock;
|
||||||
use Friendica\Util\XML;
|
use Friendica\Util\XML;
|
||||||
use dba;
|
use dba;
|
||||||
use DOMDocument;
|
use DOMDocument;
|
||||||
use DomXPath;
|
use DOMXPath;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/threads.php';
|
require_once 'include/threads.php';
|
||||||
require_once 'include/html2bbcode.php';
|
require_once 'include/html2bbcode.php';
|
||||||
require_once 'include/bbcode.php';
|
require_once 'include/bbcode.php';
|
||||||
|
@ -251,7 +252,7 @@ class OStatus
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadXML($xml);
|
@$doc->loadXML($xml);
|
||||||
|
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
||||||
$xpath->registerNamespace('thr', NAMESPACE_THREAD);
|
$xpath->registerNamespace('thr', NAMESPACE_THREAD);
|
||||||
$xpath->registerNamespace('georss', NAMESPACE_GEORSS);
|
$xpath->registerNamespace('georss', NAMESPACE_GEORSS);
|
||||||
|
@ -329,7 +330,7 @@ class OStatus
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadXML($xml);
|
@$doc->loadXML($xml);
|
||||||
|
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
||||||
$xpath->registerNamespace('thr', NAMESPACE_THREAD);
|
$xpath->registerNamespace('thr', NAMESPACE_THREAD);
|
||||||
$xpath->registerNamespace('georss', NAMESPACE_GEORSS);
|
$xpath->registerNamespace('georss', NAMESPACE_GEORSS);
|
||||||
|
@ -739,7 +740,7 @@ class OStatus
|
||||||
if (!@$doc->loadHTML($conversation_data['body'])) {
|
if (!@$doc->loadHTML($conversation_data['body'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
|
|
||||||
$links = $xpath->query('//link');
|
$links = $xpath->query('//link');
|
||||||
if ($links) {
|
if ($links) {
|
||||||
|
@ -779,7 +780,7 @@ class OStatus
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadXML($xml);
|
@$doc->loadXML($xml);
|
||||||
|
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
|
||||||
$xpath->registerNamespace('thr', NAMESPACE_THREAD);
|
$xpath->registerNamespace('thr', NAMESPACE_THREAD);
|
||||||
$xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
|
$xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
|
||||||
|
@ -929,7 +930,7 @@ class OStatus
|
||||||
if (!@$doc->loadHTML($related_data['body'])) {
|
if (!@$doc->loadHTML($related_data['body'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
|
|
||||||
$atom_file = '';
|
$atom_file = '';
|
||||||
|
|
||||||
|
|
|
@ -17,9 +17,10 @@ use Friendica\Model\Profile;
|
||||||
use Friendica\Network\Probe;
|
use Friendica\Network\Probe;
|
||||||
use dba;
|
use dba;
|
||||||
use DOMDocument;
|
use DOMDocument;
|
||||||
use DomXPath;
|
use DOMXPath;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/datetime.php';
|
require_once 'include/datetime.php';
|
||||||
require_once 'include/network.php';
|
require_once 'include/network.php';
|
||||||
require_once 'include/html2bbcode.php';
|
require_once 'include/html2bbcode.php';
|
||||||
|
@ -512,7 +513,7 @@ class PortableContact
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadXML($feedret["body"]);
|
@$doc->loadXML($feedret["body"]);
|
||||||
|
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
|
$xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
|
||||||
|
|
||||||
$entries = $xpath->query('/atom:feed/atom:entry');
|
$entries = $xpath->query('/atom:feed/atom:entry');
|
||||||
|
@ -768,7 +769,7 @@ class PortableContact
|
||||||
|
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadHTML($body);
|
@$doc->loadHTML($body);
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
|
|
||||||
$list = $xpath->query("//meta[@name]");
|
$list = $xpath->query("//meta[@name]");
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,7 @@ use Friendica\Database\DBM;
|
||||||
use Friendica\Model\User;
|
use Friendica\Model\User;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/dba.php';
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
class ExAuth
|
class ExAuth
|
||||||
|
@ -313,7 +314,7 @@ class ExAuth
|
||||||
}
|
}
|
||||||
|
|
||||||
$file = $lockpath . DIRECTORY_SEPARATOR . $host;
|
$file = $lockpath . DIRECTORY_SEPARATOR . $host;
|
||||||
if (Pidfile::isRunningProcess($file)) {
|
if (PidFile::isRunningProcess($file)) {
|
||||||
if (PidFile::killProcess($file)) {
|
if (PidFile::killProcess($file)) {
|
||||||
$this->writeLog(LOG_INFO, 'Old process was successfully killed');
|
$this->writeLog(LOG_INFO, 'Old process was successfully killed');
|
||||||
} else {
|
} else {
|
||||||
|
@ -323,7 +324,7 @@ class ExAuth
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now it is safe to create the pid file
|
// Now it is safe to create the pid file
|
||||||
Pidfile::create($file);
|
PidFile::create($file);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -14,6 +14,8 @@ use Friendica\Database\DBM;
|
||||||
use Memcache;
|
use Memcache;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This class contain Functions for preventing parallel execution of functions
|
* @brief This class contain Functions for preventing parallel execution of functions
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace Friendica\Util;
|
||||||
/**
|
/**
|
||||||
* @brief Pidfile class
|
* @brief Pidfile class
|
||||||
*/
|
*/
|
||||||
class Pidfile
|
class PidFile
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Read the pid from a given pid file
|
* @brief Read the pid from a given pid file
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*/
|
*/
|
||||||
namespace Friendica\Util;
|
namespace Friendica\Util;
|
||||||
|
|
||||||
use DomXPath;
|
use DOMXPath;
|
||||||
use SimpleXMLElement;
|
use SimpleXMLElement;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -407,7 +407,7 @@ class XML
|
||||||
*/
|
*/
|
||||||
public static function deleteNode(&$doc, $node)
|
public static function deleteNode(&$doc, $node)
|
||||||
{
|
{
|
||||||
$xpath = new DomXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$list = $xpath->query("//".$node);
|
$list = $xpath->query("//".$node);
|
||||||
foreach ($list as $child) {
|
foreach ($list as $child) {
|
||||||
$child->parentNode->removeChild($child);
|
$child->parentNode->removeChild($child);
|
||||||
|
|
|
@ -9,6 +9,8 @@ use Friendica\Core\Worker;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
Class Cron {
|
Class Cron {
|
||||||
public static function execute($parameter = '', $generation = 0) {
|
public static function execute($parameter = '', $generation = 0) {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
|
@ -16,6 +16,10 @@ use Friendica\Network\Probe;
|
||||||
use Friendica\Protocol\PortableContact;
|
use Friendica\Protocol\PortableContact;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
require_once 'include/post_update.php';
|
||||||
|
require_once 'mod/nodeinfo.php';
|
||||||
|
|
||||||
class CronJobs
|
class CronJobs
|
||||||
{
|
{
|
||||||
public static function execute($command = '')
|
public static function execute($command = '')
|
||||||
|
|
|
@ -10,6 +10,8 @@ use Friendica\Core\Config;
|
||||||
use Friendica\Core\Worker;
|
use Friendica\Core\Worker;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
class DBClean {
|
class DBClean {
|
||||||
public static function execute($stage = 0) {
|
public static function execute($stage = 0) {
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,8 @@ use Friendica\Core\Worker;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
class Expire {
|
class Expire {
|
||||||
public static function execute($param = '', $hook_name = '') {
|
public static function execute($param = '', $hook_name = '') {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
|
@ -15,6 +15,7 @@ use Friendica\Protocol\OStatus;
|
||||||
use Friendica\Protocol\Salmon;
|
use Friendica\Protocol\Salmon;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/queue_fn.php';
|
require_once 'include/queue_fn.php';
|
||||||
require_once 'include/html2plain.php';
|
require_once 'include/html2plain.php';
|
||||||
require_once 'include/datetime.php';
|
require_once 'include/datetime.php';
|
||||||
|
|
|
@ -12,6 +12,7 @@ use Friendica\Protocol\Email;
|
||||||
use Friendica\Protocol\PortableContact;
|
use Friendica\Protocol\PortableContact;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/follow.php';
|
require_once 'include/follow.php';
|
||||||
|
|
||||||
Class OnePoll
|
Class OnePoll
|
||||||
|
|
|
@ -14,6 +14,7 @@ use Friendica\Protocol\PortableContact;
|
||||||
use Friendica\Protocol\Salmon;
|
use Friendica\Protocol\Salmon;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
require_once 'include/queue_fn.php';
|
require_once 'include/queue_fn.php';
|
||||||
require_once 'include/datetime.php';
|
require_once 'include/datetime.php';
|
||||||
require_once 'include/items.php';
|
require_once 'include/items.php';
|
||||||
|
|
|
@ -8,6 +8,8 @@ namespace Friendica\Worker;
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
use dba;
|
use dba;
|
||||||
|
|
||||||
|
require_once 'include/dba.php';
|
||||||
|
|
||||||
class RemoveContact {
|
class RemoveContact {
|
||||||
public static function execute($id) {
|
public static function execute($id) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue