-
Notifications
You must be signed in to change notification settings - Fork 3
/
api_tokens_page.php
155 lines (137 loc) · 4.69 KB
/
api_tokens_page.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
148
149
150
151
152
153
154
155
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses api_token_api.php
* @uses authentication_api.php
* @uses current_user_api.php
* @uses database_api.php
* @uses html_api.php
*/
require_once( 'core.php' );
require_api( 'api_token_api.php' );
require_api( 'authentication_api.php' );
require_api( 'current_user_api.php' );
require_api( 'database_api.php' );
require_api( 'html_api.php' );
auth_ensure_user_authenticated();
auth_reauthenticate();
current_user_ensure_unprotected();
layout_page_header( lang_get( 'api_tokens_link' ) );
layout_page_begin();
print_account_menu( 'api_tokens_page.php' );
?>
<div class="col-md-12 col-xs-12">
<div class="space-10"></div>
<div id="api-token-create-div" class="form-container">
<form id="account-create-api-token-form" method="post" action="api_token_create.php">
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<i class="ace-icon fa fa-plus"></i>
<?php echo lang_get( 'api_token_create_form_title' ) ?>
</h4>
</div>
<div class="widget-body">
<div class="widget-main no-padding">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<fieldset>
<?php echo form_security_field( 'create_api_token_form' ); ?>
<tr>
<td class="category">
<?php echo lang_get( 'api_token_name' ) ?>
</td>
<td>
<input class="input-sm" id="token_name" type="text" name="token_name" size="64" maxlength="<?php echo DB_FIELD_SIZE_API_TOKEN_NAME; ?>" />
</td>
</tr>
</fieldset>
</table>
</div>
</div>
<div class="widget-toolbox padding-8 clearfix">
<input type="submit" class="btn btn-primary btn-white btn-round" value="<?php echo lang_get( 'api_token_create_button' ) ?>" />
</div>
</div>
</div>
</form>
</div>
<?php
$t_user_id = auth_get_current_user_id();
$t_tokens = api_token_get_all( $t_user_id );
$t_date_format = config_get( 'normal_date_format' );
if ( count( $t_tokens ) > 0 ) {
?>
<div class="space-10"></div>
<div id="api-token-list-div" class="form-container">
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<i class="ace-icon fa fa-ticket"></i>
<?php echo lang_get( 'api_tokens_title' ) ?>
</h4>
</div>
<div class="widget-body">
<div class="widget-main no-padding">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<thead>
<tr class="row-category">
<th><?php echo lang_get( 'api_token_name' ); ?></th>
<th><?php echo lang_get( 'date_created' ); ?></th>
<th><?php echo lang_get( 'last_used' ); ?></th>
<th><?php echo lang_get( 'actions' ); ?></th>
</tr>
</thead>
<tbody>
<?php foreach( $t_tokens as $t_token ) {
extract( $t_token, EXTR_PREFIX_ALL, 'u' );
$u_date_created = date( $t_date_format, $u_date_created );
if( api_token_is_used( $t_token ) ) {
$u_date_used = date( $t_date_format, $u_date_used );
} else {
$u_date_used = lang_get( 'api_token_never_used' );
}
?>
<tr>
<td><?php echo string_display_line( $u_name ) ?></td>
<td><?php echo string_display_line( $u_date_created ) ?></td>
<td><?php echo string_display_line( $u_date_used ) ?></td>
<td>
<form id="revoke-api-token-form" method="post" action="api_token_revoke.php">
<?php echo form_security_field( 'revoke_api_token_form' ); ?>
<fieldset>
<input id="token_id" type="hidden" name="token_id" value="<?php echo $u_id ; ?>" />
<input id="token_name" type="hidden" name="token_name" value="<?php echo string_attribute( $u_name ); ?>" />
<input type="submit" class="btn btn-sm btn-primary btn-white btn-round" value="<?php echo lang_get( 'api_token_revoke_button' ) ?>" />
</fieldset>
</form>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<?php
}
layout_page_end();