File tree 8 files changed +71
-1
lines changed
8 files changed +71
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ const internalAccessList = {
31
31
. insertAndFetch ( {
32
32
name : data . name ,
33
33
satisfy_any : data . satisfy_any ,
34
+ pass_auth : data . pass_auth ,
34
35
owner_user_id : access . token . getUserId ( 1 )
35
36
} ) ;
36
37
} )
@@ -128,6 +129,7 @@ const internalAccessList = {
128
129
. patch ( {
129
130
name : data . name ,
130
131
satisfy_any : data . satisfy_any ,
132
+ pass_auth : data . pass_auth ,
131
133
} ) ;
132
134
}
133
135
} )
Original file line number Diff line number Diff line change
1
+ const migrate_name = 'pass_auth' ;
2
+ const logger = require ( '../logger' ) . migrate ;
3
+
4
+ /**
5
+ * Migrate
6
+ *
7
+ * @see http://knexjs.org/#Schema
8
+ *
9
+ * @param {Object } knex
10
+ * @param {Promise } Promise
11
+ * @returns {Promise }
12
+ */
13
+ exports . up = function ( knex /*, Promise*/ ) {
14
+
15
+ logger . info ( '[' + migrate_name + '] Migrating Up...' ) ;
16
+
17
+ return knex . schema . table ( 'access_list' , function ( access_list ) {
18
+ access_list . integer ( 'pass_auth' ) . notNull ( ) . defaultTo ( 1 ) ;
19
+ } )
20
+ . then ( ( ) => {
21
+ logger . info ( '[' + migrate_name + '] access_list Table altered' ) ;
22
+ } ) ;
23
+ } ;
24
+
25
+ /**
26
+ * Undo Migrate
27
+ *
28
+ * @param {Object } knex
29
+ * @param {Promise } Promise
30
+ * @returns {Promise }
31
+ */
32
+ exports . down = function ( knex /*, Promise*/ ) {
33
+ logger . info ( '[' + migrate_name + '] Migrating Down...' ) ;
34
+
35
+ return knex . schema . table ( 'access_list' , function ( access_list ) {
36
+ access_list . dropColumn ( 'pass_auth' ) ;
37
+ } )
38
+ . then ( ( ) => {
39
+ logger . info ( '[' + migrate_name + '] access_list pass_auth Column dropped' ) ;
40
+ } ) ;
41
+ } ;
Original file line number Diff line number Diff line change @@ -93,6 +93,10 @@ class AccessList extends Model {
93
93
get satisfy ( ) {
94
94
return this . satisfy_any ? 'satisfy any' : 'satisfy all' ;
95
95
}
96
+
97
+ get passauth ( ) {
98
+ return this . pass_auth ? '' : 'proxy_set_header Authorization "";' ;
99
+ }
96
100
}
97
101
98
102
module . exports = AccessList ;
Original file line number Diff line number Diff line change 42
42
"satisfy_any" : {
43
43
"type" : " boolean"
44
44
},
45
+ "pass_auth" : {
46
+ "type" : " boolean"
47
+ },
45
48
"meta" : {
46
49
"type" : " object"
47
50
}
102
105
"satisfy_any" : {
103
106
"$ref" : " #/definitions/satisfy_any"
104
107
},
108
+ "pass_auth" : {
109
+ "$ref" : " #/definitions/pass_auth"
110
+ },
105
111
"items" : {
106
112
"type" : " array" ,
107
113
"minItems" : 0 ,
167
173
"satisfy_any" : {
168
174
"$ref" : " #/definitions/satisfy_any"
169
175
},
176
+ "pass_auth" : {
177
+ "$ref" : " #/definitions/pass_auth"
178
+ },
170
179
"items" : {
171
180
"type" : " array" ,
172
181
"minItems" : 0 ,
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ server {
27
27
# Authorization
28
28
auth_basic "Authorization required";
29
29
auth_basic_user_file /data/access/{{ access_list_id }};
30
+
31
+ {{ access_list.passauth }}
30
32
{% endif %}
31
33
32
34
# Access Rules
Original file line number Diff line number Diff line change 31
31
</label >
32
32
</div >
33
33
</div >
34
+
35
+ <div class =" col-sm-6 col-md-6" >
36
+ <div class =" form-group" >
37
+ <label class =" custom-switch" >
38
+ <input type =" checkbox" class =" custom-switch-input" name =" pass_auth" value =" 1" <%- typeof pass_auth ! == ' undefined' && pass_auth ? ' checked' : ' ' % >>
39
+ <span class =" custom-switch-indicator" ></span >
40
+ <span class =" custom-switch-description" ><% - i18n (' access-lists' , ' pass-auth' ) %> </span >
41
+ </label >
42
+ </div >
43
+ </div >
34
44
</div >
35
45
</div >
36
46
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ module.exports = Mn.View.extend({
73
73
let data = {
74
74
name : form_data . name ,
75
75
satisfy_any : ! ! form_data . satisfy_any ,
76
+ pass_auth : ! ! form_data . pass_auth ,
76
77
items : items_data ,
77
78
clients : clients_data
78
79
} ;
Original file line number Diff line number Diff line change 206
206
"authorization" : " Authorization" ,
207
207
"access" : " Access" ,
208
208
"satisfy" : " Satisfy" ,
209
- "satisfy-any" : " Satisfy Any"
209
+ "satisfy-any" : " Satisfy Any" ,
210
+ "pass-auth" : " Pass Auth to Host"
210
211
},
211
212
"users" : {
212
213
"title" : " Users" ,
You can’t perform that action at this time.
0 commit comments