summaryrefslogtreecommitdiff
blob: c5f715e664f5aa75b307c240723f3fd8d6610159 (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php

namespace MediaWiki\Extensions\OAuth;

use League\OAuth2\Server\Entities\ScopeEntityInterface;
use League\OAuth2\Server\Middleware\ResourceServerMiddleware;
use MediaWiki\Extensions\OAuth\Backend\Consumer;
use MediaWiki\Extensions\OAuth\Backend\MWOAuthException;
use MediaWiki\Extensions\OAuth\Backend\Utils;
use MediaWiki\Extensions\OAuth\Entity\ClientEntity;
use MediaWiki\Extensions\OAuth\Entity\ScopeEntity;
use MediaWiki\Extensions\OAuth\Repository\AccessTokenRepository;
use MediaWiki\Extensions\OAuth\Repository\ScopeRepository;
use MediaWiki\MediaWikiServices;
use MediaWiki\Rest\HttpException;
use MWException;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use User;
use WebRequest;

class ResourceServer {
	/** @var ResourceServerMiddleware */
	protected $middleware;
	/** @var User */
	protected $user;
	/** @var ClientEntity */
	protected $client;
	/** @var ScopeEntity[] */
	protected $scopes;
	/** @var string */
	protected $accessTokenId;
	/** @var bool */
	protected $verified = false;

	public static function factory() {
		$config = MediaWikiServices::getInstance()->getConfigFactory()->makeConfig( 'mwoauth' );
		return new static( $config->get( 'OAuth2PublicKey' ) );
	}

	/**
	 * @param string $publicKey
	 */
	protected function __construct( $publicKey ) {
		$accessTokenRepository = new AccessTokenRepository();

		$server = new \League\OAuth2\Server\ResourceServer(
			$accessTokenRepository,
			$publicKey
		);
		$this->middleware = new ResourceServerMiddleware( $server );
	}

	/**
	 * Check if the request is an OAuth2 request
	 *
	 * @param WebRequest|ServerRequestInterface $request
	 * @return bool
	 */
	public static function isOAuth2Request( $request ) {
		$authHeader = $request->getHeader( 'authorization' );

		// Normalize to array
		if ( is_string( $authHeader ) ) {
			$authHeader = [ $authHeader ];
		}
		if ( !empty( $authHeader ) && strpos( $authHeader[0], 'Bearer' ) === 0 ) {
			return true;
		}
		return false;
	}

	/**
	 * @param ServerRequestInterface $request
	 * @param ResponseInterface $response
	 * @param callable $callback
	 * @return ResponseInterface
	 */
	public function verify( $request, $response, $callback ) {
		$this->verified = false;

		return $this->middleware->__invoke(
			$request,
			$response,
			function ( $request, $response ) use ( $callback ) {
				$this->setVerifiedInfo( $request );
				return $callback( $request, $response );
			}
		);
	}

	/**
	 * @return User
	 * @throws MWOAuthException
	 */
	public function getUser() {
		$this->assertVerified();
		return $this->user;
	}

	/**
	 * @return ClientEntity
	 * @throws MWOAuthException
	 */
	public function getClient() {
		$this->assertVerified();
		return $this->client;
	}

	/**
	 * @return ScopeEntity[]
	 * @throws MWOAuthException
	 */
	public function getScopes() {
		$this->assertVerified();
		return $this->scopes;
	}

	/**
	 * Get access token this request was made with
	 *
	 * @return string
	 * @throws MWOAuthException
	 */
	public function getAccessTokenId() {
		$this->assertVerified();
		return $this->accessTokenId;
	}

	/**
	 * Check if the scope is allowed
	 *
	 * @param string|ScopeEntityInterface $scope
	 * @return bool
	 * @throws MWOAuthException
	 */
	public function isScopeAllowed( $scope ) {
		$this->assertVerified();

		if ( $scope instanceof ScopeEntityInterface ) {
			$scope = $scope->getIdentifier();
		}

		return isset( $this->scopes[$scope] );
	}

	/**
	 * Read out the verified request and get relevant information
	 *
	 * @param ServerRequestInterface $request
	 * @throws HttpException
	 */
	public function setVerifiedInfo( ServerRequestInterface $request ) {
		$this->setUser( $request );
		$this->setClient( $request );
		$this->setScopes( $request );
		$this->setAccessTokenId( $request );

		$this->verified = true;
	}

	/**
	 * Set authorized user to the global context
	 *
	 * @param ServerRequestInterface $request
	 * @throws HttpException
	 */
	private function setUser( ServerRequestInterface $request ) {
		$userId = $request->getAttribute( 'oauth_user_id', 0 );
		if ( !$userId ) {
			// Set anon user when no user id is present in the AT (machine grant)
			$this->user = User::newFromId( 0 );
			return;
		}

		try {
			$user = Utils::getLocalUserFromCentralId( $userId );
		} catch ( MWException $ex ) {
			throw new HttpException( $ex->getMessage(), 403 );
		}

		$this->user = $user;
	}

	/**
	 * Set the ClientEntity from validated request
	 *
	 * @param ServerRequestInterface $request
	 * @throws HttpException
	 */
	private function setClient( ServerRequestInterface $request ) {
		$this->client = ClientEntity::newFromKey(
			Utils::getCentralDB( DB_REPLICA ),
			$request->getAttribute( 'oauth_client_id' )
		);
		if ( !$this->client || $this->client->getOAuthVersion() !== Consumer::OAUTH_VERSION_2 ) {
			throw new HttpException( 'Client represented by given access token is invalid', 403 );
		}
	}

	/**
	 * Set validated scopes
	 *
	 * @param ServerRequestInterface $request
	 */
	private function setScopes( ServerRequestInterface $request ) {
		$scopeNames = $request->getAttribute( 'oauth_scopes', [] );
		$scopeRepo = new ScopeRepository();
		foreach ( $scopeNames as $scopeName ) {
			$scope = $scopeRepo->getScopeEntityByIdentifier( $scopeName );
			if ( !$scope ) {
				continue;
			}
			$this->scopes[$scope->getIdentifier()] = $scope;
		}
	}

	/**
	 * Set the access token this request was made with
	 *
	 * @param ServerRequestInterface $request
	 */
	private function setAccessTokenId( ServerRequestInterface $request ) {
		$this->accessTokenId = $request->getAttribute( 'oauth_access_token_id' );
	}

	private function assertVerified() {
		if ( !$this->verified ) {
			throw new MWOAuthException( 'mwoauth-oauth2-error-request-not-verified' );
		}
	}
}