miniflux-legacy/lib/Request.php

95 lines
1.5 KiB
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<?php
2015-08-29 03:34:34 +02:00
namespace Request;
2013-02-18 03:48:21 +01:00
2013-06-15 05:12:08 +02:00
function param($name, $default_value = null)
2013-02-18 03:48:21 +01:00
{
2013-06-15 05:12:08 +02:00
return isset($_GET[$name]) ? $_GET[$name] : $default_value;
2013-02-18 03:48:21 +01:00
}
2013-06-15 05:12:08 +02:00
function int_param($name, $default_value = 0)
2013-02-18 03:48:21 +01:00
{
2013-06-15 05:12:08 +02:00
return isset($_GET[$name]) && ctype_digit($_GET[$name]) ? (int) $_GET[$name] : $default_value;
}
function value($name)
{
$values = values();
return isset($values[$name]) ? $values[$name] : null;
2013-02-18 03:48:21 +01:00
}
function values()
{
if (! empty($_POST)) {
return $_POST;
}
$result = json_decode(body(), true);
if ($result) {
return $result;
}
return array();
}
function body()
{
return file_get_contents('php://input');
}
2014-02-08 20:13:14 +01:00
function file_content($field)
2013-02-18 03:48:21 +01:00
{
2014-02-08 20:13:14 +01:00
if (isset($_FILES[$field])) {
return file_get_contents($_FILES[$field]['tmp_name']);
2013-02-18 03:48:21 +01:00
}
return '';
2014-02-08 20:13:14 +01:00
}
function file_info($field)
{
if (isset($_FILES[$field])) {
return array(
'name' => $_FILES[$field]['name'],
'mimetype' => $_FILES[$field]['type'],
'size' => $_FILES[$field]['size'],
);
}
return false;
}
function file_move($field, $destination)
{
if (isset($_FILES[$field]) && ! file_exists($destination)) {
@mkdir(dirname($destination), 0777, true);
move_uploaded_file($_FILES[$field]['tmp_name'], $destination);
}
2014-05-28 22:44:25 +02:00
}
function uri()
{
return $_SERVER['REQUEST_URI'];
}
2014-05-28 22:44:25 +02:00
function is_post()
{
return $_SERVER['REQUEST_METHOD'] === 'POST';
}
function is_get()
{
return $_SERVER['REQUEST_METHOD'] === 'GET';
2014-05-28 22:44:25 +02:00
}