-
Notifications
You must be signed in to change notification settings - Fork 1
/
MagicLoginPlugin.php
75 lines (63 loc) · 1.58 KB
/
MagicLoginPlugin.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
<?php
/**
* MagicLogin Main File
*
* Author: Aaron Berkowitz <[email protected]>
*
*/
namespace Craft;
class MagicLoginPlugin extends BasePlugin
{
public function getName()
{
return Craft::t('Magic Login');
}
public function getVersion()
{
return '0.0.1';
}
public function getSchemaVersion()
{
return '0.0.1';
}
public function getDeveloper()
{
return 'Aaron Berkowitz';
}
public function getDeveloperUrl()
{
return 'https://github.com/aberkie/magiclogin';
}
public function getDescription()
{
return 'Simple password-less login for Craft CMS.';
}
public function registerSiteRoutes()
{
return array(
'magiclogin/auth/(?P<publicKey>\w+)/(?P<timestamp>\d+)/(?P<signature>\w+)'
=> array('action' => 'magicLogin/authentication/authenticate'),
'magiclogin/login' => array('action' => 'magicLogin/authentication/loginForm')
);
}
protected function defineSettings()
{
return array(
'linkExpirationTime' => array(AttributeType::Number, 'default' => 5),
'redirectAfterLogin' => array(AttributeType::String, 'default' => '/admin')
);
}
public function getSettingsHtml()
{
return craft()->templates->render(
'magiclogin/settings',
array(
'settings' => $this->getSettings()
)
);
}
public function init()
{
require CRAFT_PLUGINS_PATH.'magiclogin/vendor/autoload.php';
}
}