blob: 14b74c614739c0a0b9dd16e7d2537154831f8b43 (
plain)
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
|
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-08-16
*/
/**
* Class Command_Backup
*/
class Command_Backup extends Command_AbstractCommand
{
/**
* @var Configuration_Path
*/
private $pathConfiguration;
/**
* @var Filesystem
*/
private $filesystem;
/**
* @param Configuration_Path $configuration
*/
public function setPathConfiguration(Configuration_Path $configuration)
{
$this->pathConfiguration = $configuration;
}
/**
* @param Filesystem $filesystem
*/
public function setFilesystem(Filesystem $filesystem)
{
$this->filesystem = $filesystem;
}
/**
* @throws Exception
*/
public function execute()
{
if (!$this->filesystem->isDirectory($this->pathConfiguration->getBackupPath())) {
$this->filesystem->createDirectory($this->pathConfiguration->getBackupPath());
}
$identifierToPaths = array(
'channels' => array(
'backup' => $this->pathConfiguration->getBackupChannelsFilePath(),
'chat' => $this->pathConfiguration->getChatChannelsFilePath()
),
'application' => array(
'backup' => $this->pathConfiguration->getBackupConfigurationFilePath(),
'chat' => $this->pathConfiguration->getChatConfigurationFilePath()
),
'users' => array(
'backup' => $this->pathConfiguration->getBackupUsersFilePath(),
'chat' => $this->pathConfiguration->getChatUsersFilePath()
),
'version' => array(
'backup' => $this->pathConfiguration->getBackupVersionFilePath(),
'chat' => $this->pathConfiguration->getChatVersionFilePath()
),
);
foreach ($identifierToPaths as $identifier => $paths) {
if ($this->filesystem->isFile($paths['backup'])) {
$this->output->addLine($identifier . ' backup file available, will delete it ...');
$this->filesystem->deleteFile($paths['backup']);
}
}
foreach ($identifierToPaths as $identifier => $paths) {
echo 'creating backup of ' . $identifier . ' ...' . PHP_EOL;
$this->filesystem->copy(
$paths['chat'],
$paths['backup']
);
}
}
/**
* @return array
*/
public function getUsage()
{
return array();
}
/**
* @throws Exception
*/
public function verify()
{
if (is_null($this->pathConfiguration)) {
throw new Exception(
'application is mandatory'
);
}
if (is_null($this->filesystem)) {
throw new Exception(
'filesystem is mandatory'
);
}
}
}
|