Cheetah
license.php
Go to the documentation of this file.
1 <?php
2 
8 require_once('../inc/header.inc.php');
9 require_once(CH_DIRECTORY_PATH_INC . 'profiles.inc.php');
10 require_once(CH_DIRECTORY_PATH_INC . 'design.inc.php');
11 require_once(CH_DIRECTORY_PATH_INC . 'admin_design.inc.php');
12 require_once(CH_DIRECTORY_PATH_INC . 'utils.inc.php');
13 
14 $logged['admin'] = member_auth(1, true, true);
16 
17 // Store this websites IP address.
18 setParam('site_ip', $_SERVER["SERVER_ADDR"]);
19 
20 // This is used to manually force a licence check.
21 // Here for testing of licensing system. Will be removed from production.
22 if (isset($_GET['checklic'])) {
23  if ($_GET['checklic'] == 'true') {
24  echo 'Check License<br><br>';
25  chCheckLicense(true, true, false);
26  }
27  exit;
28 }
29 
30 if (isset($_POST['license_code']) && isset($_POST['register'])) {
31  $sLicense = $_POST['license_code'];
32  if ($sLicense != '') {
33  setParam('license_code', $sLicense);
34  setParam('license_keydata', '');
35  chCheckLicense(false, true, false);
36  header('Location: ' . $_SERVER['PHP_SELF']);
37  die;
38  }
39 }
40 
41 if (isset($_POST['recheck'])) {
42  // Recheck server and update stored license_keydata.
43  chCheckLicense(false, true, false);
44  header('Location: ' . $_SERVER['PHP_SELF']);
45  die;
46 }
47 
48 if (isset($_POST['reset'])) {
49  // Reset license.
50  setParam('license_code', '');
51  setParam('license_keydata', '');
52  setcookie('aun', time(), time() + 3600, "/"); // Expires in 1 hour.
53  header('Location: ' . $_SERVER['PHP_SELF']);
54  die;
55 }
56 
57 $sLicense = getParam('license_code');
58 $sLicenseData = getParam('license_keydata');
59 if ($sLicenseData != '') {
60  $aLicenseData = chJsonDecode($sLicenseData);
61 } else {
62  $sLicense = '';
63 }
64 
65 $chLicenseStatus = '<span style="color: #008000">Valid</span>';
66 if ((int)$aLicenseData['subscription_canceled'] == 1) {
67  $chLicenseStatus = '<span style="color: #800000">Subscription Canceled</span>';
68 }
69 if ((int)$aLicenseData['suspended'] == 1) {
70  $chLicenseStatus = '<span style="color: #800000">Suspended</span>';
71 }
72 if ((int)$aLicenseData['revoked'] == 1) {
73  $chLicenseStatus = '<span style="color: #800000">Revoked</span>';
74 }
75 if ($aLicenseData['status'] == 'Invalid') {
76  $chLicenseStatus = '<span style="color: #800000">Invalid</span>';
77  $aLicenseData['site_url'] = '';
78  $aLicenseData['server_ip'] = '';
79  $aLicenseData['key_type'] = '';
80 }
81 if ($sLicense == '') {
82  $chLicenseStatus = '<span style="color: #000080">Unregistered</span>';
83 }
84 
85 
88 if ($aLicenseData['site_url'] == '') {
89  $aLicenseData['site_url'] = 'Unregistered';
90 }
91 if ($aLicenseData['server_ip'] == '') {
92  $aLicenseData['server_ip'] = 'Unregistered';
93 }
94 $aLicenseData['issue_date'] = date("F d, Y", $iIssueDate);
95 if ($aLicenseData['key_type'] == 'Permanent' || $aLicenseData['key_type'] == 'Free') {
96  $aLicenseData['expire_date'] = 'Never';
97 } else {
98  $aLicenseData['expire_date'] = date("F d, Y", $iExpiresDate);
99 }
100 
101 $aVars = array(
102  'license_status' => $chLicenseStatus,
103  'license_key' => $aLicenseData['license_key'],
104  'site_url' => $aLicenseData['site_url'],
105  'server_ip' => $aLicenseData['server_ip'],
106  'key_type' => $aLicenseData['key_type'],
107  'warning' => ch_js_string(_t('_adm_license_warning')),
108  'reset_warning' => ch_js_string(_t('_adm_license_reset_warning')),
109 
110  'ch_if:suspended' => array(
111  'condition' => $aLicenseData['subscription_canceled'],
112  'content' => array(
113  'suspended_reason' => $aLicenseData['suspended_reason']
114  )
115  ),
116  'ch_if:prepaid' => array(
117  'condition' => $aLicenseData['key_type'] == 'Prepaid',
118  'content' => array()
119  ),
120 
121  'license' => $sLicense,
122  'license_status' => $chLicenseStatus,
123 
124  'ch_if:show_unregistered' => array(
125  'condition' => $sLicense == '' || (int)$aLicenseData['active'] == 0,
126  'content' => array()
127  ),
128  'ch_if:show_permanent' => array(
129  'condition' => $aLicenseData['key_type'] == 'Permanent',
130  'content' => array(
131  'license' => $sLicense
132  )
133  ),
134  'ch_if:show_free' => array(
135  'condition' => $aLicenseData['key_type'] == 'Free',
136  'content' => array(
137  'license' => $sLicense
138  )
139  ),
140  'ch_if:show_monthly' => array(
141  'condition' => $aLicenseData['key_type'] == 'Monthly',
142  'content' => array(
143  'license' => $sLicense
144  )
145  ),
146  'ch_if:show_yearly' => array(
147  'condition' => $aLicenseData['key_type'] == 'Yearly',
148  'content' => array(
149  'license' => $sLicense
150  )
151  ),
152  'ch_if:show_auto_renew' => array(
153  'condition' => $aLicenseData['key_type'] == 'Auto Renew',
154  'content' => array(
155  'license' => $sLicense
156  )
157  ),
158 );
159 
160 if ($sLicense == '' || $aLicenseData['status'] == 'Invalid') {
161  $aVars['site_url'] = 'Not available until valid key registered to site.';
162  $aVars['server_ip'] = 'Not available until valid key registered to site.';
163  $aVars['key_type'] = 'Not available until valid key has been purchased.';
164 }
165 
166 $sContent = $GLOBALS['oAdmTemplate']->parseHtmlByName('license.html', $aVars);
167 
169 $_page = array(
170  'name_index' => $iNameIndex,
171  'css_name' => array('license.css'),
172  'header' => _t('_adm_page_cpt_license'),
173  'header_text' => _t('_adm_box_cpt_license')
174 );
175 
176 $_page_cont[$iNameIndex]['page_main_code'] = $GLOBALS['oAdmTemplate']->parseHtmlByName('design_box_content.html', array(
177  'content' => $sContent
178 ));
179 
180 PageCodeAdmin();
181 
182 function chDateToTimestamp($sDate)
183 {
184  $aDate = explode('-', $sDate);
185  $iDate = mktime(0, 0, 0, $aDate[0], $aDate[1], $aDate[2]);
186  return $iDate;
187 }
header
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
Definition: URI.MungeResources.txt:10
$logged
$logged['admin']
Definition: license.php:14
$chLicenseStatus
$chLicenseStatus
Definition: license.php:65
chDateToTimestamp
chDateToTimestamp($sDate)
Definition: license.php:182
ch_js_string
ch_js_string($mixedInput, $iQuoteType=CH_ESCAPE_STR_AUTO)
Definition: utils.inc.php:1294
php
$iId
$iId
Definition: license.php:15
$aDate
$aDate
Definition: cron.php:133
$_page
$_page
Definition: license.php:169
exit
exit
Definition: cart.php:21
$_GET
$_GET['debug']
Definition: index.php:67
$sLicense
if(isset($_GET['checklic'])) if(isset($_POST['license_code']) &&isset($_POST['register'])) if(isset($_POST['recheck'])) if(isset($_POST['reset'])) $sLicense
Definition: license.php:57
getParam
getParam($sParamName, $bUseCache=true)
Definition: db.inc.php:130
getLoggedId
getLoggedId()
Definition: profiles.inc.php:32
$iIssueDate
if((int) $aLicenseData['subscription_canceled']==1) if((int) $aLicenseData['suspended']==1) if((int) $aLicenseData['revoked']==1) if($aLicenseData['status']=='Invalid') if($sLicense=='') $iIssueDate
Definition: license.php:86
PageCodeAdmin
PageCodeAdmin($oTemplate=null)
Definition: admin_design.inc.php:45
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
time
that in the case of a Adaptation or at a minimum such credit will if a credit for all contributing authors of the Adaptation or Collection then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors For the avoidance of You may only use the credit required by this Section for the purpose of attribution in the manner set out above by exercising Your rights under this You may not implicitly or explicitly assert or imply any connection sponsorship or endorsement by the Original Licensor and or Attribution as of You or Your use of the without the express prior written permission of the Original Licensor and or Attribution Parties Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable if You Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or You must not modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author s honor or reputation Licensor agrees that in those in which any exercise of the right granted in modification or other derogatory action prejudicial to the Original Author s honor and the Licensor will waive or not as this to the fullest extent permitted by the applicable national to enable You to reasonably exercise Your right under Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN LICENSOR OFFERS THE WORK AS IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE STATUTORY OR WITHOUT WARRANTIES OF FITNESS FOR A PARTICULAR OR THE ABSENCE OF LATENT OR OTHER OR THE PRESENCE OF ABSENCE OF WHETHER OR NOT DISCOVERABLE SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED SO SUCH EXCLUSION MAY NOT APPLY TO YOU Limitation on Liability EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES Termination This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License Individuals or entities who have received Adaptations or Collections from You under this will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses and will survive any termination of this License Subject to the above terms and the license granted here is Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time
Definition: license.txt:56
$iDate
$iDate
Definition: cron.php:130
member_auth
member_auth($member=0, $error_handle=true, $bAjx=false)
Definition: admin.inc.php:262
$aVars
$aVars
Definition: license.php:101
setParam
setParam($sParamName, $sParamValue)
Definition: db.inc.php:149
$sLicenseData
$sLicenseData
Definition: license.php:58
$iNameIndex
$iNameIndex
Definition: license.php:168
$sContent
if($sLicense==''|| $aLicenseData['status']=='Invalid') $sContent
Definition: license.php:166
$aLicenseData
if($aLicenseData['site_url']=='') if($aLicenseData['server_ip']=='') $aLicenseData['issue_date']
Definition: license.php:94
$_page_cont
$_page_cont[$iNameIndex]['page_main_code']
Definition: license.php:176
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
$iExpiresDate
$iExpiresDate
Definition: license.php:87