streams/util/connect

69 lines
1.4 KiB
Text
Raw Normal View History

#!/usr/bin/env php
<?php
// connect utility
2018-06-05 01:40:11 +00:00
use Zotlabs\Lib\Libsync;
use Zotlabs\Lib\Connect;
use Zotlabs\Daemon\Run;
2018-06-01 04:05:09 +00:00
if (! file_exists('include/cli_startup.php')) {
echo t('Run from the top level $Projectname web directory, as util/connect <args>') . PHP_EOL;
exit(1);
}
require_once('include/cli_startup.php');
cli_startup();
if($argc != 3) {
echo t('Usage: util/connect channel_id|channel_address channel[@hub]');
exit(1);
}
if (ctype_digit($argv[1])) {
$c = channelx_by_n($argv[1]);
}
else {
$c = channelx_by_nick($argv[1]);
}
if (! $c) {
echo t('Source channel not found.');
exit(1);
}
$result = Connect::connect($c,$argv[2]);
if ($result['success'] == false) {
echo $result['message'];
exit(1);
}
$clone = [];
foreach ($result['abook'] as $k => $v) {
if (strpos($k,'abook_') === 0) {
$clone[$k] = $v;
}
}
unset($clone['abook_id']);
unset($clone['abook_account']);
unset($clone['abook_channel']);
$abconfig = load_abconfig($c['channel_id'],$clone['abook_xchan']);
if ($abconfig) {
$clone['abconfig'] = $abconfig;
}
Libsync::build_sync_packet($c['channel_id'], [ 'abook' => [ $clone ] ], true);
2018-05-26 22:12:02 +00:00
$can_view_stream = their_perms_contains($c['channel_id'],$clone['abook_xchan'],'view_stream');
// If we can view their stream, pull in some posts
if (($can_view_stream) || ($result['abook']['xchan_network'] === 'rss')) {
Run::Summon([ 'Onepoll',$result['abook']['abook_id'] ]);
}
exit(0);