process.on('uncaughtException', function (err) {
logger.info('Local Server Exception: ')
logger.info(err)
}); var http = require('http');
var express = require('express');
var bodyParser = require('body-parser')
var router = express();
var path = require('path')
var uuid = require('node-uuid')
var fs = require('fs')
// 添加 body-parser 中间件就可以了
/*
router.use(express.static(default_pic)) //设置静态文件路径
router.use(express.static(default_temp_pic));
router.use(express.static(default_re_pic));
*/ router.use(bodyParser.urlencoded({ extended: false }));
router.use(bodyParser.json({limit: '50mb'})); router.post('/test_upload_file_parts', function (req, res) {
//data, name , total, index, uuid
console.log(req) var data = req.body.buffer;
var name = req.body.filename;
var total = req.body.total;
var index = req.body.index;
var uuid = req.body.uuid;
console.log(data);
console.log(name ,total , index , uuid);
if(data && name && total && index && uuid){
try{
var root_dir = "d:\\server_picture";
var temp_dir = path.join(root_dir, uuid); if (!fs.existsSync(temp_dir)) {
console.log(`${temp_dir} is no exist, now to create`);
fs.mkdirSync(temp_dir);
}
var temp_name = `${uuid}_${index}`;
var temp_file = path.join(temp_dir, temp_name); fs.writeFileSync(temp_file, data);
console.log(temp_file)
res.send({ 'type': 'AJAX', 'msg': 'ok', body: req.body });
}catch (err){
console.log(err)
res.send({ 'type': 'ERROR', 'msg': err.stack });
}
}
else{
res.send({ 'type': 'ERROR', 'msg': 'data && name && total && index && uuid error' });
}
})
router.post('/test_upload_file_merge', function (req, res) { var name = req.body.filename;
var total = req.body.total;
var uuid = req.body.uuid;
console.log(name ,total , uuid); if( name && total && uuid){
try{
var root_dir = "d:\\server_picture";
var temp_dir = path.join(root_dir, uuid);
var save_image = path.join(root_dir, name);
if(fs.existsSync(save_image)){
fs.unlinkSync(save_image);
}
var buffer = '';
for(var i=0;i<total;i++){
var index = i + 1;
var temp_name = `${uuid}_${index}`;
var temp_file = path.join(temp_dir, temp_name); if(fs.existsSync(temp_file)){
console.log(`merge ${i+1}/${total}`)
var s_buffer = fs.readFileSync(temp_file);
buffer += s_buffer;
}
}
console.log(buffer.length)
fs.appendFileSync(save_image, buffer);
console.log(save_image)
res.send({ 'type': 'AJAX', 'msg': 'ok', body: req.body });
}catch (err){
console.log(err)
res.send({ 'type': 'ERROR', 'msg': err.stack });
}
}
else{
res.send({ 'type': 'ERROR', 'msg': ' name && total && uuid error' });
}
}) var server = router.listen(8090, function () { var host = server.address().address
var port = server.address().port console.log("the local server http://%s:%s", host, port)
})

  

var path = require('path')
var fs = require('fs')
var ini = require('ini')
//var OSS = require('ali-oss').Wrapper; version 4.5.1
var OSS = require('ali-oss'); //6.0.1
var request = require('request')
var request_progress = require('request-progress')
var uuid = require('node-uuid') var url = 'http://127.0.0.1:8090/test_upload_file_parts';
var merge_url = 'http://127.0.0.1:8090/test_upload_file_merge';
var filepath = 'D:\\pps.jpg';
var filename = 'pps.jpg'; var props = {}; props._post = function(_url, _params){
return new Promise(function(resolve, reject){
request({
url: _url,
method: "POST",
json: true,
timeout: 20000,
headers: {
"content-type": "image/jpeg"
},
body: _params
}, function(error, response, body){
if (!error && response.statusCode == 200) {
resolve({'type':'AJAX'})
} else {
resolve({'type':'ERROR'})
}
})
})
} props.uploadFileParts = async function(_url, _filepath, _filename, _progress_fn){
var buffer = fs.readFileSync(_filepath);
var total_size = buffer.length;
var shardSize = 120400; // 120kb一个分片
var shardCount = Math.ceil(total_size/shardSize); var _guid = uuid.v1(); _progress_fn(0);
for(var i=0;i<shardCount;i++) {
var start = i * shardSize;
var end = Math.min(start + shardSize, total_size);
var params = {
buffer: buffer.slice(start, end),
filename: _filename,
total: shardCount,
index: (1 + i),
'uuid': _guid
} var hr = await this._post(_url, params);
if (hr.type == 'AJAX') {
_progress_fn(i / shardCount);
} else {
return {error: `upload part error`, errorCode: -1};
}
}
var datas = {
filename: _filename,
total: shardCount,
'uuid': _guid
}
//merge
var hr = await this._post(merge_url, datas);
if(hr.type == 'AJAX'){
return {error: null, errorCode: 200};
_progress_fn(1);
}else{
return {error: `upload parts merge error`, errorCode: -2};
}
} props.uploadFileParts(url,filepath, filename, function (progress) {
console.log(progress);
})
/*
return new Promise((resolve, reject) => {
yq.http.post(url, data, function(res){
resolve(res);
}, function (err) {
resolve(null);
})
})
*/ module.exports = props;

Node bak的更多相关文章

  1. Luogu 3369 / BZOJ 3224 - 普通平衡树 - [替罪羊树]

    题目链接: https://www.lydsy.com/JudgeOnline/problem.php?id=3224 https://www.luogu.org/problemnew/show/P3 ...

  2. OCP升级(3.6->3.7)

    有个好文档还是靠普很多,感谢同事的文档.升级步骤记录如下 1.检查现有环境 [root@master ~]# etcd --version etcd Version: Git SHA: 1674e68 ...

  3. babeljs源码

    babel.min.js!function(e,t){"object"==typeof exports&&"object"==typeof mo ...

  4. Ubuntu 16.04 64位 搭建 node.js NodeJS 环境

    我的系统环境: Ubuntu 16.04 64位 本文内容亲测可用, 请放心食用 使用淘宝镜像 淘宝镜像官网是https://npm.taobao.org/ 使用淘宝镜像前请自行安装好 npm 和 n ...

  5. svu update 遇到 Node remains in conflict

    http://stackoverflow.com/questions/11774868/svn-checkout-without-restoring up vote4down votefavorite ...

  6. Ubuntu安装node

    #!/bin/bash echo "添加环境变量需要root权限,如无root权限,则不添加环境变量" echo "输入Node下载地址(目前仅支持Node官方网站上Li ...

  7. aix 上搭建node.js 环境

    下载nodejs:ibm-4.4.3.0-node-v4.4.3-aix-ppc64.bin IBM已经适配最新版本的node.js  :https://developer.ibm.com/node/ ...

  8. 优化linux,安装node环境

    就是这样我的心爱的云主机就被攻击了,反正我是很久没宠幸过她,肯定不是我去攻击人家,但是吧昨天就突然来了封邮件,小白一个查不出什么,用了 netsat -na显示所有连接到服务器的活跃的网络连接数,发现 ...

  9. node 文件操作

    对文件的各种操作,使用姿势如下 文件操作单例 @example fu.exist(file); //是否存在 fu.copy(file, 'new-path'); //复制到某个新目录 fu.move ...

随机推荐

  1. H5C301

    标题H5C301 1.html5 h5最新版本.所有主流浏览器都支持h5.但仅ie9及以上支持h5 改变了用户与文档的交互方式:多媒体 新增了其他的特性:语义,本地存储,网页多媒体 抛弃了不合理的标签 ...

  2. javagc日志详解

    https://blog.csdn.net/aliveTime https://plumbr.io/blog/garbage-collection/understanding-garbage-coll ...

  3. Spring quartz 单机、集群+websocket集群实现文本、图片、声音、文件下载及推送、接收及显示

    相关环境 Nginx,Spring5.x当前(要选择4.0+),tomcat9.x或8.x都可以,Quartz 2.x集群(实际运用是Quartz的集群模式和单机模式共存的) 测试面页:http:// ...

  4. 广告行业中常说的 CPC,CPM,CPD,CPT,CPA,CPS 等词的意思是什么?

    广告投放流程主要分为展示和转化,CPC/CPM/CPD/CPT/CPA/CPS等代表的是不同的结算模式 展示端的结算方式有: CPM(Cost Per Mille) 每千人成本:只要向足够量级的用户展 ...

  5. Elastic{ON}参会随手记

    Elastic{ON} 同事送了一张Elastic{ON}的票,因为我们的产品中用到的ELK全家桶,实话说用的体量还挺大的,因此非常想去参加这次的发布会. 7.0的新特性 上午的会议是来自总部的一名工 ...

  6. 比较两个list对象是否相同

    public Boolean exist(Container container){ List<SensorAtom> newSensorList = container.getSenso ...

  7. cleanmymacchinese下载链接

    由于新的chinese版本还没有公开发布下载链接,所以找到如下地址 https://dl.devmate.com/com.macpaw.zh.CleanMyMac3/CleanMyMacChinese ...

  8. centos exfat格式U盘不支持问题

    centos exfat格式U盘不支持问题 1. 下载fuse-exfat-1.3.0-1.el7.x86_64.rpm 2. 终端安装 rpm  -ivh fuse-exfat-1.3.0-1.el ...

  9. crontab 选择编辑器 select-editor

    用root第一次运行 crontab -e 会出现如题的错误,解决方法如下: 1.select-editor 选择编辑器,我选的vim.basic. 2.crontab -e 进入编辑器编辑. 推荐第 ...

  10. .NET Core 2.1 IIS 部署 出现500.19 错误

    HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效. 最后发现是由于项目从 .NET Core 1.0 升级到 .NET Co ...