forked from blacksenator/carddav2fb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackgroundCommand.php
42 lines (34 loc) · 1.54 KB
/
BackgroundCommand.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
<?php
namespace Andig;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class BackgroundCommand extends Command
{
use ConfigTrait;
protected function configure()
{
$this->setName('background-image')
->setDescription('Generate an upload of a background image from quick dial numbers');
$this->addConfig();
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->loadConfig($input);
// uploading background image
$savedAttributes = [];
if (count($this->config['fritzbox']['fritzfons']) && $this->config['phonebook']['id'] == 0) {
error_log('Downloading FRITZ!Box phonebook');
$xmlPhonebook = downloadPhonebook($this->config['fritzbox'], $this->config['phonebook']);
if (count($savedAttributes = uploadAttributes($xmlPhonebook, $this->config))) {
error_log('Numbers with special attributes saved' . PHP_EOL);
} else { // no attributes are set in the FRITZ!Box or lost
$savedAttributes = downloadAttributes($this->config['fritzbox']); // try to get last saved attributes
}
uploadBackgroundImage($savedAttributes, $this->config['fritzbox']);
} else {
error_log('No destination phones are defined and/or the first phone book is not selected!');
}
return 0;
}
}