@@ -78,7 +78,7 @@ class HttpAPIServer {
78
78
79
79
app.post ('/s5/upload/directory' , (req, res) async {
80
80
final auth = await node.checkAuth (req, 's5/upload/directory' );
81
- if (auth.denied) return res.unauthorized (auth);
81
+ if (auth.denied || auth.restricted ) return res.unauthorized (auth);
82
82
83
83
if (node.store == null ) {
84
84
throw 'No store configured, uploads not possible' ;
@@ -119,7 +119,7 @@ class HttpAPIServer {
119
119
120
120
app.post ('/s5/upload' , (req, res) async {
121
121
final auth = await node.checkAuth (req, 's5/upload' );
122
- if (auth.denied) return res.unauthorized (auth);
122
+ if (auth.denied || auth.restricted ) return res.unauthorized (auth);
123
123
124
124
if (node.store == null ) {
125
125
throw 'No store configured, uploads not possible' ;
@@ -223,7 +223,7 @@ class HttpAPIServer {
223
223
// TODO Add ?routingHints=
224
224
app.post ('/s5/pin/:cid' , (req, res) async {
225
225
final auth = await node.checkAuth (req, 's5/pin' );
226
- if (auth.denied) return res.unauthorized (auth);
226
+ if (auth.denied || auth.restricted ) return res.unauthorized (auth);
227
227
228
228
final cid = CID .decode (req.params['cid' ]);
229
229
@@ -330,7 +330,7 @@ class HttpAPIServer {
330
330
331
331
app.post ('/s5/upload/tus' , (req, res) async {
332
332
final auth = await node.checkAuth (req, 's5/upload/tus' );
333
- if (auth.denied) return res.unauthorized (auth);
333
+ if (auth.denied || auth.restricted ) return res.unauthorized (auth);
334
334
335
335
final uploadLength = int .parse (req.headers.value ('upload-length' )! );
336
336
@@ -380,7 +380,7 @@ class HttpAPIServer {
380
380
381
381
app.post ('/s5/import/http' , (req, res) async {
382
382
final auth = await node.checkAuth (req, 's5/import/http' );
383
- if (auth.denied) return res.unauthorized (auth);
383
+ if (auth.denied || auth.restricted ) return res.unauthorized (auth);
384
384
385
385
if (node.store == null ) {
386
386
throw 'No store configured, uploads not possible' ;
@@ -708,6 +708,8 @@ class HttpAPIServer {
708
708
709
709
final map = node.getCachedStorageLocations (hash, [
710
710
storageLocationTypeFull,
711
+ storageLocationTypeFile,
712
+ storageLocationTypeBridge,
711
713
]);
712
714
713
715
final availableNodes = map.keys.toList ();
@@ -914,6 +916,11 @@ class HttpAPIServer {
914
916
}
915
917
}
916
918
919
+ if (cid == null && request.uri.path.startsWith ('/s5/admin/app' )) {
920
+ // ! Admin Web UI
921
+ cid = CID .decode ('zrjD3HKdKj56sTsHcFd5XhcVf72SGFVZQnMDq2RuYCe7Hiw' );
922
+ }
923
+
917
924
if (cid == null ) {
918
925
try {
919
926
cid = CID .decode (parts[0 ]);
0 commit comments