1 Star 0 Fork 0

淘醒迷乐/MeDoc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.js 4.60 KB
一键复制 编辑 原始数据 按行查看 历史
BinJia 提交于 2022-11-20 13:43 . '增加Windows下检查更新功能'
const qiniuManager = require('./src/utils/QiniuManager')
const {v4: uuidv4} = require("uuid");
const {join} = require("path");
const Store = require('electron-store')
const path = require("path");
const accessKey = 'ir9GbJotIaon4amS7RyuyTRdLIxuEydQFMxmEPEu';
const secretKey = 'WYcWfJJB38O_WFpIYJMamgJVJNQfEWQWuLKbidlm';
const fileStore = new Store({'name': 'Files Data'})
const settingsStore = new Store({ 'name': 'Settings'})
// 空间对应的机房
const zone = 'as0';
const localFile = "C:\\Users\\Administrator\\Documents\\666.md";
const key = '666.md';
const manager = new qiniuManager(accessKey,secretKey,'medocument',zone)
const objToArr = (obj) => {
return Object.keys(obj).map(key => obj[key])
}
// const id = '00db5ee8-8e71-4686-9f89-dfaff72f0cc5'
const url = 'https://seven-actions.oss-cn-shenzhen.aliyuncs.com/sa_rail_work_sheet_resource/b517de9a-2abc-11ea-8e3c-0242ac140007.mp4'
const fileName = path.basename(url)
console.log(fileName)
const cp = require('child_process')
let child = cp.spawn('f:/medoc.exe')
cp.exec('f:/medoc.exe', (err, stdout, stderr) => {
console.log(err, stdout, stderr)
})
// console.log(remote.app.getPath('documents'))
// downloadFile(path.join(app.getPath('documents')))
// manager.uploadFile(key, localFile).then( (data) => {
// console.log(data)
//
// })
// manager.getBucketDomain().then( (data) => {
// console.log(data)
// })
// manager.generateDownloadLink(key).then( (data) => {
// console.log(data)
// })
// manager.getFileList().then( (data) => {
//
// const items = data.items;
// console.log(items)
// // items.forEach(function(item) {
// // console.log(item.key);
// // console.log(item.putTime);
// // console.log(item.hash);
// // console.log(item.fsize);
// // console.log(item.mimeType);
// // console.log(item.type);
// // });
// })
// manager.downloadFile(key,localFile).then( (data) =>{
// console.log(data)
// }).catch((err)=>{
// console.log(err)
// })
// console.log(settingsStore.get('savedFileLocation'))
// const currentFilesObj = fileStore.get('files') || {}
// const getTitles = objToArr(currentFilesObj).map(file => {
// return `${file.title}.md`
// })
//Object.keys(currentFilesObj).length === 0
// const downFileArr = []
// manager.getFileList( ).then((data) => {
// const items = data.items
//
// const downPromiseArr = items.filter(item => {
// if (getTitles.length === 0 ){
// const newId = uuidv4()
//
// downFileArr[newId] = {
// 'id': newId,
// 'key': item.key,
// 'path': join(settingsStore.get('savedFileLocation'), `/${item.key}`),
// 'updatedAt': Math.round(item.putTime / 10000),
// 'isSynced': true,
// 'isInStore': false
// }
// }else{
// objToArr(currentFilesObj).map(file => {
// if (item.key === `${file.title}.md` && Math.round(item.putTime / 10000) > file.updatedAt) {
// console.log('bbb')
// downFileArr[file.id] = {
// 'id': file.id,
// 'key': item.key,
// 'path': file.path,
// 'updatedAt': Math.round(item.putTime / 10000),
// 'isSynced': true,
// 'isInStore': true
// }
// } else if (!getTitles.includes(item.key)) {
// const getNewTitles = objToArr(downFileArr).map(file => {
// return file.key
// })
// if (!getNewTitles.includes(item.key)) {
// const newId = uuidv4()
//
// downFileArr[newId] = {
// 'id': newId,
// 'key': item.key,
// 'path': join(settingsStore.get('savedFileLocation'), `/${item.key}`),
// 'updatedAt': Math.round(item.putTime / 10000),
// 'isSynced': true,
// 'isInStore': false
// }
// }
// }
// })
// }
//
// const getNewTitles = objToArr(downFileArr).map(file => {
// return file.key
// })
// return getNewTitles.includes(item.key)
// })
//
// objToArr(downFileArr).map(item => {
// return manager.downloadFile(item.key, item.path)
// })
// return Promise.all(downPromiseArr)
// }).then( (arr) => {
// console.log(downFileArr)
// })
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/itaotao/MeDoc.git
[email protected]:itaotao/MeDoc.git
itaotao
MeDoc
MeDoc
master

搜索帮助