This repository was archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstackla.admin.inc
132 lines (113 loc) · 3.99 KB
/
stackla.admin.inc
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
<?php
/**
* @file: Stackla Base admin functions.
*/
/**
* Stackla Base admin configuration form.
*/
function stackla_settings_form($form, &$form_state) {
global $base_url;
$form = array();
$form['for-stackla'] = array(
'#type' => 'fieldset',
'#title' => t('Step 1: Configure Stackla'),
'#description' => t("<p>Before you can configure Drupal, you need to first configure Stackla.</p><p>Copy the 'Callback URL' below and paste it in the relevant field in the Drupal plugin configuration screen in Stackla.</p>"),
);
$form['for-stackla']['stackla_oauth_callback'] = array(
'#title' => t('Callback URL'),
'#type' => 'textfield',
'#value' => $base_url . '/admin/config/services/stackla/accesscallback',
'#disabled' => TRUE,
'#description' => t("Please copy + paste this URL into the 'Callback URL' field in the Drupal plugin configuration screen in Stackla.")
);
$form['from-stackla'] = array(
'#type' => 'fieldset',
'#title' => t('Step 2: Configure Drupal'),
'#description' => t('You can retrieve these details from the Drupal plugin configuration screen.'),
);
$form['from-stackla']['stackla_stack_name'] = array(
'#title' => t('Stack Shortname'),
'#type' => 'textfield',
'#required' => TRUE,
'#default_value' => variable_get('stackla_stack_name'),
);
$form['from-stackla']['stackla_client_id'] = array(
'#title' => t('Client ID'),
'#type' => 'textfield',
'#required' => TRUE,
'#default_value' => variable_get('stackla_client_id'),
);
$form['from-stackla']['stackla_client_secret'] = array(
'#title' => t('Client Secret'),
'#type' => 'textfield',
'#required' => TRUE,
'#default_value' => variable_get('stackla_client_secret'),
);
$form['auth'] = array(
'#type' => 'fieldset',
'#title' => t('Step 3: Authorize'),
'#description' => t("You need to authorize Drupal to access your Stackla account. Click 'Authorize' below, you'll be prompted to log in to Stackla to provide authorization.")
);
if (stackla_check_requirements()) {
if (!stackla_is_authenticated()) {
// Add authentication link.
$form['auth']['authenticate'] = array(
'#type' => 'submit',
'#value' => t('Authorize'),
'#op' => 'authenticate',
'#submit' => array('stackla_authenticate'),
);
}
else {
$form['auth']['revoke_authentication'] = array(
'#type' => 'submit',
'#value' => t('Revoke authorization'),
'#op' => 'authenticate',
'#submit' => array('stackla_admin_revoke_authentication'),
);
$form['auth']['reauthenticate'] = array(
'#type' => 'submit',
'#value' => t('Reauthorize'),
'#op' => 'authenticate',
'#submit' => array('stackla_admin_authenticate'),
);
}
} else {
// Add authentication link.
$form['auth']['authenticate'] = array(
'#type' => 'submit',
'#disabled' => true,
'#value' => t('Sign in as a Stackla user'),
'#op' => 'authenticate',
'#submit' => array('stackla_authenticate'),
);
}
$form['debug'] = array(
'#type' => 'fieldset',
'#title' => t('Debug'),
);
$form['debug']['stackla_debug_mode'] = array(
'#type' => 'checkbox',
'#title' => t('Enable debug mode'),
'#description' => t('Will display and log verbose debug information. This should be disabled in production.'),
'#default_value' => variable_get('stackla_debug_mode'),
);
$form['powered_by_stackla'] = array(
'#type' => 'markup',
'#markup' => t('Powered by Stackla'),
'#prefix' => '<div class="powered-by-stackla">',
'#suffix' => '</div>',
);
//CSS
$css = drupal_get_path('module','stackla') . '/css/stackla_powered.css';
$form['#attached'] = array(
'css' => array($css),
);
return(system_settings_form($form));
}
function stackla_admin_authenticate($form, &$form_state) {
stackla_authenticate();
}
function stackla_admin_revoke_authentication($form, &$form_state) {
stackla_revoke_authentication();
}