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. flask之信号和mateclass元类

    本篇导航: flask实例化参数 信号 metaclass元类解析 一.flask实例化参数 instance_path和instance_relative_config是配合来用的:这两个参数是用来 ...

  2. 5、css补充

    css其余问题补充 本篇导航: 默认的高度和宽度问题 后台管理布局 css响应式布局 一.默认的高度和宽度问题 1.父子都是块级元素 <!DOCTYPE html> <html> ...

  3. iOS:定制自适应大小的透明吐司弹框

    一.简单介绍 创建一个吐司消息的黑色透明弹框,可以根据消息长短自适应大小. 可以手动创建手动显示手动关闭,也可以手动创建自动显示自动关闭. 简单好用. 二.代码使用 .h文件 // // LiveHU ...

  4. FPGA基础之逻辑单元(LE or LC)的基本结构

    原帖地址: https://blog.csdn.net/a8039974/article/details/51706906/ 逻辑单元在FPGA器件内部,是完成用户逻辑的最小单元.逻辑单元在ALTER ...

  5. 【重要】将项目发布到Maven中央库

    http://www.ruanyifeng.com/blog/2013/07/gpg.html

  6. Python 汉字转拼音

    本文参考: Python中文转拼音代码(支持全拼和首字母缩写) 中文中不可以有“()” # -*- coding: utf-8 -*- __version__ = '0.9' __all__ = [& ...

  7. github上总结的python资源列表【转】

    Python 资源大全中文版 我想很多程序员应该记得 GitHub 上有一个 Awesome - XXX 系列的资源整理.awesome-python 是 vinta 发起维护的 Python 资源列 ...

  8. 一行代码搞定 R 语言模型输出!(使用 stargazer 包)

    引言 使用stargazer包可以将 R 构建的模型结果以LATEX.HTML和ASCII格式输出,方便我们生成标准格式的表格.再结合rmarkdown,你就可以轻轻松松输出一篇优雅的文章啦~本文“使 ...

  9. ABC卡

    如今在银行,P2P等各种贷款业务机构,普遍使用信用评分,对客户实行打分制,以期对客户有一个优质与否的评判.但是不是所有人都知道信用评分卡还分A,B,C卡三类!所以,如果你只知道ABC是Gary的ABC ...

  10. maven在Idea建立工程,运行出现Server IPC version 9 cannot communicate with client version 4错误

    问题的根源在于,工程当中maven dependencies里面的包,有个hadoop-core的包,版本太低,这样,程序里面所有引用到org.apache.hadoop的地方,都是低版本的,你用的是 ...