Request.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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 Exception;
  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 (array_key_exists('REQUEST_METHOD', $_SERVER) ? $_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. } catch (Exception $e) {
  104. // ignore error, $this->_params will remain empty
  105. }
  106. break;
  107. default:
  108. $this->_params = filter_var_array($_GET, array(
  109. 'deletetoken' => FILTER_SANITIZE_SPECIAL_CHARS,
  110. 'jsonld' => FILTER_SANITIZE_SPECIAL_CHARS,
  111. 'link' => FILTER_SANITIZE_URL,
  112. 'pasteid' => FILTER_SANITIZE_SPECIAL_CHARS,
  113. 'shortenviayourls' => FILTER_SANITIZE_SPECIAL_CHARS,
  114. 'shortenviashlink' => FILTER_SANITIZE_SPECIAL_CHARS,
  115. ), false);
  116. }
  117. if (
  118. !array_key_exists('pasteid', $this->_params) &&
  119. !array_key_exists('jsonld', $this->_params) &&
  120. !array_key_exists('link', $this->_params) &&
  121. array_key_exists('QUERY_STRING', $_SERVER) &&
  122. !empty($_SERVER['QUERY_STRING'])
  123. ) {
  124. $this->_params['pasteid'] = $this->getPasteId();
  125. }
  126. // prepare operation, depending on current parameters
  127. if (array_key_exists('pasteid', $this->_params) && !empty($this->_params['pasteid'])) {
  128. if (array_key_exists('deletetoken', $this->_params) && !empty($this->_params['deletetoken'])) {
  129. $this->_operation = 'delete';
  130. } elseif ($this->_operation != 'create') {
  131. $this->_operation = 'read';
  132. }
  133. } elseif (array_key_exists('jsonld', $this->_params) && !empty($this->_params['jsonld'])) {
  134. $this->_operation = 'jsonld';
  135. } elseif (array_key_exists('link', $this->_params) && !empty($this->_params['link'])) {
  136. if (str_contains($this->getRequestUri(), '/shortenviayourls') || array_key_exists('shortenviayourls', $this->_params)) {
  137. $this->_operation = 'yourlsproxy';
  138. }
  139. if (str_contains($this->getRequestUri(), '/shortenviashlink') || array_key_exists('shortenviashlink', $this->_params)) {
  140. $this->_operation = 'shlinkproxy';
  141. }
  142. }
  143. }
  144. /**
  145. * Get current operation
  146. *
  147. * @access public
  148. * @return string
  149. */
  150. public function getOperation()
  151. {
  152. return $this->_operation;
  153. }
  154. /**
  155. * Get data of paste or comment
  156. *
  157. * @access public
  158. * @return array
  159. */
  160. public function getData()
  161. {
  162. $data = array(
  163. 'adata' => $this->getParam('adata'),
  164. );
  165. $required_keys = array('v', 'ct');
  166. $meta = $this->getParam('meta');
  167. if (empty($meta)) {
  168. $required_keys[] = 'pasteid';
  169. $required_keys[] = 'parentid';
  170. } else {
  171. $data['meta'] = $meta;
  172. }
  173. foreach ($required_keys as $key) {
  174. $data[$key] = $this->getParam($key, $key == 'v' ? 1 : '');
  175. }
  176. // forcing a cast to int or float
  177. $data['v'] = $data['v'] + 0;
  178. return $data;
  179. }
  180. /**
  181. * Get a request parameter
  182. *
  183. * @access public
  184. * @param string $param
  185. * @param string $default
  186. * @return string
  187. */
  188. public function getParam($param, $default = '')
  189. {
  190. return array_key_exists($param, $this->_params) ?
  191. $this->_params[$param] : $default;
  192. }
  193. /**
  194. * Get host as requested by the client
  195. *
  196. * @access public
  197. * @return string
  198. */
  199. public function getHost()
  200. {
  201. $host = array_key_exists('HTTP_HOST', $_SERVER) ? filter_var($_SERVER['HTTP_HOST'], FILTER_SANITIZE_URL) : '';
  202. return empty($host) ? 'localhost' : $host;
  203. }
  204. /**
  205. * Get request URI
  206. *
  207. * @access public
  208. * @return string
  209. */
  210. public function getRequestUri()
  211. {
  212. $uri = array_key_exists('REQUEST_URI', $_SERVER) ? filter_var($_SERVER['REQUEST_URI'], FILTER_SANITIZE_URL) : '';
  213. return empty($uri) ? '/' : $uri;
  214. }
  215. /**
  216. * If we are in a JSON API context
  217. *
  218. * @access public
  219. * @return bool
  220. */
  221. public function isJsonApiCall()
  222. {
  223. return $this->_isJsonApi;
  224. }
  225. /**
  226. * Override the default input stream source, used for unit testing
  227. *
  228. * @param string $input
  229. */
  230. public static function setInputStream($input)
  231. {
  232. self::$_inputStream = $input;
  233. }
  234. /**
  235. * Detect the clients supported media type and decide if its a JSON API call or not
  236. *
  237. * Adapted from: https://stackoverflow.com/questions/3770513/detect-browser-language-in-php#3771447
  238. *
  239. * @access private
  240. * @return bool
  241. */
  242. private function _detectJsonRequest()
  243. {
  244. $hasAcceptHeader = array_key_exists('HTTP_ACCEPT', $_SERVER);
  245. $acceptHeader = $hasAcceptHeader ? $_SERVER['HTTP_ACCEPT'] : '';
  246. // simple cases
  247. if (
  248. (array_key_exists('HTTP_X_REQUESTED_WITH', $_SERVER) &&
  249. $_SERVER['HTTP_X_REQUESTED_WITH'] == 'JSONHttpRequest') ||
  250. ($hasAcceptHeader &&
  251. str_contains($acceptHeader, self::MIME_JSON) &&
  252. !str_contains($acceptHeader, self::MIME_HTML) &&
  253. !str_contains($acceptHeader, self::MIME_XHTML))
  254. ) {
  255. return true;
  256. }
  257. // advanced case: media type negotiation
  258. if ($hasAcceptHeader) {
  259. $mediaTypes = array();
  260. foreach (explode(',', trim($acceptHeader)) as $mediaTypeRange) {
  261. if (preg_match(
  262. '#(\*/\*|[a-z\-]+/[a-z\-+*]+(?:\s*;\s*[^q]\S*)*)(?:\s*;\s*q\s*=\s*(0(?:\.\d{0,3})|1(?:\.0{0,3})))?#',
  263. trim($mediaTypeRange), $match
  264. )) {
  265. if (!isset($match[2])) {
  266. $match[2] = '1.0';
  267. } else {
  268. $match[2] = (string) floatval($match[2]);
  269. if ($match[2] === '0.0') {
  270. continue;
  271. }
  272. }
  273. if (!isset($mediaTypes[$match[2]])) {
  274. $mediaTypes[$match[2]] = array();
  275. }
  276. $mediaTypes[$match[2]][] = strtolower($match[1]);
  277. }
  278. }
  279. krsort($mediaTypes);
  280. foreach ($mediaTypes as $acceptedQuality => $acceptedValues) {
  281. foreach ($acceptedValues as $acceptedValue) {
  282. if (
  283. str_starts_with($acceptedValue, self::MIME_HTML) ||
  284. str_starts_with($acceptedValue, self::MIME_XHTML)
  285. ) {
  286. return false;
  287. } elseif (str_starts_with($acceptedValue, self::MIME_JSON)) {
  288. return true;
  289. }
  290. }
  291. }
  292. }
  293. return false;
  294. }
  295. }