123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- use GuzzleHttp\Client;
- use GuzzleHttp\Cookie\CookieJar;
- use GuzzleHttp\Exception\ClientException;
- use GuzzleHttp\Exception\ServerException;
- require __DIR__ . '/../../vendor/autoload.php';
- trait Auth {
- /** @var string */
- private $unrestrictedClientToken;
- /** @var string */
- private $restrictedClientToken;
- /** @var Client */
- private $client;
- /** @var string */
- private $responseXml;
- /** @BeforeScenario */
- public function setUpScenario() {
- $this->client = new Client();
- $this->responseXml = '';
- $this->cookieJar = new CookieJar();
- }
- /**
- * @When requesting :url with :method
- */
- public function requestingWith($url, $method) {
- $this->sendRequest($url, $method);
- }
- private function sendRequest($url, $method, $authHeader = null, $useCookies = false) {
- $fullUrl = substr($this->baseUrl, 0, -5) . $url;
- try {
- if ($useCookies) {
- $options = [
- 'cookies' => $this->cookieJar,
- ];
- } else {
- $options = [];
- }
- if ($authHeader) {
- $options['headers'] = [
- 'Authorization' => $authHeader
- ];
- }
- $options['headers']['OCS_APIREQUEST'] = 'true';
- $options['headers']['requesttoken'] = $this->requestToken;
- $this->response = $this->client->request($method, $fullUrl, $options);
- } catch (ClientException $ex) {
- $this->response = $ex->getResponse();
- } catch (ServerException $ex) {
- $this->response = $ex->getResponse();
- }
- }
- /**
- * @When the CSRF token is extracted from the previous response
- */
- public function theCsrfTokenIsExtractedFromThePreviousResponse() {
- $this->requestToken = substr(preg_replace('/(.*)data-requesttoken="(.*)">(.*)/sm', '\2', $this->response->getBody()->getContents()), 0, 89);
- }
- /**
- * @param bool $loginViaWeb
- * @return object
- */
- private function createClientToken($loginViaWeb = true) {
- if ($loginViaWeb) {
- $this->loggingInUsingWebAs('user0');
- }
- $fullUrl = substr($this->baseUrl, 0, -5) . '/index.php/settings/personal/authtokens';
- $client = new Client();
- $options = [
- 'auth' => [
- 'user0',
- $loginViaWeb ? '123456' : $this->restrictedClientToken,
- ],
- 'form_params' => [
- 'requesttoken' => $this->requestToken,
- 'name' => md5(microtime()),
- ],
- 'cookies' => $this->cookieJar,
- ];
- try {
- $this->response = $client->request('POST', $fullUrl, $options);
- } catch (\GuzzleHttp\Exception\ServerException $e) {
- $this->response = $e->getResponse();
- }
- return json_decode($this->response->getBody()->getContents());
- }
- /**
- * @Given a new restricted client token is added
- */
- public function aNewRestrictedClientTokenIsAdded() {
- $tokenObj = $this->createClientToken();
- $newCreatedTokenId = $tokenObj->deviceToken->id;
- $fullUrl = substr($this->baseUrl, 0, -5) . '/index.php/settings/personal/authtokens/' . $newCreatedTokenId;
- $client = new Client();
- $options = [
- 'auth' => ['user0', '123456'],
- 'headers' => [
- 'requesttoken' => $this->requestToken,
- ],
- 'json' => [
- 'name' => md5(microtime()),
- 'scope' => [
- 'filesystem' => false,
- ],
- ],
- 'cookies' => $this->cookieJar,
- ];
- $this->response = $client->request('PUT', $fullUrl, $options);
- $this->restrictedClientToken = $tokenObj->token;
- }
- /**
- * @Given a new unrestricted client token is added
- */
- public function aNewUnrestrictedClientTokenIsAdded() {
- $this->unrestrictedClientToken = $this->createClientToken()->token;
- }
- /**
- * @When a new unrestricted client token is added using restricted basic token auth
- */
- public function aNewUnrestrictedClientTokenIsAddedUsingRestrictedBasicTokenAuth() {
- $this->createClientToken(false);
- }
- /**
- * @When requesting :url with :method using basic auth
- *
- * @param string $url
- * @param string $method
- */
- public function requestingWithBasicAuth($url, $method) {
- $this->sendRequest($url, $method, 'basic ' . base64_encode('user0:123456'));
- }
- /**
- * @When requesting :url with :method using unrestricted basic token auth
- *
- * @param string $url
- * @param string $method
- */
- public function requestingWithUnrestrictedBasicTokenAuth($url, $method) {
- $this->sendRequest($url, $method, 'basic ' . base64_encode('user0:' . $this->unrestrictedClientToken), true);
- }
- /**
- * @When requesting :url with :method using restricted basic token auth
- *
- * @param string $url
- * @param string $method
- */
- public function requestingWithRestrictedBasicTokenAuth($url, $method) {
- $this->sendRequest($url, $method, 'basic ' . base64_encode('user0:' . $this->restrictedClientToken), true);
- }
- /**
- * @When requesting :url with :method using an unrestricted client token
- *
- * @param string $url
- * @param string $method
- */
- public function requestingWithUsingAnUnrestrictedClientToken($url, $method) {
- $this->sendRequest($url, $method, 'Bearer ' . $this->unrestrictedClientToken);
- }
- /**
- * @When requesting :url with :method using a restricted client token
- *
- * @param string $url
- * @param string $method
- */
- public function requestingWithUsingARestrictedClientToken($url, $method) {
- $this->sendRequest($url, $method, 'Bearer ' . $this->restrictedClientToken);
- }
- /**
- * @When requesting :url with :method using browser session
- *
- * @param string $url
- * @param string $method
- */
- public function requestingWithBrowserSession($url, $method) {
- $this->sendRequest($url, $method, null, true);
- }
- /**
- * @Given a new browser session is started
- *
- * @param bool $remember
- */
- public function aNewBrowserSessionIsStarted($remember = false) {
- $loginUrl = substr($this->baseUrl, 0, -5) . '/login';
- // Request a new session and extract CSRF token
- $client = new Client();
- $response = $client->get($loginUrl, [
- 'cookies' => $this->cookieJar,
- ]);
- $this->extracRequestTokenFromResponse($response);
- // Login and extract new token
- $client = new Client();
- $response = $client->post(
- $loginUrl, [
- 'form_params' => [
- 'user' => 'user0',
- 'password' => '123456',
- 'remember_login' => $remember ? '1' : '0',
- 'requesttoken' => $this->requestToken,
- ],
- 'cookies' => $this->cookieJar,
- ]
- );
- $this->extracRequestTokenFromResponse($response);
- }
- /**
- * @Given a new remembered browser session is started
- */
- public function aNewRememberedBrowserSessionIsStarted() {
- $this->aNewBrowserSessionIsStarted(true);
- }
- /**
- * @Given the cookie jar is reset
- */
- public function theCookieJarIsReset() {
- $this->cookieJar = new CookieJar();
- }
- /**
- * @When the session cookie expires
- */
- public function whenTheSessionCookieExpires() {
- $this->cookieJar->clearSessionCookies();
- }
- }
|