Request.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <?php declare(strict_types=1);
  2. /**
  3. * PrivateBin
  4. *
  5. * a zero-knowledge paste bin
  6. *
  7. * @link https://github.com/PrivateBin/PrivateBin
  8. * @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
  9. * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
  10. */
  11. namespace PrivateBin;
  12. use PrivateBin\Exception\JsonException;
  13. use PrivateBin\Model\Paste;
  14. /**
  15. * Request
  16. *
  17. * parses request parameters and provides helper functions for routing
  18. */
  19. class Request
  20. {
  21. /**
  22. * MIME type for JSON
  23. *
  24. * @const string
  25. */
  26. const MIME_JSON = 'application/json';
  27. /**
  28. * MIME type for HTML
  29. *
  30. * @const string
  31. */
  32. const MIME_HTML = 'text/html';
  33. /**
  34. * MIME type for XHTML
  35. *
  36. * @const string
  37. */
  38. const MIME_XHTML = 'application/xhtml+xml';
  39. /**
  40. * Input stream to use for PUT parameter parsing
  41. *
  42. * @access private
  43. * @var string
  44. */
  45. private static $_inputStream = 'php://input';
  46. /**
  47. * Operation to perform
  48. *
  49. * @access private
  50. * @var string
  51. */
  52. private $_operation = 'view';
  53. /**
  54. * Request parameters
  55. *
  56. * @access private
  57. * @var array
  58. */
  59. private $_params = array();
  60. /**
  61. * If we are in a JSON API context
  62. *
  63. * @access private
  64. * @var bool
  65. */
  66. private $_isJsonApi = false;
  67. /**
  68. * Return the paste ID of the current document.
  69. *
  70. * @access private
  71. * @return string
  72. */
  73. private function getPasteId()
  74. {
  75. foreach ($_GET as $key => $value) {
  76. // only return if value is empty and key is 16 hex chars
  77. $key = (string) $key;
  78. if (empty($value) && Paste::isValidId($key)) {
  79. return $key;
  80. }
  81. }
  82. return 'invalid id';
  83. }
  84. /**
  85. * Constructor
  86. *
  87. * @access public
  88. */
  89. public function __construct()
  90. {
  91. // decide if we are in JSON API or HTML context
  92. $this->_isJsonApi = $this->_detectJsonRequest();
  93. // parse parameters, depending on request type
  94. switch ($_SERVER['REQUEST_METHOD'] ?? 'GET') {
  95. case 'DELETE':
  96. case 'PUT':
  97. case 'POST':
  98. // it might be a creation or a deletion, the latter is detected below
  99. $this->_operation = 'create';
  100. try {
  101. $data = file_get_contents(self::$_inputStream);
  102. $this->_params = Json::decode($data);
  103. // a valid JSON scalar (number, bool or string) decodes
  104. // without error, but is not a usable set of parameters
  105. if (!is_array($this->_params)) {
  106. $this->_params = array();
  107. }
  108. } catch (JsonException $e) {
  109. // ignore error, $this->_params will remain empty
  110. }
  111. break;
  112. default:
  113. $this->_params = filter_var_array($_GET, array(
  114. 'deletetoken' => FILTER_SANITIZE_SPECIAL_CHARS,
  115. 'jsonld' => FILTER_SANITIZE_SPECIAL_CHARS,
  116. 'link' => FILTER_SANITIZE_URL,
  117. 'pasteid' => FILTER_SANITIZE_SPECIAL_CHARS,
  118. 'shortenviayourls' => FILTER_SANITIZE_SPECIAL_CHARS,
  119. 'shortenviashlink' => FILTER_SANITIZE_SPECIAL_CHARS,
  120. ), false);
  121. }
  122. if (
  123. !array_key_exists('pasteid', $this->_params) &&
  124. !array_key_exists('jsonld', $this->_params) &&
  125. !array_key_exists('link', $this->_params) &&
  126. array_key_exists('QUERY_STRING', $_SERVER) &&
  127. !empty($_SERVER['QUERY_STRING'])
  128. ) {
  129. $this->_params['pasteid'] = $this->getPasteId();
  130. }
  131. // prepare operation, depending on current parameters
  132. if (array_key_exists('pasteid', $this->_params) && !empty($this->_params['pasteid'])) {
  133. if (array_key_exists('deletetoken', $this->_params) && !empty($this->_params['deletetoken'])) {
  134. $this->_operation = 'delete';
  135. } elseif ($this->_operation !== 'create') {
  136. $this->_operation = 'read';
  137. }
  138. } elseif (array_key_exists('jsonld', $this->_params) && !empty($this->_params['jsonld'])) {
  139. $this->_operation = 'jsonld';
  140. } elseif (array_key_exists('link', $this->_params) && !empty($this->_params['link'])) {
  141. if (str_contains($this->getRequestUri(), '/shortenviayourls') || array_key_exists('shortenviayourls', $this->_params)) {
  142. $this->_operation = 'yourlsproxy';
  143. }
  144. if (str_contains($this->getRequestUri(), '/shortenviashlink') || array_key_exists('shortenviashlink', $this->_params)) {
  145. $this->_operation = 'shlinkproxy';
  146. }
  147. }
  148. }
  149. /**
  150. * Get current operation
  151. *
  152. * @access public
  153. * @return string
  154. */
  155. public function getOperation()
  156. {
  157. return $this->_operation;
  158. }
  159. /**
  160. * Get data of paste or comment
  161. *
  162. * @access public
  163. * @return array
  164. */
  165. public function getData()
  166. {
  167. $data = array(
  168. 'adata' => $this->getParam('adata'),
  169. );
  170. $required_keys = array('v', 'ct');
  171. $meta = $this->getParam('meta');
  172. if (empty($meta)) {
  173. $required_keys[] = 'pasteid';
  174. $required_keys[] = 'parentid';
  175. } else {
  176. $data['meta'] = $meta;
  177. }
  178. foreach ($required_keys as $key) {
  179. $data[$key] = $this->getParam($key, $key === 'v' ? 1 : '');
  180. }
  181. return $data;
  182. }
  183. /**
  184. * Get a request parameter
  185. *
  186. * @access public
  187. * @param string $param
  188. * @param string $default
  189. * @return string
  190. */
  191. public function getParam($param, $default = '')
  192. {
  193. return $this->_params[$param] ?? $default;
  194. }
  195. /**
  196. * Get host as requested by the client
  197. *
  198. * @access public
  199. * @return string
  200. */
  201. public function getHost()
  202. {
  203. $host = array_key_exists('HTTP_HOST', $_SERVER) ? filter_var($_SERVER['HTTP_HOST'], FILTER_SANITIZE_URL) : '';
  204. return empty($host) ? 'localhost' : $host;
  205. }
  206. /**
  207. * Get request URI path without GET parameters
  208. *
  209. * @access public
  210. * @return string
  211. */
  212. public function getRequestUri()
  213. {
  214. $uri = array_key_exists('REQUEST_URI', $_SERVER) ? filter_var($_SERVER['REQUEST_URI'], FILTER_SANITIZE_URL) : '';
  215. return empty($uri) ? '/' : parse_url($uri, PHP_URL_PATH);
  216. }
  217. /**
  218. * If we are in a JSON API context
  219. *
  220. * @access public
  221. * @return bool
  222. */
  223. public function isJsonApiCall()
  224. {
  225. return $this->_isJsonApi;
  226. }
  227. /**
  228. * Override the default input stream source, used for unit testing
  229. *
  230. * @param string $input
  231. */
  232. public static function setInputStream($input)
  233. {
  234. self::$_inputStream = $input;
  235. }
  236. /**
  237. * Detect the clients supported media type and decide if its a JSON API call or not
  238. *
  239. * Adapted from: https://stackoverflow.com/questions/3770513/detect-browser-language-in-php#3771447
  240. *
  241. * @access private
  242. * @return bool
  243. */
  244. private function _detectJsonRequest()
  245. {
  246. $acceptHeader = $_SERVER['HTTP_ACCEPT'] ?? '';
  247. // simple cases
  248. if (
  249. ($_SERVER['HTTP_X_REQUESTED_WITH'] ?? '') === 'JSONHttpRequest' ||
  250. (
  251. str_contains($acceptHeader, self::MIME_JSON) &&
  252. !str_contains($acceptHeader, self::MIME_HTML) &&
  253. !str_contains($acceptHeader, self::MIME_XHTML)
  254. )
  255. ) {
  256. return true;
  257. }
  258. // advanced case: media type negotiation
  259. if (!empty($acceptHeader)) {
  260. $mediaTypes = array();
  261. foreach (explode(',', trim($acceptHeader)) as $mediaTypeRange) {
  262. if (preg_match(
  263. '#(\*/\*|[a-z\-]+/[a-z\-+*]+(?:\s*;\s*[^q]\S*)*)(?:\s*;\s*q\s*=\s*(0(?:\.\d{0,3})|1(?:\.0{0,3})))?#',
  264. trim($mediaTypeRange), $match
  265. )) {
  266. if (!isset($match[2])) {
  267. $match[2] = '1.0';
  268. } else {
  269. $match[2] = (string) floatval($match[2]);
  270. if ($match[2] === '0.0') {
  271. continue;
  272. }
  273. }
  274. if (!isset($mediaTypes[$match[2]])) {
  275. $mediaTypes[$match[2]] = array();
  276. }
  277. $mediaTypes[$match[2]][] = strtolower($match[1]);
  278. }
  279. }
  280. krsort($mediaTypes);
  281. foreach ($mediaTypes as $acceptedQuality => $acceptedValues) {
  282. foreach ($acceptedValues as $acceptedValue) {
  283. if (
  284. str_starts_with($acceptedValue, self::MIME_HTML) ||
  285. str_starts_with($acceptedValue, self::MIME_XHTML)
  286. ) {
  287. return false;
  288. } elseif (str_starts_with($acceptedValue, self::MIME_JSON)) {
  289. return true;
  290. }
  291. }
  292. }
  293. }
  294. return false;
  295. }
  296. }