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. 异常处理汇总 ~ 修正果带着你的Code飞奔吧!

    异常处理汇总-运维系列 http://www.cnblogs.com/dunitian/p/4522983.html 异常处理汇总-开发工具  http://www.cnblogs.com/dunit ...

  2. mac下host配置 + mac修改了环境变量却不生效:zsh: command not found: xxx

    https://blog.csdn.net/hlllmr1314/article/details/52228672 在/etc/profile中配置了go语言环境变量: export GOROOT=/ ...

  3. gtest环境安装

    gtest全称Google Test,是Google的C++测试框架,有很多优秀的软件都会依赖这个环境编译或者在开发中也会用到,gtest的编译非常简单,下面简单说明一下安装过程. gtest git ...

  4. 编写支持SSR的通用组件指南

    原文来自:https://blog.lichter.io/posts/the-guide-to-write-universal-ssr-ready-vue-compon? utmcampaign=Vu ...

  5. ubuntu 配置 apt 使用代理

    ubuntu 配置 apt 使用代理 仅配置系统代理是无法使 apt 也使用代理的,我们需要给 apt 独立配置代理. 方法 ubuntu 官方说明 :https://help.ubuntu.com/ ...

  6. ORACLE 从一个实例迁移到另外一个实例实战记录

    .schema1到schema2的迁移 Oracle 从一个用户expdp导出再impdp导入到还有一个用户,能够使用REMAP_SCHEMA=user1:user2来实现: 假设想导入的用户已经存在 ...

  7. 【C++】C++中的流

    目录结构: contents structure [-] 1.IO类 IO对象无拷贝状态 条件状态 文件流 文件模式 string流 1.IO类 除了istream和ostream之外,标准库还定义了 ...

  8. Linux系统中的常用命令

    查看日志 cat 或 tail -f 日志文件说明 /var/log/message 系统启动后的信息和错误日志,是Red Hat Linux中最常用的日志之一 /var/log/secure 与安全 ...

  9. 修改Egret引擎代码的方法

    某些情况下,我们需要修改Egret引擎的源码,我们可以在源码目录(一般如下:xxx\Egret\engine\x.x.x\src\egret)下直接修改ts代码. 在对应的项目下打开CMD命令行,输入 ...

  10. 如何保持github的fork于主干同步

    step1: https://help.github.com/articles/configuring-a-remote-for-a-fork/ step2: https://help.github. ...