send stuff to zothub as a fallback directory master for now
This commit is contained in:
@@ -1,27 +1,56 @@
|
||||
<?php
|
||||
require_once('boot.php');
|
||||
require_once('include/zot.php');
|
||||
require_once('include/cli_startup.php');
|
||||
|
||||
function find_upstream_directory($dirmode) {
|
||||
return;
|
||||
}
|
||||
|
||||
function directory_run($argv, $argc){
|
||||
|
||||
cli_startup();
|
||||
|
||||
if(argc() != 2)
|
||||
if($argc != 2)
|
||||
return;
|
||||
|
||||
$dir = get_config('system','directory_submit_url');
|
||||
$dirmode = get_config('system','directory_mode');
|
||||
if($dirmode === false)
|
||||
$dirmode = DIRECTORY_MODE_NORMAL;
|
||||
|
||||
if(! strlen($dir))
|
||||
if(($dirmode == DIRECTORY_MODE_PRIMARY) || ($dirmode == DIRECTORY_MODE_STANDALONE)) {
|
||||
// syncdirs();
|
||||
return;
|
||||
}
|
||||
|
||||
$x = q("select * from channel where channel_id = %d limit 1",
|
||||
intval($argv[1])
|
||||
);
|
||||
if(! $x)
|
||||
return;
|
||||
|
||||
$arr = array('url' => argv(1));
|
||||
$channel = $x[0];
|
||||
|
||||
call_hooks('globaldir_update', $arr);
|
||||
// is channel profile visible to the public?
|
||||
// FIXME - remove dir entry if permission is revoked
|
||||
|
||||
if(strlen($arr['url']))
|
||||
fetch_url($dir . '?url=' . bin2hex($arr['url']));
|
||||
if(! perm_is_allowed($channel['channel_id'],null,'view_profile'))
|
||||
return;
|
||||
|
||||
$directory = find_upstream_directory($dirmode);
|
||||
|
||||
if($directory) {
|
||||
$url = $directory['url'];
|
||||
}
|
||||
else {
|
||||
$url = DIRECTORY_FALLBACK_MASTER . '/post';
|
||||
}
|
||||
|
||||
$packet = zot_build_packet($channel,'refresh');
|
||||
$z = zot_zot($url,$packet);
|
||||
|
||||
// re-queue if unsuccessful
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (array_search(__file__,get_included_files())===0){
|
||||
|
||||
Reference in New Issue
Block a user