5 use Friendica\Core\L10n;
6 use Friendica\Core\Logger;
7 use Friendica\Core\System;
10 * All modules in Friendica should extend BaseModule, although not all modules
11 * need to extend all the methods described here
13 * The filename of the module in src/Module needs to match the class name
14 * exactly to make the module available.
16 * @author Hypolite Petovan <hypolite@mrpetovan.com>
18 abstract class BaseModule extends BaseObject
21 * @brief Initialization method common to both content() and post()
23 * Extend this method if you need to do any shared processing before both
26 public static function init()
31 * @brief Module GET method to display raw content from technical endpoints
33 * Extend this method if the module is supposed to return communication data,
34 * e.g. from protocol implementations.
36 public static function rawContent()
43 * @brief Module GET method to display any content
45 * Extend this method if the module is supposed to return any display
46 * through a GET request. It can be an HTML page through templating or a
47 * XML feed or a JSON output.
51 public static function content()
59 * @brief Module POST method to process submitted data
61 * Extend this method if the module is supposed to process POST requests.
62 * Doesn't display any content
64 public static function post()
66 // $a = self::getApp();
67 // $a->internalRedirect('module');
71 * @brief Called after post()
75 public static function afterpost()
81 * Functions used to protect against Cross-Site Request Forgery
82 * 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.
83 * In this implementation, a security token is reusable (if the user submits a form, goes back and resubmits the form, maybe with small changes;
84 * or if the security token is used for ajax-calls that happen several times), but only valid for a certain amout of time (3hours).
85 * The "typename" seperates the security tokens of different types of forms. This could be relevant in the following case:
86 * A security token is used to protekt a link from CSRF (e.g. the "delete this profile"-link).
87 * If the new page contains by any chance external elements, then the used security token is exposed by the referrer.
88 * Actually, important actions should not be triggered by Links / GET-Requests at all, but somethimes they still are,
89 * 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).
91 public static function getFormSecurityToken($typename = '')
96 $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $timestamp . $typename);
98 return $timestamp . '.' . $sec_hash;
101 public static function checkFormSecurityToken($typename = '', $formname = 'form_security_token')
105 if (!empty($_REQUEST[$formname])) {
106 /// @TODO Careful, not secured!
107 $hash = $_REQUEST[$formname];
110 if (!empty($_SERVER['HTTP_X_CSRF_TOKEN'])) {
111 /// @TODO Careful, not secured!
112 $hash = $_SERVER['HTTP_X_CSRF_TOKEN'];
119 $max_livetime = 10800; // 3 hours
123 $x = explode('.', $hash);
124 if (time() > (IntVal($x[0]) + $max_livetime)) {
128 $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename);
130 return ($sec_hash == $x[1]);
133 public static function getFormSecurityStandardErrorMessage()
135 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;
138 public static function checkFormSecurityTokenRedirectOnError($err_redirect, $typename = '', $formname = 'form_security_token')
140 if (!self::checkFormSecurityToken($typename, $formname)) {
142 Logger::log('checkFormSecurityToken failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
143 Logger::log('checkFormSecurityToken failed: _REQUEST data: ' . print_r($_REQUEST, true), Logger::DATA);
144 notice(self::getFormSecurityStandardErrorMessage());
145 $a->internalRedirect($err_redirect);
149 public static function checkFormSecurityTokenForbiddenOnError($typename = '', $formname = 'form_security_token')
151 if (!self::checkFormSecurityToken($typename, $formname)) {
153 Logger::log('checkFormSecurityToken failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
154 Logger::log('checkFormSecurityToken failed: _REQUEST data: ' . print_r($_REQUEST, true), Logger::DATA);
156 throw new \Friendica\Network\HTTPException\ForbiddenException();