forked from joephon/drm_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangeFilePath.js
139 lines (127 loc) · 4.48 KB
/
changeFilePath.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
const fs = require('fs')
const DevMoniter = require('./model/DevMoniter')
const DataGraph = require('./model/DataGraph')
const Device = require('./model/Device')
const Order = require('./model/Order')
const News = require('./model/News')
const OSS = require('./utils/OSS')
, oss = new OSS()
// , region = process.env.REGION
// , bucket = process.env.BUCKET
const filePath = 'static/upload/'
// async function isChange() {
// const devices = await Device.find()
// devices.map((device, devIndex)=> {
// var arr = []
// , sums = 0
// setTimeout(async ()=> {
// await device.images.forEach((pic, index)=> {
// setTimeout(async ()=> {
// if(pic.url.split('https://api.wardenger.me/upload/').length > 1) {
// var path = filePath + pic.url.split('https://api.wardenger.me/upload/')[1]
// const result = await oss.uploadLocal('upload', path)
// if(result.pubUrl) {
// arr.push({
// uid: `-${index}`,
// url: pic.url.replace(/https:\/\/api\.wardenger\.me\/upload\//g, `https://${bucket}.${region}.aliyuncs.com/upload/`),
// status: 'done',
// })
// }
// } else {
// arr.push({
// uid: `-${index}`,
// url: pic.url,
// status: 'done',
// })
// }
// if(sums == (device.images.length - 1)) {
// changeDataToDB(device._id, arr)
// }
// sums += 1
// }, 300*index)
// })
// }, 1500*devIndex)
// })
// }
// async function changeDataToDB(id, arr) {
// const newdevice = await Device.findOneAndUpdate({ _id: id }, {$set: { images: arr }}, { new: true })
// if(newdevice) console.log('true')
// else console.log('false')
// }
// isChange()
// async function isChange() {
// const orders = await Order.find()
// orders.map((order, devIndex)=> {
// var arr = []
// , sums = 0
// setTimeout(async ()=> {
// await order.images.forEach((pic, index)=> {
// setTimeout(async ()=> {
// if(pic.url.split('https://api.wardenger.me/upload/').length > 1) {
// var path = filePath + pic.url.split('https://api.wardenger.me/upload/')[1]
// const result = await oss.uploadLocal('upload', path)
// if(result.pubUrl) {
// arr.push({
// _id: pic._id,
// url: pic.url.replace(/https:\/\/api\.wardenger\.me\/upload\//g, `https://${bucket}.${region}.aliyuncs.com/upload/`),
// })
// }
// } else {
// arr.push({
// _id: pic._id,
// url: pic.url,
// })
// }
// if(sums == (order.images.length - 1)) {
// changeDataToDB(order._id, arr)
// }
// sums += 1
// }, 300*index)
// })
// }, 1500*devIndex)
// })
// }
// async function changeDataToDB(id, arr) {
// const neworders = await Order.findOneAndUpdate({ _id: id }, {$set: { images: arr }}, { new: true })
// if(neworders) console.log('true')
// else console.log('false')
// }
// isChange()
// async function isChange() {
// const news = await News.find()
// news.map((newsone, devIndex)=> {
// var arr = []
// , sums = 0
// setTimeout(async ()=> {
// await newsone.images.forEach((pic, index)=> {
// setTimeout(async ()=> {
// if(pic.url.split('https://api.wardenger.me/upload/').length > 1) {
// var path = filePath + pic.url.split('https://api.wardenger.me/upload/')[1]
// const result = await oss.uploadLocal('upload', path)
// if(result.pubUrl) {
// arr.push({
// _id: pic._id,
// url: pic.url.replace(/https:\/\/api\.wardenger\.me\/upload\//g, `https://${bucket}.${region}.aliyuncs.com/upload/`),
// })
// }
// } else {
// arr.push({
// _id: pic._id,
// url: pic.url,
// })
// }
// if(sums == (newsone.images.length - 1)) {
// changeDataToDB(newsone._id, arr)
// }
// sums += 1
// }, 300*index)
// })
// }, 1500*devIndex)
// })
// }
// async function changeDataToDB(id, arr) {
// const newnews = await News.findOneAndUpdate({ _id: id }, {$set: { images: arr }}, { new: true })
// if(newnews) console.log('true')
// else console.log('false')
// }
// isChange()