Completed
Push — master ( 0edaaa...4d67dd )
by Bradley
07:23 queued 04:37
created

BackupEngineSqlsrv::getExportProcess()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php namespace Cornford\Backup\Engines;
2
3
class BackupEngineSqlsrv extends BackupEngineAbstract {
4
5
	const ENGINE_NAME = 'sqlsrv';
6
	const ENGINE_EXTENSION = 'bak';
7
	const ENGINE_EXPORT_PROCESS = 'SqlCmd';
8
	const ENGINE_RESTORE_PROCESS = 'SqlCmd';
9
10
	/**
11
	 * Get export process.
12
	 *
13
	 * @return string
14
	 */
15
	public function getExportProcess()
16
	{
17
		return self::ENGINE_EXPORT_PROCESS;
18
	}
19
20
	/**
21
	 * Get restore process.
22
	 *
23
	 * @return string
24
	 */
25
	public function getRestoreProcess()
26
	{
27
		return self::ENGINE_RESTORE_PROCESS;
28
	}
29
30
	/**
31
	 * Get database file extension.
32
	 *
33
	 * @return string
34
	 */
35
	public function getFileExtension()
36
	{
37
		return self::ENGINE_EXTENSION;
38
	}
39
40
	/**
41
	 * Export the database to a file path.
42
	 *
43
	 * @param string $filepath
44
	 *
45
	 * @return boolean
46
	 */
47 View Code Duplication
	public function export($filepath)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
48
	{
49
		$command = sprintf(
50
			'%s%s -E -S %s –Q "BACKUP DATABASE %s TO DISK=\'%s\'"',
51
			$this->getExportCommand(),
52
			self::ENGINE_RESTORE_PROCESS,
53
			escapeshellarg($this->getHostname()),
54
			escapeshellarg($this->getDatabase()),
55
			escapeshellarg($filepath)
56
		);
57
58
		return $this->getBackupProcess()->run($command, __FUNCTION__);
59
	}
60
61
	/**
62
	 * Restore the database from a file path.
63
	 *
64
	 * @param string $filepath
65
	 *
66
	 * @return boolean
67
	 */
68 View Code Duplication
	public function restore($filepath)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
69
	{
70
		$command = sprintf('%s%s -E -S %s –Q "RESTORE DATABASE %s FROM DISK=\'%s\'"',
71
			$this->getRestoreCommand(),
72
			self::ENGINE_RESTORE_PROCESS,
73
			escapeshellarg($this->getHostname()),
74
			escapeshellarg($this->getDatabase()),
75
			escapeshellarg($filepath)
76
		);
77
78
		return $this->getBackupProcess()->run($command, __FUNCTION__);
79
	}
80
81
}