summaryrefslogtreecommitdiff
path: root/bin/wiki/vendor/addwiki/mediawiki-api-base/src/SimpleRequest.php
blob: 1e33348dc70d93a641ef32123afdabb1d5927067 (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
<?php

namespace Mediawiki\Api;

use InvalidArgumentException;

/**
 * Please consider using a FluentRequest object
 *
 * @since 0.2
 *
 * @author Addshore
 */
class SimpleRequest implements Request {

	/**
	 * @var string
	 */
	private $action;

	/**
	 * @var array
	 */
	private $params;

	/**
	 * @var array
	 */
	private $headers;

	/**
	 * @param string $action The API action.
	 * @param array $params The parameters for the action.
	 * @param array $headers Any extra HTTP headers to send.
	 *
	 * @throws InvalidArgumentException
	 */
	public function __construct( $action, array $params = [], array $headers = [] ) {
		if ( !is_string( $action ) ) {
			throw new InvalidArgumentException( '$action must be string' );
		}
		$this->action = $action;
		$this->params = $params;
		$this->headers = $headers;
	}

	/**
	 * @return string[]
	 */
	public function getParams() {
		return array_merge( [ 'action' => $this->action ], $this->params );
	}

	/**
	 * @return string[]
	 */
	public function getHeaders() {
		return $this->headers;
	}

}