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. 2017年50道Java线程面试题

    下面是Java线程相关的热门面试题,你可以用它来好好准备面试. 1) 什么是线程? 线程是操作系统能够进行运算调度的最小单位,它被包含在进程之中,是进程中的实际运作单位.程序员可以通过它进行多处理器编 ...

  2. 用C++实现半透明按钮控件(PNG,GDI+)

        使用MFC实现上面的按钮半透明效果能看到父窗口中的内容,上面是效果图(一个是带背景图片的.另一个是不带的). 控件继承自CWnd类(彩色的部分是窗口的背景图片.按钮是PNG图片,第二个图标是鼠 ...

  3. poi 升级至4.x 的问题总结(POI Excel 单元格内容类型判断并取值)

    POI Excel 单元格内容类型判断并取值 以前用 cell.getCachedFormulaResultType() 得到 type 升级到4后获取不到了 换为:cell.getCellType( ...

  4. CSS魔法堂:改变单选框颜色就这么吹毛求疵!

    前言  是否曾经被业务提出"能改改这个单选框的颜色吧!让它和主题颜色搭配一下吧!",然后苦于原生不支持换颜色,最后被迫自己手撸一个凑合使用.若抛开input[type=radio] ...

  5. Javascript 字符串(一)常见函数使用

    一.js字符串示例1 <script type="text/javascript"> var strobject = new String('123abc123abc' ...

  6. Css3实现波浪线效果1

    一.波浪线 ,常用 .info::before { content: ''; position: absolute; top: 30px; width: 100%; height: 0.25em; b ...

  7. 3DES 加、解密

    package com.suning.hrqz.utils; import java.io.UnsupportedEncodingException; import java.security.Mes ...

  8. github远程建了分支,本地看不到的问题

    原因:Git  branch -a 查看的是本地仓库的所有分支  远程新建的没有同步前 就是看不到 解决:$git checkout master   //首先切到master分支 $git pull ...

  9. Android ANR的产生与分析

      ANR即Application Not Responding应用无响应,一般在ANR的时候会弹出一个应用无响应对话框.也许有些开发者在使用某些手机开发中不在弹出应用无响应弹出框,特别是国产手机An ...

  10. Unity3D修改LWRP,HDRP的几项小问题及解决

    最近在看Book of the Dead的demo,其中对HDPR进行修改以构建自己的SRP,于是自己尝试了下.. 一般直接去Github下载对应unity版本的SRP工程: https://gith ...