summaryrefslogtreecommitdiff
path: root/extlib/libomb/helper.php
blob: a1f21f2680e7093ee8c0d0baf3a2da8032cd9f27 (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
<?php

require_once 'Validate.php';

/**
 * Helper functions for libomb
 *
 * This file contains helper functions for libomb.
 *
 * PHP version 5
 *
 * LICENSE: This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @package   OMB
 * @author    Adrian Lang <mail@adrianlang.de>
 * @copyright 2009 Adrian Lang
 * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL 3.0
 **/

class OMB_Helper {

  /**
   * Non-scalar constants
   *
   * The set of OMB and OAuth Services an OMB Server has to implement.
   */

  public static $OMB_SERVICES =
    array(OMB_ENDPOINT_UPDATEPROFILE, OMB_ENDPOINT_POSTNOTICE);
  public static $OAUTH_SERVICES =
    array(OAUTH_ENDPOINT_REQUEST, OAUTH_ENDPOINT_AUTHORIZE, OAUTH_ENDPOINT_ACCESS);

  /**
   * Validate URL
   *
   * Basic URL validation. Currently http, https, ftp and gopher are supported
   * schemes.
   *
   * @param string $url The URL which is to be validated.
   *
   * @return bool Whether URL is valid.
   *
   * @access public
   */
  public static function validateURL($url) {
    return Validate::uri($url, array('allowed_schemes' => array('http', 'https',
            'gopher', 'ftp')));
  }

  /**
   * Validate Media type
   *
   * Basic Media type validation. Checks for valid maintype and correct format.
   *
   * @param string $mediatype The Media type which is to be validated.
   *
   * @return bool Whether media type is valid.
   *
   * @access public
   */
  public static function validateMediaType($mediatype) {
    if (0 === preg_match('/^(\w+)\/([\w\d-+.]+)$/', $mediatype, $subtypes)) {
      return false;
    }
    if (!in_array(strtolower($subtypes[1]), array('application', 'audio', 'image',
              'message', 'model', 'multipart', 'text', 'video'))) {
      return false;
    }
    return true;
  }

  /**
   * Remove escaping from request parameters
   *
   * Neutralise the evil effects of magic_quotes_gpc in the current request.
   * This is used before handing a request off to OAuthRequest::from_request.
   * Many thanks to Ciaran Gultnieks for this fix.
   *
   * @access public
   */
  public static function removeMagicQuotesFromRequest() {
    if(get_magic_quotes_gpc() == 1) {
      $_POST = array_map('stripslashes', $_POST);
      $_GET = array_map('stripslashes', $_GET);
    }
  }
}
?>