-
Notifications
You must be signed in to change notification settings - Fork 3
/
sshkey.pages.inc
253 lines (213 loc) · 6.98 KB
/
sshkey.pages.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?php
function sshkey_page_list_public_keys($user=NULL) {
drupal_add_css(drupal_get_path('module', 'sshkey') . '/css/sshkey.css');
$keys = sshkey_user_public_keys_list($user->uid);
$header = array(
array('data' => t('Fingerprint'), 'class' => 'sshkey-public-key-fingerprint'),
array('data' => t('Name'), 'class' => 'sshkey-public-key-name'),
array('data' => t('Created'), 'class' => 'sshkey-public-key-created'),
array('data' => t('Operations'), 'class' => 'sshkey-public-key-operations'),
);
$rows = array();
foreach ($keys as $key) {
$segmented = '';
for ($i=0; $i<8; $i+=2) {
$segmented .= substr($key['fingerprint'], $i, 2) . ':';
}
$data = array(
'fingerprint' => array(
'data' => $segmented . '...',
'class' => 'sshkey-public-key-key',
),
'name' => array(
'data' => $key['name'],
'class' => 'sshkey-public-key-name',
),
'created' => array(
'data' => format_date($key['created']),
'class' => 'sshkey-public-key-created',
),
);
$operations = array();
$operations[] = array(
'title' => t('Edit'),
'href' => sprintf('user/%d/sshkeys/%s/edit', $key['uid'], $key['fingerprint']),
'query' => drupal_get_destination(),
);
$operations[] = array(
'title' => t('Delete'),
'href' => sprintf('user/%d/sshkeys/%s/delete', $key['uid'], $key['fingerprint']),
'query' => drupal_get_destination(),
);
$rows[] = array(
'data' => $data + array(
'operations' => array(
'data' => theme('links', $operations),
'class' => 'sshkey-public-key-operations',
),
),
'class' => 'sshkey-public-key-operations',
);
}
$table = theme('sshkey_table', $header, $rows, array('id' => 'sshkey-public-list-key'));
$form = drupal_get_form('sshkey_add_public_key_form', $user);
return theme('sshkey_public_key_list_page', $table, $form);
}
function sshkey_add_public_key_form($form_state, $account) {
$form = array();
$form['user_object'] = array(
'#type' => 'value',
'#value' => $account,
);
$form['name'] = array(
'#type' => 'textfield',
'#title' => t('Name'),
'#description' => t('The name of the public key. Will be filled in from the key comment if omitted.'),
'#size' => 40,
'#maxlength' => 255,
);
$form['public_key'] = array(
'#type' => 'textarea',
'#title' => t('Public key'),
'#description' => t('The contents of your public key file.'),
'#cols' => 40,
'#rows' => 5,
'#required' => TRUE,
);
$form['save'] = array(
'#type' => 'submit',
'#value' => t('Save'),
);
return $form;
}
function sshkey_add_public_key_form_validate($form, $form_state) {
module_load_include('inc', 'sshkey');
$values = $form_state['values'];
$user = $values['user_object'];
try {
// Parse the key
$pubkey = sshkey_public_key_parse($values['public_key']);
// Check if the key is blacklisted.
if (sshkey_public_key_blacklisted($pubkey['pubkey'])) {
form_set_error('public_key', t('The key you have used is blacklisted'));
}
// Check if the key exists
$exists = sshkey_public_key_load($pubkey['fingerprint']);
if ($exists) {
// Be a bit helpful and tell the user if the key has been added by herself,
// or if it's been added by someone else. Not sure how to treat the double-
// add scenario.
if ($exists['uid'] == $user->uid) {
form_set_error('public_key', t('You have already added this public key.'));
}
else {
form_set_error('public_key', t('This public key has already been added by someone else, contact the webmaster at @email if you have any questions or suspect malicious intent.', array(
'@email' => variable_get('site_mail', ''),
)));
}
}
}
catch (Exception $e) {
form_set_error('public_key', t('There was a problem with the key: !message', array(
'!message' => $e->getMessage(),
)));
}
}
function sshkey_add_public_key_form_submit($form, $form_state) {
$values = $form_state['values'];
$user = $values['user_object'];
try {
sshkey_public_key_save($user->uid, $values['public_key'], $values['name']);
}
catch (Exception $e) {
drupal_set_message(t('There was a problem saving your key: !message', array(
'!message' => $e->getMessage(),
)), 'error');
}
}
function sshkey_page_edit_public_key($key) {
return drupal_get_form('sshkey_edit_public_key_form', $key);
}
function sshkey_edit_public_key_form($form_state, $key) {
$form = array();
$data = sshkey_get_public_key_data($key['fingerprint']);
$segmented = array();
for ($i=0; $i<strlen($key['fingerprint']); $i+=2) {
$segmented[] = substr($key['fingerprint'], $i, 2);
}
$readable_fingerprint = join($segmented, ':');
$form['key_object'] = array(
'#type' => 'value',
'#value' => $data,
);
$form['name'] = array(
'#type' => 'textfield',
'#title' => t('Name'),
'#description' => t('The name that should be used for this key.'),
'#size' => 40,
'#maxlength' => 255,
'#default_value' => $key['name'],
);
$form['created'] = array(
'#type' => 'item',
'#title' => t('Created'),
'#value' => format_date($key['created']),
);
$form['fingerprint'] = array(
'#type' => 'item',
'#title' => t('Fingerprint'),
'#value' => $readable_fingerprint,
);
$form['public_key'] = array(
'#type' => 'textarea',
'#title' => t('Public key'),
'#disabled' => TRUE,
'#value' => $data['pubkey'],
'#rows' => 8,
);
$form['save'] = array(
'#type' => 'submit',
'#value' => t('Save'),
);
return $form;
}
function sshkey_edit_public_key_form_submit($form, $form_state) {
$values = $form_state['values'];
$key = $values['key_object'];
$name = empty($values['name']) ? $key['comment'] : $values['name'];
sshkey_public_key_update($key['fingerprint'], $name);
drupal_goto();
}
function sshkey_page_delete_public_key($key) {
return drupal_get_form('sshkey_delete_public_key_form', $key);
}
function sshkey_delete_public_key_form($form_state, $key) {
$form['key_object'] = array(
'#type' => 'value',
'#value' => $key
);
$form['warning'] = array(
'#type' => 'item',
'#title' => t('Warning'),
'#value' => t('Your\'e about to delete a public key, effectively disabling access for any services that use it. Are you sure that you want to do this?'),
);
$destination = 'user/' . $key->uid . '/sshkeys';
if (isset($_REQUEST['destination'])) {
$destination = $_REQUEST['destination'];
}
$form['cancel'] = array(
'#type' => 'item',
'#title' => t('Cancel'),
'#value' => l('Click here to cancel the deletion of the key', $destination),
);
$form['delete'] = array(
'#type' => 'submit',
'#value' => t('Delete'),
);
return $form;
}
function sshkey_delete_public_key_form_submit($form, $form_state) {
$key = $form_state['values']['key_object'];
sshkey_public_key_delete($key['fingerprint']);
drupal_goto();
}