-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move backends into their own namespace and add support for multiple a…
…uth methods
- Loading branch information
1 parent
2280570
commit eda3870
Showing
33 changed files
with
750 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2018 Robin Appelman <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace Icewind\SMB; | ||
|
||
|
||
abstract class AbstractServer implements IServer { | ||
const LOCALE = 'en_US.UTF-8'; | ||
|
||
/** | ||
* @var string $host | ||
*/ | ||
protected $host; | ||
|
||
/** | ||
* @var IAuth $user | ||
*/ | ||
protected $auth; | ||
|
||
/** | ||
* @var \Icewind\SMB\System | ||
*/ | ||
protected $system; | ||
|
||
/** | ||
* @var TimeZoneProvider | ||
*/ | ||
protected $timezoneProvider; | ||
|
||
/** | ||
* @param string $host | ||
* @param IAuth $auth | ||
* @param System $system | ||
* @param TimeZoneProvider $timeZoneProvider | ||
*/ | ||
public function __construct($host, IAuth $auth, System $system, TimeZoneProvider $timeZoneProvider) { | ||
$this->host = $host; | ||
$this->auth = $auth; | ||
$this->system = $system; | ||
$this->timezoneProvider = $timeZoneProvider; | ||
} | ||
|
||
/** | ||
* @return IAuth | ||
*/ | ||
public function getAuth() { | ||
return $this->auth; | ||
} | ||
|
||
/** | ||
* return string | ||
*/ | ||
public function getHost() { | ||
return $this->host; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getTimeZone() { | ||
return $this->timezoneProvider->get(); | ||
} | ||
|
||
public function getSystem() { | ||
return $this->system; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2018 Robin Appelman <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace Icewind\SMB; | ||
|
||
|
||
class BasicAuth implements IAuth { | ||
/** @var string */ | ||
private $username; | ||
/** @var string */ | ||
private $workgroup; | ||
/** @var string */ | ||
private $password; | ||
|
||
/** | ||
* BasicAuth constructor. | ||
* | ||
* @param string $username | ||
* @param string $password | ||
*/ | ||
public function __construct($username, $password) { | ||
list($workgroup, $username) = $this->splitUser($username); | ||
$this->username = $username; | ||
$this->workgroup = $workgroup; | ||
$this->password = $password; | ||
} | ||
|
||
/** | ||
* Split workgroup from username | ||
* | ||
* @param $user | ||
* @return string[] [$workgroup, $user] | ||
*/ | ||
private function splitUser($user) { | ||
if (strpos($user, '/')) { | ||
return explode('/', $user, 2); | ||
} elseif (strpos($user, '\\')) { | ||
return explode('\\', $user); | ||
} else { | ||
return array(null, $user); | ||
} | ||
} | ||
|
||
public function getUsername() { | ||
return $this->username; | ||
} | ||
|
||
public function getWorkgroup() { | ||
return $this->workgroup; | ||
} | ||
|
||
public function getPassword() { | ||
return $this->password; | ||
} | ||
|
||
public function getExtraCommandLineArguments() { | ||
return ($this->workgroup) ? '-W ' . escapeshellarg($this->workgroup) : ''; | ||
} | ||
|
||
public function setExtraSmbClientOptions($smbClientState) { | ||
// noop | ||
} | ||
|
||
} |
Oops, something went wrong.