CRM/Report add missing comment blocks
[civicrm-core.git] / CRM / Core / Key.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35 class CRM_Core_Key {
36 static $_key = NULL;
37
38 static $_sessionID = NULL;
39
40 /**
41 * Generate a private key per session and store in session
42 *
43 * @return string private key for this session
44 * @static
45 * @access private
46 */
47 static function privateKey() {
48 if (!self::$_key) {
49 $session = CRM_Core_Session::singleton();
50 self::$_key = $session->get('qfPrivateKey');
51 if (!self::$_key) {
52 self::$_key = md5(uniqid(mt_rand(), TRUE)) . md5(uniqid(mt_rand(), TRUE));
53 $session->set('qfPrivateKey', self::$_key);
54 }
55 }
56 return self::$_key;
57 }
58
59 static function sessionID() {
60 if (!self::$_sessionID) {
61 $session = CRM_Core_Session::singleton();
62 self::$_sessionID = $session->get('qfSessionID');
63 if (!self::$_sessionID) {
64 self::$_sessionID = session_id();
65 $session->set('qfSessionID', self::$_sessionID);
66 }
67 }
68 return self::$_sessionID;
69 }
70
71 /**
72 * Generate a form key based on form name, the current user session
73 * and a private key. Modelled after drupal's form API
74 *
75 * @param $name
76 * @param bool $addSequence
77 *
78 * @internal param string $value name of the form
79 * @paeam boolean $addSequence should we add a unique sequence number to the end of the key
80 *
81 * @return string valid formID
82 * @static
83 * @acess public
84 */
85 static function get($name, $addSequence = FALSE) {
86 $privateKey = self::privateKey();
87 $sessionID = self::sessionID();
88 $key = md5($sessionID . $name . $privateKey);
89
90 if ($addSequence) {
91 // now generate a random number between 1 and 100K and add it to the key
92 // so that we can have forms in mutiple tabs etc
93 $key = $key . '_' . mt_rand(1, 10000);
94 }
95 return $key;
96 }
97
98 /**
99 * Validate a form key based on the form name
100 *
101 * @param $key
102 * @param string $name
103 *
104 * @param bool $addSequence
105 *
106 * @internal param string $formKey
107 * @return string $formKey if valid, else null
108 * @static
109 * @acess public
110 */
111 static function validate($key, $name, $addSequence = FALSE) {
112 if (!is_string($key)) {
113 return NULL;
114 }
115
116 if ($addSequence) {
117 list($k, $t) = explode('_', $key);
118 if ($t < 1 || $t > 10000) {
119 return NULL;
120 }
121 }
122 else {
123 $k = $key;
124 }
125
126 $privateKey = self::privateKey();
127 $sessionID = self::sessionID();
128 if ($k != md5($sessionID . $name . $privateKey)) {
129 return NULL;
130 }
131 return $key;
132 }
133
134 static function valid($key) {
135 // a valid key is a 32 digit hex number
136 // followed by an optional _ and a number between 1 and 10000
137 if (strpos('_', $key) !== FALSE) {
138 list($hash, $seq) = explode('_', $key);
139
140 // ensure seq is between 1 and 10000
141 if (!is_numeric($seq) ||
142 $seq < 1 ||
143 $seq > 10000
144 ) {
145 return FALSE;
146 }
147 }
148 else {
149 $hash = $key;
150 }
151
152 // ensure that hash is a 32 digit hex number
153 return preg_match('#[0-9a-f]{32}#i', $hash) ? TRUE : FALSE;
154 }
155 }
156