gsFunctions renamed

gsFetchUsers -> fetchGsUsers
gsDiscover -> discoverGsUsers
This commit is contained in:
Adam Magness 2017-11-15 12:02:08 -05:00
parent 326c4a18c0
commit 9e90589c21
2 changed files with 4 additions and 4 deletions

View File

@ -98,7 +98,7 @@ function discover_poco_run(&$argv, &$argc)
// Query GNU Social servers for their users ("statistics" addon has to be enabled on the GS server) // Query GNU Social servers for their users ("statistics" addon has to be enabled on the GS server)
if (!Config::get('system', 'ostatus_disabled')) { if (!Config::get('system', 'ostatus_disabled')) {
GlobalContact::gsDiscover(); GlobalContact::discoverGsUsers();
} }
} }

View File

@ -924,7 +924,7 @@ class GlobalContact
* *
* @param str $server Server address * @param str $server Server address
*/ */
public static function gsFetchUsers($server) public static function fetchGsUsers($server)
{ {
logger("Fetching users from GNU Social server ".$server, LOGGER_DEBUG); logger("Fetching users from GNU Social server ".$server, LOGGER_DEBUG);
@ -980,7 +980,7 @@ class GlobalContact
* @brief Asking GNU Social server on a regular base for their user data * @brief Asking GNU Social server on a regular base for their user data
* *
*/ */
public static function gsDiscover() public static function discoverGsUsers()
{ {
$requery_days = intval(Config::get("system", "poco_requery_days")); $requery_days = intval(Config::get("system", "poco_requery_days"));
@ -997,7 +997,7 @@ class GlobalContact
} }
foreach ($r as $server) { foreach ($r as $server) {
self::gsFetchUsers($server["url"]); self::fetchGsUsers($server["url"]);
q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
} }
} }