diff options
author | Mario <mario@mariovavti.com> | 2021-01-18 14:11:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-18 14:11:29 +0000 |
commit | 101005f3d23b2a12c017293ef6df2f8875339949 (patch) | |
tree | 00b60684564099b2c4f3087ffd14b3f07ccdf609 /Zotlabs/Daemon | |
parent | 8f88543478ecdf80b01757a0f09bb2cbea50c7b8 (diff) | |
download | volse-hubzilla-101005f3d23b2a12c017293ef6df2f8875339949.tar.gz volse-hubzilla-101005f3d23b2a12c017293ef6df2f8875339949.tar.bz2 volse-hubzilla-101005f3d23b2a12c017293ef6df2f8875339949.zip |
more cleanup daemon/importfile
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Importfile.php | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/Zotlabs/Daemon/Importfile.php b/Zotlabs/Daemon/Importfile.php index 749949679..299fb1ee5 100644 --- a/Zotlabs/Daemon/Importfile.php +++ b/Zotlabs/Daemon/Importfile.php @@ -6,22 +6,21 @@ use Zotlabs\Lib\Libsync; class Importfile { - static public function run($argc,$argv){ + static public function run($argc, $argv) { - logger('Importfile: ' . print_r($argv,true)); + logger('Importfile: ' . print_r($argv, true)); - if($argc < 3) + if ($argc < 3) return; $channel = channelx_by_n($argv[1]); - if(! $channel) + if (!$channel) return; $srcfile = $argv[2]; $folder = (($argc > 3) ? $argv[3] : ''); $dstname = (($argc > 4) ? $argv[4] : ''); - - $hash = random_string(); + $hash = random_string(); $arr = [ 'src' => $srcfile, @@ -35,15 +34,15 @@ class Importfile { 'replace' => true ]; - if($folder) + if ($folder) $arr['folder'] = $folder; - attach_store($channel,$channel['channel_hash'],'import',$arr); + attach_store($channel, $channel['channel_hash'], 'import', $arr); + + $sync = attach_export_data($channel, $hash); + if ($sync) + Libsync::build_sync_packet($channel['channel_id'], ['file' => [$sync]]); - $sync = attach_export_data($channel,$hash); - if($sync) - Libsync::build_sync_packet($channel['channel_id'],array('file' => array($sync))); - return; } } |