aboutsummaryrefslogtreecommitdiffstats
path: root/util/dcp
blob: e38725aa1c2d9d6d94dcf1d99026f392950c2de4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env php
<?php

// file import to DAV utility

if(!file_exists('include/cli_startup.php')) {
	echo 'Run dcp from the top level Hubzilla web directory, as util/dcp <args>' . PHP_EOL;
	exit(1);
}

require_once('include/cli_startup.php');
require_once('include/attach.php');

cli_startup();


if($argc <= 3) {
	echo "Usage: " . $argv[0] . ' source destination' . "\n";
	echo 'Always run from the toplevel web directory.' . "\n";
	echo 'destination should begin with store/$nickname/desired/path or $nickname/desired/path' . "\n";
	echo 'Example: util/dcp /etc/motd store/joe/etc/motd' . "\n";
	exit;
}

	$dstfile = $argv[$argc - 1];


	if(strpos($dstfile,'store/') === 0)
		$dstfile = substr($dstfile,6);

	$nick = substr($dstfile,0,strpos($dstfile,'/'));

	$dstfile = substr($dstfile,strlen($nick)+1);

	$channel = channelx_by_nick($nick);
	if(! $channel)
		return;

	$isadir = false;

	$r = q("select * from attach where display_path = '%s' and uid = %d limit 1",
		dbesc($dstfile),
		intval($channel['channel_id'])
	);

	if($r && $r[0]['is_dir']) {
		$isadir = true;
		$folder = $r[0]['hash'];
	}
	else {
		$arr = [
			'pathname'  => dirname($dstfile),
			'allow_cid' => $channel['channel_allow_cid'],
			'allow_gid' => $channel['channel_allow_gid'],
			'deny_cid'  => $channel['channel_deny_cid'],
			'deny_gid'  => $channel['channel_deny_gid'],
		];

		$folder = '';
		if(dirname($dstfile)) {	
			$x = attach_mkdirp($channel,$channel['channel_hash'],$arr);
			if($x['success'])
				$folder = $x['data']['hash'];
		}
	}


	for($x = 1; $x < ($argc - 1); $x ++) {
		$srcfile = $argv[$x];

		$hash = random_string();

		$arr = [ 
			'src' => $srcfile,
			'filename' => basename($srcfile),
			'hash' => $hash,
			'allow_cid' => $channel['channel_allow_cid'],
			'allow_gid' => $channel['channel_allow_gid'],
			'deny_cid'  => $channel['channel_deny_cid'],
			'deny_gid'  => $channel['channel_deny_gid'],
			'preserve_original' => true,
		];

		if($folder)
			$arr['folder'] = $folder;
		
		attach_store($channel,$channel['channel_hash'],'import',$arr);

		$sync = attach_export_data($channel,$hash);
		if($sync)
			build_sync_packet($channel['channel_id'],array('file' => array($sync)));
	}