mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-20 18:21:33 +00:00
Added ability to see who uploaded a file as root
This commit is contained in:
parent
dbca0104cf
commit
7cf8b6899d
@ -231,6 +231,7 @@ uploadsController.list = function(req, res){
|
|||||||
.orderBy('id', 'DESC')
|
.orderBy('id', 'DESC')
|
||||||
.limit(25)
|
.limit(25)
|
||||||
.offset(25 * offset)
|
.offset(25 * offset)
|
||||||
|
.select('id', 'albumid', 'timestamp', 'name', 'userid')
|
||||||
.then((files) => {
|
.then((files) => {
|
||||||
db.table('albums').then((albums) => {
|
db.table('albums').then((albums) => {
|
||||||
|
|
||||||
@ -240,6 +241,8 @@ uploadsController.list = function(req, res){
|
|||||||
if(domain.hasOwnProperty('resolve'))
|
if(domain.hasOwnProperty('resolve'))
|
||||||
basedomain = domain.resolve
|
basedomain = domain.resolve
|
||||||
|
|
||||||
|
let userids = []
|
||||||
|
|
||||||
for(let file of files){
|
for(let file of files){
|
||||||
file.file = basedomain + '/' + file.name
|
file.file = basedomain + '/' + file.name
|
||||||
file.date = new Date(file.timestamp * 1000)
|
file.date = new Date(file.timestamp * 1000)
|
||||||
@ -252,62 +255,79 @@ uploadsController.list = function(req, res){
|
|||||||
if(file.albumid === album.id)
|
if(file.albumid === album.id)
|
||||||
file.album = album.name
|
file.album = album.name
|
||||||
|
|
||||||
if(config.uploads.generateThumbnails === true){
|
// Only push usernames if we are root
|
||||||
|
if(user[0].username === 'root')
|
||||||
|
if(file.userid !== undefined && file.userid !== null && file.userid !== '')
|
||||||
|
userids.push(file.userid)
|
||||||
|
|
||||||
let extensions = ['.jpg', '.jpeg', '.bmp', '.gif', '.png', '.webm', '.mp4']
|
uploadsController.generateThumbs(file, basedomain)
|
||||||
for(let ext of extensions){
|
|
||||||
if(path.extname(file.name) === ext){
|
|
||||||
|
|
||||||
file.thumb = basedomain + '/thumbs/' + file.name.slice(0, -ext.length) + '.png'
|
|
||||||
|
|
||||||
let thumbname = path.join(__dirname, '..', config.uploads.folder, 'thumbs') + '/' + file.name.slice(0, -ext.length) + '.png'
|
|
||||||
fs.access(thumbname, function(err) {
|
|
||||||
if (err && err.code === 'ENOENT') {
|
|
||||||
// File doesnt exist
|
|
||||||
|
|
||||||
if (ext === '.webm' || ext === '.mp4') {
|
|
||||||
ffmpeg('./' + config.uploads.folder + '/' + file.name)
|
|
||||||
.thumbnail({
|
|
||||||
timestamps: [0],
|
|
||||||
filename: '%b.png',
|
|
||||||
folder: './' + config.uploads.folder + '/thumbs',
|
|
||||||
size: '200x?'
|
|
||||||
})
|
|
||||||
.on('error', function(error) {
|
|
||||||
console.log('Error - ', error.message)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
let size = {
|
|
||||||
width: 200,
|
|
||||||
height: 200
|
|
||||||
}
|
|
||||||
|
|
||||||
gm('./' + config.uploads.folder + '/' + file.name)
|
|
||||||
.resize(size.width, size.height + '>')
|
|
||||||
.gravity('Center')
|
|
||||||
.extent(size.width, size.height)
|
|
||||||
.background('transparent')
|
|
||||||
.write(thumbname, function (error) {
|
|
||||||
if (error) console.log('Error - ', error)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return res.json({
|
// If we are a normal user, send response
|
||||||
success: true,
|
if(user[0].username !== 'root') return res.json({ success: true, files })
|
||||||
files
|
|
||||||
})
|
|
||||||
|
|
||||||
|
// If we are root but there are no uploads attached to a user, send response
|
||||||
|
if(userids.length === 0) return res.json({ success: true, files })
|
||||||
|
|
||||||
|
db.table('users').whereIn('id', userids).then((users) => {
|
||||||
|
for(let user of users)
|
||||||
|
for(let file of files)
|
||||||
|
if(file.userid === user.id)
|
||||||
|
file.username = user.username
|
||||||
|
|
||||||
|
return res.json({ success: true, files })
|
||||||
|
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
|
||||||
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
|
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
|
||||||
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
|
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uploadsController.generateThumbs = function(file, basedomain){
|
||||||
|
if(config.uploads.generateThumbnails !== true) return
|
||||||
|
|
||||||
|
let extensions = ['.jpg', '.jpeg', '.bmp', '.gif', '.png', '.webm', '.mp4']
|
||||||
|
for(let ext of extensions){
|
||||||
|
if(path.extname(file.name).toLowerCase() === ext){
|
||||||
|
|
||||||
|
file.thumb = basedomain + '/thumbs/' + file.name.slice(0, -ext.length) + '.png'
|
||||||
|
|
||||||
|
let thumbname = path.join(__dirname, '..', config.uploads.folder, 'thumbs') + '/' + file.name.slice(0, -ext.length) + '.png'
|
||||||
|
fs.access(thumbname, function(err) {
|
||||||
|
if (err && err.code === 'ENOENT') {
|
||||||
|
// File doesnt exist
|
||||||
|
|
||||||
|
if (ext === '.webm' || ext === '.mp4') {
|
||||||
|
ffmpeg('./' + config.uploads.folder + '/' + file.name)
|
||||||
|
.thumbnail({
|
||||||
|
timestamps: [0],
|
||||||
|
filename: '%b.png',
|
||||||
|
folder: './' + config.uploads.folder + '/thumbs',
|
||||||
|
size: '200x?'
|
||||||
|
})
|
||||||
|
.on('error', function(error) {
|
||||||
|
console.log('Error - ', error.message)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
let size = {
|
||||||
|
width: 200,
|
||||||
|
height: 200
|
||||||
|
}
|
||||||
|
|
||||||
|
gm('./' + config.uploads.folder + '/' + file.name)
|
||||||
|
.resize(size.width, size.height + '>')
|
||||||
|
.gravity('Center')
|
||||||
|
.extent(size.width, size.height)
|
||||||
|
.background('transparent')
|
||||||
|
.write(thumbname, function (error) {
|
||||||
|
if (error) console.log('Error - ', error)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = uploadsController
|
module.exports = uploadsController
|
||||||
|
@ -151,6 +151,10 @@ panel.getUploads = function(album = undefined, page = undefined){
|
|||||||
|
|
||||||
}else{
|
}else{
|
||||||
|
|
||||||
|
var albumOrUser = 'Album';
|
||||||
|
if(panel.username === 'root')
|
||||||
|
albumOrUser = 'User';
|
||||||
|
|
||||||
container.innerHTML = `
|
container.innerHTML = `
|
||||||
${pagination}
|
${pagination}
|
||||||
<hr>
|
<hr>
|
||||||
@ -159,7 +163,7 @@ panel.getUploads = function(album = undefined, page = undefined){
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>File</th>
|
<th>File</th>
|
||||||
<th>Album</th>
|
<th>${albumOrUser}</th>
|
||||||
<th>Date</th>
|
<th>Date</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
@ -177,10 +181,18 @@ panel.getUploads = function(album = undefined, page = undefined){
|
|||||||
for(var item of response.data.files){
|
for(var item of response.data.files){
|
||||||
|
|
||||||
var tr = document.createElement('tr');
|
var tr = document.createElement('tr');
|
||||||
|
|
||||||
|
var displayAlbumOrUser = item.album;
|
||||||
|
if(panel.username === 'root'){
|
||||||
|
displayAlbumOrUser = '';
|
||||||
|
if(item.username !== undefined)
|
||||||
|
displayAlbumOrUser = item.username;
|
||||||
|
}
|
||||||
|
|
||||||
tr.innerHTML = `
|
tr.innerHTML = `
|
||||||
<tr>
|
<tr>
|
||||||
<th><a href="${item.file}" target="_blank">${item.file}</a></th>
|
<th><a href="${item.file}" target="_blank">${item.file}</a></th>
|
||||||
<th>${item.album}</th>
|
<th>${displayAlbumOrUser}</th>
|
||||||
<td>${item.date}</td>
|
<td>${item.date}</td>
|
||||||
<td>
|
<td>
|
||||||
<a class="button is-small is-danger is-outlined" title="Delete album" onclick="panel.deleteFile(${item.id})">
|
<a class="button is-small is-danger is-outlined" title="Delete album" onclick="panel.deleteFile(${item.id})">
|
||||||
|
Loading…
Reference in New Issue
Block a user