-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKnockKnockPlugin.php
147 lines (128 loc) · 3.51 KB
/
KnockKnockPlugin.php
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
/**
* KnockKnock plugin for Craft CMS
*
* Password protect your website with a single password. No need to use Apache or Nginx
* This only protects urls served up through Craft, it does not protect static files (ie js, css, images)
*
* @author Derrick Grigg
* @copyright Copyright (c) 2017 Derrick Grigg
* @link https://dgrigg.com
* @package KnockKnock
* @since 1.0.0
*/
namespace Craft;
class KnockKnockPlugin extends BasePlugin
{
/**
* Returns the user-facing name.
*
* @return mixed
*/
public function getName()
{
return Craft::t('Knock Knock');
}
/**
* Plugins can have descriptions of themselves displayed on the Plugins page by adding a getDescription() method
* on the primary plugin class:
*
* @return mixed
*/
public function getDescription()
{
return Craft::t('Password protect your public facing Craft website with a single password');
}
/**
* Returns the version number.
*
* @return string
*/
public function getVersion()
{
return '1.0.0';
}
/**
* As of Craft 2.5, Craft no longer takes the whole site down every time a plugin’s version number changes, in
* case there are any new migrations that need to be run. Instead plugins must explicitly tell Craft that they
* have new migrations by returning a new (higher) schema version number with a getSchemaVersion() method on
* their primary plugin class:
*
* @return string
*/
public function getSchemaVersion()
{
return '1.0.0';
}
/**
* Returns the developer’s name.
*
* @return string
*/
public function getDeveloper()
{
return 'Derrick Grigg';
}
/**
* Returns the developer’s website URL.
*
* @return string
*/
public function getDeveloperUrl()
{
return 'https://dgrigg.com';
}
/**
* Returns whether the plugin should get its own tab in the CP header.
*
* @return bool
*/
public function hasCpSection()
{
return false;
}
/**
* Defines the attributes that model your plugin’s available settings.
*
* @return array
*/
protected function defineSettings()
{
return array(
'password' => array(AttributeType::String, 'label' => 'Password', 'default' => '', 'required' => true, 'minLength' => 8),
);
}
/**
* set friendly urls to be used by plugin
*/
public function registerSiteRoutes()
{
return array(
'knockKnock/whoIsThere' => array('action' => 'knockKnock/ask')
);
}
/**
* Returns the HTML that displays your plugin’s settings.
*
* @return mixed
*/
public function getSettingsHtml()
{
return craft()->templates->render('knockknock/settings', array(
'settings' => $this->getSettings()
));
}
public function init()
{
parent::init();
$url = craft()->request->getUrl();
$token = craft()->request->getCookie('siteAccessToken');
$user = craft()->userSession->getUser();
//force challenge for non authenticated site visitors
if ((craft()->request->isSiteRequest()) && (!$user) && ($token == '') && (stripos($url, 'knockknock') === FALSE) ) {
craft()->userSession->setFlash( 'redir', $url);
$redir = '/knockKnock/whoIsThere';
craft()->request->redirect($redir);
}
}
}