AutoCommit/src/models/commitHandle.ts

314 lines
9.9 KiB
TypeScript
Raw Normal View History

2019-12-30 21:13:08 +08:00
/*
* Author : OBKoro1
* Date : 2019-12-30 16:59:30
2020-01-15 11:47:31 +08:00
* @LastEditors : OBKoro1
* @LastEditTime : 2020-01-15 11:46:52
2019-12-30 21:13:08 +08:00
* FilePath : /autoCommit/src/models/commitHandle.ts
* Description : commit
* https://github.com/OBKoro1
*/
import { webviewMsg } from '../util/dataStatement';
import * as moment from 'moment';
import * as fs from 'fs';
2020-01-02 14:19:05 +08:00
import { execSync, exec } from 'child_process';
2019-12-30 21:13:08 +08:00
import { RandomNumber } from '../util/util';
2020-01-08 14:08:09 +08:00
import {
getPanelWebview,
outputLog,
isProduction,
getExtensionContext
} from '../util/vscodeUtil';
2019-12-30 21:13:08 +08:00
import WebView from './WebView';
2020-01-15 11:47:31 +08:00
import { sep } from 'path';
2019-12-30 21:13:08 +08:00
interface timeElement {
value: Array<string>;
commitNumber: number;
}
interface dayTime {
value: string;
commitNumber: number;
}
2019-12-30 21:13:08 +08:00
class CommitHandle {
public paramsObj: any;
public timeArr: Array<dayTime>;
2019-12-30 21:13:08 +08:00
public autoCommitView: WebView;
private userCancel: boolean;
2019-12-30 21:13:08 +08:00
constructor(message: webviewMsg) {
this.paramsObj = message.data;
this.timeArr = [];
2020-01-15 11:47:31 +08:00
console.log('seb',sep)
2019-12-30 21:13:08 +08:00
this.timeHandle();
this.autoCommitView = getPanelWebview();
this.userCancel = false;
2019-12-30 21:13:08 +08:00
}
// 处理所有时间段
timeHandle() {
// 处理所有时间范围
this.paramsObj.timeArr.forEach((item: timeElement) => {
2019-12-30 21:13:08 +08:00
// 获取每个时间范围的具体日期
let detailTimeArr = this.getAllDay(item.value[0], item.value[1]);
// 日期去重 组织数据
detailTimeArr.forEach(ele => {
let index = this.timeArr.findIndex(element => {
return element.value === ele;
});
2020-01-02 17:19:47 +08:00
// 删除重复日期
if (index !== -1) {
this.timeArr.splice(index, 1);
}
2020-01-02 17:19:47 +08:00
this.timeArr.push({
value: ele,
commitNumber: item.commitNumber
});
2019-12-30 21:13:08 +08:00
});
});
this.sortTime();
}
// 日期排序
sortTime() {
this.timeArr = this.timeArr.sort(
(item1: dayTime, item2: dayTime): number => {
const dateArr1: Array<any> = item1.value.split('-');
const dateArr2: Array<any> = item2.value.split('-');
if (dateArr1[0] === dateArr2[0]) {
if (dateArr1[1] === dateArr2[1]) {
// 日期不同就比较日期
return dateArr1[2] - dateArr2[2];
} else {
// 月份不同就比较月份
return dateArr1[1] - dateArr2[1];
}
2019-12-30 21:13:08 +08:00
} else {
// 年份不同就比较年份
return dateArr1[0] - dateArr2[0];
2019-12-30 21:13:08 +08:00
}
}
);
2019-12-30 21:13:08 +08:00
this.commitFn();
}
async commitFn() {
2020-01-02 14:19:05 +08:00
await outputLog('将要commit的日期:', JSON.stringify(this.timeArr));
2019-12-30 21:13:08 +08:00
let totalNum = 0; // 总commit次数
// 遍历日期
for (let item of this.timeArr.values()) {
if (this.cancelCommit()) break;
2019-12-30 21:13:08 +08:00
// 每个日期commit次数
2020-01-08 17:13:17 +08:00
let dayCommitNumber = this.getDayCommitNumber(item);
2020-01-15 11:47:31 +08:00
if(sep === '\\'){
const reg = new RegExp(/\\/g)
this.paramsObj.itemSrc = `${this.paramsObj.itemSrc.replace(reg, '/')}`;
}
for (let i = 0; i < dayCommitNumber; i++) {
if (this.cancelCommit()) break;
2020-01-08 17:19:00 +08:00
let time = this.formatTime(item.value); // 2019-01-02 08:00
2020-01-15 11:47:31 +08:00
time = moment(time).format(); // 2019-01-02T00:00:00+0800
2020-01-08 17:19:00 +08:00
let commitContent = this.commitFileContent(time, totalNum);
2020-01-02 14:19:05 +08:00
let commitMsg: string = '';
const isDebug = false; // 手动更改调试模拟是否提交git
if (!isProduction() || !isDebug) {
try {
// 异步执行命令 让出线程 打印日志 等
commitMsg = await new Promise((resolve, reject) => {
2020-01-06 16:10:26 +08:00
let cmd = `cd ${this.paramsObj.itemSrc} && git add . && git commit -m '${this.paramsObj.commitMsg}' --date='${time}'`;
2020-01-15 11:47:31 +08:00
exec(cmd, {
encoding: 'utf8',
// cwd: this.paramsObj.itemSrc,
env: undefined
},(error, stdout, stderr) => {
2020-01-02 14:19:05 +08:00
if (error) {
outputLog(`执行命令出错:${cmd}`);
outputLog(`错误信息:${error}`, stderr);
reject(error);
return;
}
resolve(stdout);
});
});
} catch (err) {
2020-01-02 17:19:47 +08:00
continue; // 错误 退出本次循环
2020-01-02 14:19:05 +08:00
}
} else {
// 模拟git提交
const test = await new Promise((resolve, reject) => {
setTimeout(() => {
outputLog('延迟一秒');
resolve('延迟一秒');
}, 1000);
});
}
2020-01-07 22:34:31 +08:00
outputLog(`${totalNum + 1}commit内容`, commitContent);
outputLog(`${totalNum + 1}commit信息`, commitMsg);
2019-12-30 21:13:08 +08:00
totalNum++;
}
}
this.pushCommitFn(totalNum);
}
async pushCommitFn(totalNum: number) {
const commitNumberBig = 100; // commit数量过大
2020-01-10 17:01:32 +08:00
let thinkNumber = 10000; // 考虑时间 避免运行过快导致误操作
if (totalNum > commitNumberBig) {
outputLog(`commit数量:${totalNum}`);
outputLog('commit数量超过100次,请考虑10秒钟是否需要取消commit');
2020-01-10 17:01:32 +08:00
} else {
thinkNumber = 2000; // 无感 考虑两秒
}
2020-01-10 17:01:32 +08:00
await new Promise((resolve, reject) => {
setTimeout(() => {
resolve();
}, thinkNumber);
});
2020-01-07 22:34:31 +08:00
if (this.cancelCommit()) {
if (totalNum === 0) return;
2020-01-08 17:13:17 +08:00
await this.resetCommit(totalNum);
2020-01-10 17:01:32 +08:00
this.commitEnd(totalNum, true);
2020-01-07 22:34:31 +08:00
} else {
outputLog('提交中...');
2020-01-08 14:08:09 +08:00
this.autoCommitView.postMessage('提交中...', '提交中');
2020-01-07 22:34:31 +08:00
const res = await new Promise((resolve, reject) => {
let cmd = `cd ${this.paramsObj.itemSrc} && git pull && git push`;
2020-01-15 11:47:31 +08:00
exec(cmd,{
encoding: 'utf8',
// cwd: this.paramsObj.itemSrc,
env: undefined
},(error, stdout, stderr) => {
2020-01-07 22:34:31 +08:00
if (error) {
outputLog(`执行命令出错:${cmd}`);
outputLog(`错误信息:${error}`, stderr);
2020-01-08 17:13:17 +08:00
outputLog(
`git push失败很可能是你的网络有问题请换到一个网络状况比较良好的地方然后再项目下执行 git push操作。`
);
2020-01-07 22:34:31 +08:00
reject(error);
return;
}
resolve(stdout);
});
});
outputLog('提交信息:', res);
2020-01-10 17:01:32 +08:00
this.commitEnd(totalNum);
2020-01-07 22:34:31 +08:00
}
}
2020-01-08 17:13:17 +08:00
async resetCommit(totalNum: number) {
this.autoCommitView.postMessage('回滚', '回滚');
outputLog('回滚中...');
return await new Promise((resolve, reject) => {
let cmd = `cd ${this.paramsObj.itemSrc} && git reset --hard HEAD~${totalNum}`;
exec(cmd, (error, stdout, stderr) => {
if (error) {
outputLog(`执行命令出错:${cmd}`);
outputLog(`回滚失败:${error}`, stderr);
reject(error);
return;
}
outputLog(`回滚${totalNum}次commit成功:`, stdout);
resolve(stdout);
});
});
}
2020-01-10 17:01:32 +08:00
commitEnd(totalNum: number, cancel: boolean = false) {
this.userCancel = false; // 重新打开终止开关
2020-01-10 17:01:32 +08:00
if (!cancel) {
this.autoCommitView.postMessage('commit 完成', this.paramsObj);
getExtensionContext().globalState.update('commit-params', this.paramsObj);
outputLog('自动commit完成', `总commit次数${totalNum}`);
}
2020-01-08 14:08:09 +08:00
outputLog('保存参数信息');
}
cancelCommit() {
if (this.userCancel) {
outputLog('终止自动commit');
}
return this.userCancel;
}
public closeCommit() {
this.userCancel = true;
2019-12-30 21:13:08 +08:00
}
2020-01-08 17:13:17 +08:00
// 组织commit文件的内容
2020-01-08 17:19:00 +08:00
commitFileContent(time: string, totalNum: number) {
2020-01-08 17:13:17 +08:00
const commitContent = `${time}\n随机数:${RandomNumber(
1,
100000
)}\n提交次数:${totalNum + 1}`;
// 写入内容
fs.writeFileSync(
`${this.paramsObj.itemSrc}/${this.paramsObj.fileName}`,
commitContent,
'utf-8'
);
2020-01-10 17:01:32 +08:00
return commitContent;
2020-01-08 17:13:17 +08:00
}
getDayCommitNumber(item: dayTime) {
let dayCommitNumber = this.paramsObj.commitNumber;
if (this.paramsObj.randomCommit) {
// 随机commit次数
dayCommitNumber = RandomNumber(1, this.paramsObj.commitNumber);
}
if (item.commitNumber !== 0) {
// 如果该范围有commit次数 则用该范围的
dayCommitNumber = item.commitNumber;
}
return dayCommitNumber;
}
2020-01-01 18:06:58 +08:00
// 获取当天的随机时间
2019-12-30 21:13:08 +08:00
formatTime(time: string) {
2020-01-01 18:06:58 +08:00
const hour1 = RandomNumber(0, 2);
let hour2 = RandomNumber(0, 9);
if (hour1 === 2) {
2020-01-02 14:19:05 +08:00
// 小时第一个数字为2 则小时第二个数字最多为3
2020-01-01 18:06:58 +08:00
hour2 = RandomNumber(0, 3);
}
const minute = `${RandomNumber(0, 5)}${RandomNumber(0, 9)}`;
const hour = `${hour1}${hour2}`;
return `${time} ${hour}:${minute}`;
2019-12-30 21:13:08 +08:00
}
// 获取两个日期之间的间隔: [ '2019-02-02', '2019-02-03' ... ]
getAllDay(begin: string, end: string) {
const timeArr = [];
const beginSplit: Array<string> = begin.split('-');
const endSplit: Array<string> = end.split('-');
const beginDate = new Date();
beginDate.setUTCFullYear(
Number(beginSplit[0]),
Number(beginSplit[1]) - 1,
Number(beginSplit[2])
);
const endDate = new Date();
endDate.setUTCFullYear(
Number(endSplit[0]),
Number(endSplit[1]) - 1,
Number(endSplit[2])
);
const beginNumber = beginDate.getTime();
const endNumber = endDate.getTime();
for (let k: any = beginNumber; k <= endNumber; ) {
const day = new Date(parseInt(k));
const dayFormat = moment(day).format('YYYY-MM-DD');
timeArr.push(dayFormat);
k = k + 24 * 60 * 60 * 1000;
}
return timeArr;
}
2020-01-02 17:19:47 +08:00
// 同步执行命令
2019-12-30 21:13:08 +08:00
myExecSync(cmd: string) {
// 除了该方法直到子进程完全关闭后才返回 执行完毕 返回
try {
const res = execSync(cmd, {
encoding: 'utf8',
cwd: undefined,
env: undefined
});
return res;
} catch (err) {
outputLog(`执行命令出错:${cmd}`);
outputLog(`错误信息:${err}`);
return err;
}
}
}
export default CommitHandle;