aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/helper/file_updater/ftp_file_updater.php
blob: 5cdc331cbc0f7628ee2c094e24a4fff996c23f3f (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
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
<?php
/**
 *
 * This file is part of the phpBB Forum Software package.
 *
 * @copyright (c) phpBB Limited <https://www.phpbb.com>
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 * For full copyright and license information, please see
 * the docs/CREDITS.txt file.
 *
 */

namespace phpbb\install\helper\file_updater;

use phpbb\install\helper\update_helper;

/**
 * File updater for FTP updates
 */
class ftp_file_updater implements file_updater_interface
{
	/**
	 * @var \transfer
	 */
	protected $transfer;

	/**
	 * @var update_helper
	 */
	protected $update_helper;

	/**
	 * @var string
	 */
	protected $phpbb_root_path;

	/**
	 * @var string
	 */
	protected $php_ext;

	/**
	 * Constructor
	 *
	 * @param update_helper	$update_helper
	 * @param string		$phpbb_root_path
	 * @param string		$php_ext
	 */
	public function __construct(update_helper $update_helper, $phpbb_root_path, $php_ext)
	{
		$this->transfer			= null;
		$this->update_helper	= $update_helper;
		$this->phpbb_root_path	= $phpbb_root_path;
		$this->php_ext			= $php_ext;
	}

	/**
	 * Initialize FTP connection
	 *
	 * @param string	$method
	 * @param string	$host
	 * @param string	$user
	 * @param string	$pass
	 * @param string	$path
	 * @param int		$port
	 * @param int		$timeout
	 */
	public function init($method, $host, $user, $pass, $path, $port, $timeout)
	{
		$this->update_helper->include_file('includes/functions_transfer.' . $this->php_ext);
		$this->transfer = new $method($host, $user, $pass, $path, $port, $timeout);
		$this->transfer->open_session();
	}

	/**
	 * Close FTP session
	 */
	public function close()
	{
		$this->transfer->close_session();
	}

	/**
	 * {@inheritdoc}
	 */
	public function delete_file($path_to_file)
	{
		$this->transfer->delete_file($path_to_file);
	}

	/**
	 * {@inheritdoc}
	 */
	public function create_new_file($path_to_file_to_create, $source, $create_from_content = false)
	{
		$dirname = dirname($path_to_file_to_create);

		if ($dirname && !file_exists($this->phpbb_root_path . $dirname))
		{
			$this->transfer->make_dir($dirname);
		}

		if ($create_from_content)
		{
			$this->transfer->write_file($path_to_file_to_create, $source);
		}
		else
		{
			$this->transfer->copy_file($path_to_file_to_create, $source);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function update_file($path_to_file_to_update, $source, $create_from_content = false)
	{
		if ($create_from_content)
		{
			$this->transfer->write_file($path_to_file_to_update, $source);
		}
		else
		{
			$this->transfer->copy_file($path_to_file_to_update, $source);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function get_method_name()
	{
		return 'ftp';
	}
}