]> git.mxchange.org Git - friendica.git/blob - src/BaseModule.php
e049e9a944f8f12bb59edb8ae81976f07b669e79
[friendica.git] / src / BaseModule.php
1 <?php
2
3 namespace Friendica;
4
5 use Friendica\Core\L10n;
6 use Friendica\Core\Logger;
7
8 /**
9  * All modules in Friendica should extend BaseModule, although not all modules
10  * need to extend all the methods described here
11  *
12  * The filename of the module in src/Module needs to match the class name
13  * exactly to make the module available.
14  *
15  * @author Hypolite Petovan <hypolite@mrpetovan.com>
16  */
17 abstract class BaseModule extends BaseObject
18 {
19         /**
20          * @brief Initialization method common to both content() and post()
21          *
22          * Extend this method if you need to do any shared processing before both
23          * content() or post()
24          */
25         public static function init()
26         {
27         }
28
29         /**
30          * @brief Module GET method to display raw content from technical endpoints
31          *
32          * Extend this method if the module is supposed to return communication data,
33          * e.g. from protocol implementations.
34          */
35         public static function rawContent($parameters)
36         {
37                 // echo '';
38                 // exit;
39         }
40
41         /**
42          * @brief Module GET method to display any content
43          *
44          * Extend this method if the module is supposed to return any display
45          * through a GET request. It can be an HTML page through templating or a
46          * XML feed or a JSON output.
47          *
48          * @return string
49          */
50         public static function content()
51         {
52                 $o = '';
53
54                 return $o;
55         }
56
57         /**
58          * @brief Module POST method to process submitted data
59          *
60          * Extend this method if the module is supposed to process POST requests.
61          * Doesn't display any content
62          */
63         public static function post()
64         {
65                 // $a = self::getApp();
66                 // $a->internalRedirect('module');
67         }
68
69         /**
70          * @brief Called after post()
71          *
72          * Unknown purpose
73          */
74         public static function afterpost()
75         {
76
77         }
78
79         /*
80          * Functions used to protect against Cross-Site Request Forgery
81          * The security token has to base on at least one value that an attacker can't know - here it's the session ID and the private key.
82          * In this implementation, a security token is reusable (if the user submits a form, goes back and resubmits the form, maybe with small changes;
83          * or if the security token is used for ajax-calls that happen several times), but only valid for a certain amout of time (3hours).
84          * The "typename" seperates the security tokens of different types of forms. This could be relevant in the following case:
85          *    A security token is used to protekt a link from CSRF (e.g. the "delete this profile"-link).
86          *    If the new page contains by any chance external elements, then the used security token is exposed by the referrer.
87          *    Actually, important actions should not be triggered by Links / GET-Requests at all, but somethimes they still are,
88          *    so this mechanism brings in some damage control (the attacker would be able to forge a request to a form of this type, but not to forms of other types).
89          */
90         public static function getFormSecurityToken($typename = '')
91         {
92                 $a = \get_app();
93
94                 $timestamp = time();
95                 $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $timestamp . $typename);
96
97                 return $timestamp . '.' . $sec_hash;
98         }
99
100         public static function checkFormSecurityToken($typename = '', $formname = 'form_security_token')
101         {
102                 $hash = null;
103
104                 if (!empty($_REQUEST[$formname])) {
105                         /// @TODO Careful, not secured!
106                         $hash = $_REQUEST[$formname];
107                 }
108
109                 if (!empty($_SERVER['HTTP_X_CSRF_TOKEN'])) {
110                         /// @TODO Careful, not secured!
111                         $hash = $_SERVER['HTTP_X_CSRF_TOKEN'];
112                 }
113
114                 if (empty($hash)) {
115                         return false;
116                 }
117
118                 $max_livetime = 10800; // 3 hours
119
120                 $a = \get_app();
121
122                 $x = explode('.', $hash);
123                 if (time() > (intval($x[0]) + $max_livetime)) {
124                         return false;
125                 }
126
127                 $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename);
128
129                 return ($sec_hash == $x[1]);
130         }
131
132         public static function getFormSecurityStandardErrorMessage()
133         {
134                 return L10n::t("The form security token was not correct. This probably happened because the form has been opened for too long \x28>3 hours\x29 before submitting it.") . EOL;
135         }
136
137         public static function checkFormSecurityTokenRedirectOnError($err_redirect, $typename = '', $formname = 'form_security_token')
138         {
139                 if (!self::checkFormSecurityToken($typename, $formname)) {
140                         $a = \get_app();
141                         Logger::log('checkFormSecurityToken failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
142                         Logger::log('checkFormSecurityToken failed: _REQUEST data: ' . print_r($_REQUEST, true), Logger::DATA);
143                         notice(self::getFormSecurityStandardErrorMessage());
144                         $a->internalRedirect($err_redirect);
145                 }
146         }
147
148         public static function checkFormSecurityTokenForbiddenOnError($typename = '', $formname = 'form_security_token')
149         {
150                 if (!self::checkFormSecurityToken($typename, $formname)) {
151                         $a = \get_app();
152                         Logger::log('checkFormSecurityToken failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
153                         Logger::log('checkFormSecurityToken failed: _REQUEST data: ' . print_r($_REQUEST, true), Logger::DATA);
154
155                         throw new \Friendica\Network\HTTPException\ForbiddenException();
156                 }
157         }
158 }