Pitu 6 years ago
parent
commit
5a701536cf
1 changed files with 8 additions and 1 deletions
  1. 8 1
      src/api/routes/files/uploadPOST.js

+ 8 - 1
src/api/routes/files/uploadPOST.js

@@ -6,7 +6,7 @@ const log = require('../../utils/Log');
 const jetpack = require('fs-jetpack');
 const jetpack = require('fs-jetpack');
 const Busboy = require('busboy');
 const Busboy = require('busboy');
 const fs = require('fs');
 const fs = require('fs');
-
+const { dump } = require('dumper.js');
 /*
 /*
 	TODO: Strip exif data if the owner/user configured it as such
 	TODO: Strip exif data if the owner/user configured it as such
 	TODO: If source has transparency generate a png thumbnail, otherwise a jpg.
 	TODO: If source has transparency generate a png thumbnail, otherwise a jpg.
@@ -22,6 +22,13 @@ class uploadPOST extends Route {
 
 
 	async run(req, res, db) {
 	async run(req, res, db) {
 		const user = await Util.isAuthorized(req);
 		const user = await Util.isAuthorized(req);
+		// TODO: .env variables are all casted to strings. pepehands
+		// https://github.com/niftylettuce/dotenv-parse-variables
+		dump(user);
+		dump(process.env.PUBLIC_MODE);
+		console.log('user', user);
+		console.log('public_mode', process.env.PUBLIC_MODE);
+
 		if (!user && !process.env.PUBLIC_MODE) return res.status(401).json({ message: 'Not authorized to use this resource' });
 		if (!user && !process.env.PUBLIC_MODE) return res.status(401).json({ message: 'Not authorized to use this resource' });
 		return this.uploadFile(req, res, db, user);
 		return this.uploadFile(req, res, db, user);
 	}
 	}