Now there are four more ...
This commit is contained in:
parent
33e98d6264
commit
0aee6d383a
|
@ -308,7 +308,7 @@ function get_contact_details_by_url($url, $uid = -1, $default = array()) {
|
||||||
|
|
||||||
if ((($profile["addr"] == "") || ($profile["name"] == "")) && ($profile["gid"] != 0) &&
|
if ((($profile["addr"] == "") || ($profile["name"] == "")) && ($profile["gid"] != 0) &&
|
||||||
in_array($profile["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) {
|
in_array($profile["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) {
|
||||||
Worker::add(PRIORITY_LOW, "update_gcontact", $profile["gid"]);
|
Worker::add(PRIORITY_LOW, "UpdateGContact", $profile["gid"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show contact details of Diaspora contacts only if connected
|
// Show contact details of Diaspora contacts only if connected
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file include/checkversion.php
|
* @file src/Worker/CheckVersion.php
|
||||||
*
|
*
|
||||||
* @brief save Friendica upstream version to the DB
|
* @brief save Friendica upstream version to the DB
|
||||||
**/
|
**/
|
||||||
|
namespace Friendica\Worker;
|
||||||
|
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
|
|
||||||
|
@ -14,7 +15,8 @@ use Friendica\Core\Config;
|
||||||
* Checking the upstream version is optional (opt-in) and can be done to either
|
* Checking the upstream version is optional (opt-in) and can be done to either
|
||||||
* the master or the develop branch in the repository.
|
* the master or the develop branch in the repository.
|
||||||
*/
|
*/
|
||||||
function checkversion_run () {
|
class CheckVersion {
|
||||||
|
public static function execute() {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
logger('checkversion: start');
|
logger('checkversion: start');
|
||||||
|
@ -31,7 +33,7 @@ function checkversion_run () {
|
||||||
default:
|
default:
|
||||||
// don't check
|
// don't check
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
logger("Checking VERSION from: ".$checked_url, LOGGER_DEBUG);
|
logger("Checking VERSION from: ".$checked_url, LOGGER_DEBUG);
|
||||||
|
|
||||||
// fetch the VERSION file
|
// fetch the VERSION file
|
||||||
|
@ -43,4 +45,5 @@ function checkversion_run () {
|
||||||
logger('checkversion: end');
|
logger('checkversion: end');
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@ Class Cron {
|
||||||
dba::delete('workerqueue', array('`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 12 HOUR'));
|
dba::delete('workerqueue', array('`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 12 HOUR'));
|
||||||
|
|
||||||
// check upstream version?
|
// check upstream version?
|
||||||
Worker::add(PRIORITY_LOW, 'checkversion');
|
Worker::add(PRIORITY_LOW, 'CheckVersion');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Poll contacts
|
// Poll contacts
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
namespace Friendica\Worker;
|
||||||
|
|
||||||
require_once("include/tags.php");
|
require_once("include/tags.php");
|
||||||
|
|
||||||
function tagupdate_run(&$argv, &$argc){
|
class TagUpdate {
|
||||||
|
public static function execute() {
|
||||||
update_items();
|
update_items();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
namespace Friendica\Worker;
|
||||||
|
|
||||||
require_once("include/threads.php");
|
require_once("include/threads.php");
|
||||||
|
|
||||||
function threadupdate_run(&$argv, &$argc){
|
class ThreadUpdate {
|
||||||
|
public static function execute() {
|
||||||
update_threads();
|
update_threads();
|
||||||
update_threads_mention();
|
update_threads_mention();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,22 +1,19 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* @file include/update_gcontact.php
|
* @file src/Worker/UpdateGcontact.php
|
||||||
*/
|
*/
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
use Friendica\Database\DBM;
|
use Friendica\Database\DBM;
|
||||||
use Friendica\Network\Probe;
|
use Friendica\Network\Probe;
|
||||||
use Friendica\Protocol\PortableContact;
|
use Friendica\Protocol\PortableContact;
|
||||||
|
|
||||||
function update_gcontact_run(&$argv, &$argc) {
|
class UpdateGContact {
|
||||||
|
public static function execute($contact_id) {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
logger('update_gcontact: start');
|
logger('update_gcontact: start');
|
||||||
|
|
||||||
if (($argc > 1) && (intval($argv[1]))) {
|
if (empty($contact_id)) {
|
||||||
$contact_id = intval($argv[1]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$contact_id) {
|
|
||||||
logger('update_gcontact: no contact');
|
logger('update_gcontact: no contact');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -78,4 +75,5 @@ function update_gcontact_run(&$argv, &$argc) {
|
||||||
dbesc($data["addr"]),
|
dbesc($data["addr"]),
|
||||||
dbesc(normalise_link($data["url"]))
|
dbesc(normalise_link($data["url"]))
|
||||||
);
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1601,7 +1601,7 @@ function update_1169() {
|
||||||
if (!$r)
|
if (!$r)
|
||||||
return UPDATE_FAILED;
|
return UPDATE_FAILED;
|
||||||
|
|
||||||
Worker::add(PRIORITY_LOW, "threadupdate");
|
Worker::add(PRIORITY_LOW, "ThreadUpdate");
|
||||||
|
|
||||||
return UPDATE_SUCCESS;
|
return UPDATE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -1650,7 +1650,7 @@ function update_1178() {
|
||||||
function update_1180() {
|
function update_1180() {
|
||||||
|
|
||||||
// Fill the new fields in the term table.
|
// Fill the new fields in the term table.
|
||||||
Worker::add(PRIORITY_LOW, "tagupdate");
|
Worker::add(PRIORITY_LOW, "TagUpdate");
|
||||||
|
|
||||||
return UPDATE_SUCCESS;
|
return UPDATE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue