forked from blacksenator/carddav2fb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunCommand.php
157 lines (135 loc) · 5.59 KB
/
RunCommand.php
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
namespace Andig;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Helper\ProgressBar;
class RunCommand extends Command
{
use ConfigTrait;
use DownloadTrait;
protected function configure()
{
$this->setName('run')
->setDescription('Download, convert and upload - all in one')
->addOption('image', 'i', InputOption::VALUE_NONE, 'download images')
->addOption('local', 'l', InputOption::VALUE_OPTIONAL|InputOption::VALUE_IS_ARRAY, 'local file(s)');
$this->addConfig();
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->loadConfig($input);
// we want to check for image upload show stoppers as early as possible
if ($input->getOption('image')) {
$this->checkUploadImagePreconditions($this->config['fritzbox'], $this->config['phonebook']);
}
// download recent phonebook and save special attributes
$savedAttributes = [];
error_log("Downloading recent FRITZ!Box phonebook");
$recentPhonebook = downloadPhonebook($this->config['fritzbox'], $this->config['phonebook']);
if (count($savedAttributes = uploadAttributes($recentPhonebook, $this->config))) {
error_log('Phone numbers with special attributes saved');
} else {
// no attributes are set in the FRITZ!Box or lost -> try to download them
$savedAttributes = downloadAttributes($this->config['fritzbox']); // try to get last saved attributes
}
// download from server or local files
$local = $input->getOption('local');
$vcards = $this->downloadAllProviders($output, $input->getOption('image'), $local);
error_log(sprintf("Downloaded %d vCard(s) in total", count($vcards)));
// process groups & filters
$vcards = $this->processGroups($vcards);
$vcards = $this->processFilters($vcards);
// image upload
if ($input->getOption('image')) {
error_log("Detaching and uploading image(s)");
$progress = new ProgressBar($output);
$progress->start(count($vcards));
$pictures = uploadImages($vcards, $this->config['fritzbox'], $this->config['phonebook'], function () use ($progress) {
$progress->advance();
});
$progress->finish();
if ($pictures) {
error_log(sprintf(PHP_EOL . "Uploaded/refreshed %d of %d image file(s)", $pictures[0], $pictures[1]));
}
}
// fritzbox format
$xmlPhonebook = exportPhonebook($vcards, $this->config);
error_log(sprintf("Converted %d vCard(s)", count($vcards)));
if (!count($vcards)) {
error_log("Phonebook empty - skipping upload");
return 1;
}
// write back saved attributes
$xmlPhonebook = mergeAttributes($xmlPhonebook, $savedAttributes);
// upload
error_log("Uploading new phonebook to FRITZ!Box");
uploadPhonebook($xmlPhonebook, $this->config);
error_log("Successful uploaded new FRITZ!Box phonebook");
// uploading background image
if (count($this->config['fritzbox']['fritzfons']) && $this->config['phonebook']['id'] == 0) {
uploadBackgroundImage($savedAttributes, $this->config['fritzbox']);
}
// saving newer phonebook numbers
if ($this->config['phonebook']['forcedupload'] == false) {
error_log('Checking to back up newer contacts of the FRITZ!Box');
$i = checkUpdates($recentPhonebook, $xmlPhonebook, $this->config);
if ($i) {
error_log(sprintf("Saved %d contact(s)", $i));
}
}
// uploading fax adressbook
if (isset($this->config['fritzbox']['fritzadr'])) {
error_log('Selecting and uploading fax number(s) for FRITZ!fax');
$i = uploadFritzAdr($xmlPhonebook, $this->config['fritzbox']);
if ($i) {
error_log(sprintf("Uploaded %d fax number entries into fritzadr.dbf", $i));
}
}
return 0;
}
/**
* checks if preconditions for upload images are OK
*
* @return mixed (true if all preconditions OK, error string otherwise)
*/
private function checkUploadImagePreconditions($configFritz, $configPhonebook)
{
if (!function_exists("ftp_connect")) {
throw new \Exception(
<<<EOD
FTP functions not available in your PHP installation.
Image upload not possible (remove -i switch).
Ensure PHP was installed with --enable-ftp
Ensure php.ini does not list ftp_* functions in 'disable_functions'
In shell run: php -r \"phpinfo();\" | grep -i FTP"
EOD
);
}
if (!$configFritz['fonpix']) {
throw new \Exception(
<<<EOD
config.php missing fritzbox/fonpix setting.
Image upload not possible (remove -i switch).
EOD
);
}
if (!$configPhonebook['imagepath']) {
throw new \Exception(
<<<EOD
config.php missing phonebook/imagepath setting.
Image upload not possible (remove -i switch).
EOD
);
}
if ($configFritz['user'] == 'dslf-conf') {
throw new \Exception(
<<<EOD
TR-064 default user dslf-conf has no permission for ftp access.
Image upload not possible (remove -i switch).
EOD
);
}
}
}