mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-22 08:20:36 +01:00
image upload changes
This commit is contained in:
@@ -4,6 +4,13 @@ var config = {
|
|||||||
|
|
||||||
// "base_url" is expected to be a publically accessible URL to your NodeBB instance (Default base_url: 'http://localhost', port: '4567')
|
// "base_url" is expected to be a publically accessible URL to your NodeBB instance (Default base_url: 'http://localhost', port: '4567')
|
||||||
"base_url": "http://localhost",
|
"base_url": "http://localhost",
|
||||||
|
|
||||||
|
// public url for uploaded files
|
||||||
|
"upload_url": "http://dev.domain.com/uploads/",
|
||||||
|
|
||||||
|
// relative path for uploads
|
||||||
|
"upload_path": "/uploads/",
|
||||||
|
|
||||||
"use_port": true,
|
"use_port": true,
|
||||||
"port": 4567,
|
"port": 4567,
|
||||||
|
|
||||||
|
|||||||
@@ -198,11 +198,8 @@ $(document).ready(function() {
|
|||||||
hideAlerts();
|
hideAlerts();
|
||||||
$('#alert-error').text(message).show();
|
$('#alert-error').text(message).show();
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
|
|
||||||
function submitUserData() {
|
function submitUserData() {
|
||||||
var userData = {
|
var userData = {
|
||||||
uid:$('#inputUID').val(),
|
uid:$('#inputUID').val(),
|
||||||
@@ -236,8 +233,6 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function(){
|
|
||||||
|
|
||||||
var selectedImageType = '';
|
var selectedImageType = '';
|
||||||
|
|
||||||
$('#submitBtn').on('click',function(){
|
$('#submitBtn').on('click',function(){
|
||||||
@@ -323,6 +318,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
$('#change-picture-modal').modal('hide');
|
$('#change-picture-modal').modal('hide');
|
||||||
$('#upload-picture-modal').modal('show');
|
$('#upload-picture-modal').modal('show');
|
||||||
|
hideAlerts();
|
||||||
|
|
||||||
$('#pictureUploadSubmitBtn').on('click', function() {
|
$('#pictureUploadSubmitBtn').on('click', function() {
|
||||||
$('#uploadForm').submit();
|
$('#uploadForm').submit();
|
||||||
@@ -331,6 +327,6 @@ $(document).ready(function() {
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}());
|
|
||||||
</script>
|
</script>
|
||||||
@@ -241,7 +241,10 @@ var express = require('express'),
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var uploadPath = config['upload_path'] + uid + '-' + filename;
|
filename = uid + '-' + filename
|
||||||
|
var uploadPath = config.upload_path + filename;
|
||||||
|
|
||||||
|
console.log(uploadPath);
|
||||||
|
|
||||||
fs.rename(
|
fs.rename(
|
||||||
tempPath,
|
tempPath,
|
||||||
@@ -254,7 +257,7 @@ var express = require('express'),
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var imageUrl = config.base_url + config.install_path + uploadPath;
|
var imageUrl = config.upload_url + filename;
|
||||||
|
|
||||||
res.send({
|
res.send({
|
||||||
path: imageUrl
|
path: imageUrl
|
||||||
|
|||||||
Reference in New Issue
Block a user