Skip to content

Commit dad5a30

Browse files
authored
Url command (#5)
增加url子命令实现 增加gl子命令实现 优化部分功能
1 parent 6a671ce commit dad5a30

13 files changed

+345
-60
lines changed

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,11 @@ clean:
3838
rm -rf ./*.gz
3939

4040

41+
#安装到当前mac
42+
installMac:
43+
go build
44+
sudo -S rm /usr/local/bin/lwe
45+
sudo cp ./lwe /usr/local/bin/
46+
4147
# 发版命令
4248
# make release VERSION=1.0.0

README.md

+39-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ lwe是leave work early的缩写,也就是"早点下班"!🤣🤣🤣
1010

1111
[3.获取Navicat连接配置中的密码](#3)
1212

13-
[4.增强Git日志功能:查看给定目录下所有git仓库提交日志](#4)
13+
[4.Git增强功能:glog、gl](#4)
14+
15+
[5.其它小工具](#5)
1416

1517
## 安装
1618

@@ -34,6 +36,8 @@ cp <下载的lwe文件路径> /usr/local/bin
3436
#### Win平台添加到环境变量的方法:
3537
可以参照maven的配置方法
3638

39+
>windows平台可能会被防火墙误识别成有害程序,建议关闭防火墙
40+
3741
### Homebrew
3842

3943
Mac平台后续支持从Homebrew直接安装
@@ -238,7 +242,9 @@ Connection username: root
238242
Connection password: This is a test
239243
```
240244

241-
<h3 id="4">4、增强Git日志功能:查看给定目录下所有git仓库提交日志</h3>
245+
<h3 id="4">4Git增强功能:glog、gl</h3>
246+
#### glog 增强Git日志功能
247+
查看给定目录下所有git仓库提交日志
242248
开发人员可能同时维护多个项目或者一个项目中多个模块在不同git仓库,如果有跨仓库查看多个仓库提交日志的需求,glog子命令就派上用场了。
243249

244250
```bash
@@ -260,7 +266,7 @@ lwe glog /Users/yesand/work/ -a=yesand -f=false -n=20 -s=2023-05-15 -e=2023-05-
260266
`-f, --file bool`,可选参数,该参数决定将查询结果写到文件中,默认在控制台输出。\
261267
`-n, --recentN int16`,可选参数,该参数指定每个仓库查询最近N条的提交记录。\
262268
`-s, --start string`,可选参数,该参数指定筛选提交记录的开始日期,格式:'yyyy-MM-dd'。\
263-
`-e, --end string`,可选参数,该参数指定筛选提交记录的结束日期,格式:'yyyy-MM-dd'\
269+
`-e, --end string`,可选参数,该参数指定筛选提交记录的结束日期,格式:'yyyy-MM-dd'
264270

265271
结果:示例
266272

@@ -278,6 +284,36 @@ lwe glog /Users/yesand/work/ -a=yesand -f=false -n=20 -s=2023-05-15 -e=2023-05-
278284
...
279285
```
280286

287+
#### gl 增强拉取代码功能
288+
拉取给定目录下的所有git仓库最新代码(使用的git pull --rebase的方式)
289+
```bash
290+
lwe gl [仓库所在目录]
291+
```
292+
> 如果当前仓库存在未提交的文件,则跳过此仓库的更新
293+
294+
<h3 id="5">5、其它小工具</h3>
295+
一些小的功能
296+
297+
<h4>格式化请求url</h4>
298+
有时请求的url很长,不利于我们找到目标参数,可以使用url命令进行格式化,增加请求的可读性
299+
示例:
300+
301+
```bash
302+
lwe url http://api.demo.com/api/user/getList?platform=ios&signature=bd7e1fd4e65e8199fd817006e709fb33&currentTimeMillis=1685673384000&pageNum=1
303+
```
304+
格式化结果:
305+
306+
```text
307+
Host: api.demo.com
308+
Path: /api/user/getList
309+
-----------------------
310+
pageNum 1
311+
platform ios
312+
signature bd7e1fd4e65e8199fd817006e709fb33
313+
currentTimeMillis 1685673384000
314+
```
315+
316+
> 某些bash下请求url需要用' '引起来才能正常使用
281317

282318

283319
## 说明

cmd/git.go

+23-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var (
1616
start string //开始时间
1717
end string //结束时间
1818

19-
gitCmd = &cobra.Command{
19+
glogCmd = &cobra.Command{
2020
Use: "glog",
2121
Short: "Get all git repository commit log under the given dir ",
2222
Long: `Get all git repository commit log under the given dir ,and specify author,date etc. supported!`,
@@ -45,14 +45,31 @@ var (
4545

4646
},
4747
}
48+
49+
gplCmd = &cobra.Command{
50+
Use: "gl",
51+
Short: "Update all git repository under the given dir ",
52+
Long: `Update all git repository under the given dir ,the repository that has modified files will not be updated!`,
53+
Args: cobra.MatchAll(cobra.MinimumNArgs(1)),
54+
Run: func(cmd *cobra.Command, args []string) {
55+
56+
var dir = "."
57+
if len(args) > 0 {
58+
dir = args[0]
59+
}
60+
61+
gitcmd.UpdateAllGitRepo(dir)
62+
63+
},
64+
}
4865
)
4966

5067
func init() {
5168

5269
//gitCmd.PersistentFlags().BoolVarP(&detail, "detail", "d", false, "")
53-
gitCmd.PersistentFlags().BoolVarP(&file, "file", "f", false, "result output to file,default value is false (meaning output to console). ")
54-
gitCmd.PersistentFlags().StringVarP(&committer, "author", "a", "", "specify name of committer ")
55-
gitCmd.PersistentFlags().StringVarP(&start, "start", "s", "", "specify the start of commit date. eg.'yyyy-MM-dd'")
56-
gitCmd.PersistentFlags().StringVarP(&end, "end", "e", "", "specify the end of commit date. eg.'yyyy-MM-dd'")
57-
gitCmd.PersistentFlags().Int16VarP(&recentN, "recentN", "n", 10, "specify the number of commit log for each git repo.")
70+
glogCmd.PersistentFlags().BoolVarP(&file, "file", "f", false, "result output to file,default value is false (meaning output to console). ")
71+
glogCmd.PersistentFlags().StringVarP(&committer, "author", "a", "", "specify name of committer ")
72+
glogCmd.PersistentFlags().StringVarP(&start, "start", "s", "", "specify the start of commit date. eg.'yyyy-MM-dd'")
73+
glogCmd.PersistentFlags().StringVarP(&end, "end", "e", "", "specify the end of commit date. eg.'yyyy-MM-dd'")
74+
glogCmd.PersistentFlags().Int16VarP(&recentN, "recentN", "n", 10, "specify the number of commit log for each git repo.")
5875
}

cmd/root.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ func init() {
2424
rootCmd.AddCommand(md5Cmd)
2525
rootCmd.AddCommand(esCmd)
2626
rootCmd.AddCommand(navicatCmd)
27-
rootCmd.AddCommand(gitCmd)
27+
rootCmd.AddCommand(glogCmd)
28+
rootCmd.AddCommand(gplCmd)
29+
rootCmd.AddCommand(urlCmd)
2830
}

cmd/url.go

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package cmd
2+
3+
import "github.com/spf13/cobra"
4+
import "lwe/handler/url"
5+
6+
var urlCmd = &cobra.Command{
7+
Use: "url",
8+
Short: "format request url to increase readability",
9+
Long: `format request url to increase readability`,
10+
Args: cobra.MatchAll(cobra.ExactArgs(1)),
11+
Run: func(cmd *cobra.Command, args []string) {
12+
url.HandleUrlPathParams(args[0])
13+
},
14+
}

handler/gitcmd/common.go

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package gitcmd
2+
3+
import (
4+
"fmt"
5+
"github.com/spf13/cobra"
6+
"io/ioutil"
7+
"path/filepath"
8+
)
9+
10+
func findGitRepo(dir string, res *[]string) {
11+
var files []string
12+
fileInfo, err := ioutil.ReadDir(dir)
13+
if err != nil {
14+
cobra.CheckErr(fmt.Errorf(" The dir '%s' is not exist!\n", dir))
15+
return
16+
}
17+
18+
for _, file := range fileInfo {
19+
//当前目录是git仓库,没必要继续遍历
20+
if ".git" == file.Name() {
21+
*res = append(*res, dir)
22+
return
23+
}
24+
if file.IsDir() {
25+
files = append(files, file.Name())
26+
}
27+
}
28+
29+
//目录下的子目录递归遍历
30+
for _, fName := range files {
31+
findGitRepo(filepath.Join(dir, fName), res)
32+
}
33+
}

handler/gitcmd/gitlog.go

+5-41
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ import (
44
"errors"
55
"fmt"
66
"github.com/spf13/cobra"
7-
"io/ioutil"
87
"lwe/utils"
9-
"os"
108
"path/filepath"
119
"regexp"
1210
"strconv"
@@ -17,7 +15,7 @@ import (
1715
const (
1816

1917
//git log
20-
LOG_TPL = "git --no-pager log --no-merges "
18+
LOG_TPL = "git -C %s --no-pager log --no-merges "
2119
LOG_FORMAT_TPL = `--format=format:'%h*-*%an*-*%ct*-*%s' ` //使用*-*作为分隔符
2220
LOG_AUTHOR_TPL = `--author=%s `
2321
LOG_START_DATE_TPL = `--since=%s `
@@ -37,7 +35,7 @@ type CommitLog struct {
3735
FilesChanged []string //changed file arr
3836
}
3937

40-
//ResultLog 封装日志分析结果
38+
// ResultLog 封装日志分析结果
4139
type ResultLog struct {
4240
RepoName string //git repository name
4341
CommitLogs *[]CommitLog
@@ -46,15 +44,10 @@ type ResultLog struct {
4644
// GetCommitLog 获取提交日志
4745
func GetCommitLog(detail bool, recentN int16, dir, author, start, end string) (*[]CommitLog, error) {
4846

49-
if len(dir) > 0 {
50-
//指定了目录,切换到指定目录执行命令
51-
if err := os.Chdir(dir); err != nil {
52-
cobra.CheckErr(err)
53-
}
54-
}
55-
5647
//使用bytes.Buffer这种方式拼接字符串会%!h(MISSING)?
57-
var cmdline = LOG_TPL
48+
//指定仓库地址
49+
var cmdline = fmt.Sprintf(LOG_TPL, dir)
50+
5851
if recentN >= 0 {
5952
cmdline += fmt.Sprintf(LOG_RECENTN_TPL, recentN)
6053
}
@@ -140,10 +133,6 @@ func GetAllGitRepoCommitLog(detail bool, recentN int16, dir, author, start, end
140133
var res []string
141134
var reLog []ResultLog
142135

143-
//由于操作中切换了工作目录,结束后重新定位到当前工作目录
144-
currWd, _ := os.Getwd()
145-
defer os.Chdir(currWd)
146-
147136
//相对路径转换成绝对路径进行处理
148137
if !filepath.IsAbs(dir) {
149138
absDir, err := filepath.Abs(dir)
@@ -168,30 +157,5 @@ func GetAllGitRepoCommitLog(detail bool, recentN int16, dir, author, start, end
168157
}
169158

170159
return &reLog, nil
171-
172160
}
173161

174-
func findGitRepo(dir string, res *[]string) {
175-
var files []string
176-
fileInfo, err := ioutil.ReadDir(dir)
177-
if err != nil {
178-
cobra.CheckErr(fmt.Errorf(" The dir '%s' is not exist!\n", dir))
179-
return
180-
}
181-
182-
for _, file := range fileInfo {
183-
//当前目录是git仓库,没必要继续遍历
184-
if ".git" == file.Name() {
185-
*res = append(*res, dir)
186-
return
187-
}
188-
if file.IsDir() {
189-
files = append(files, file.Name())
190-
}
191-
}
192-
193-
//目录下的子目录递归遍历
194-
for _, fName := range files {
195-
findGitRepo(filepath.Join(dir, fName), res)
196-
}
197-
}

handler/gitcmd/gitpull.go

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
package gitcmd
2+
3+
import (
4+
"fmt"
5+
"github.com/spf13/cobra"
6+
"lwe/utils"
7+
"path/filepath"
8+
"time"
9+
)
10+
11+
// git pull
12+
const (
13+
14+
//查看仓库状态,结果以简短形式呈现
15+
STATUS_CHECK_TPL = "git -C %s status -s"
16+
//更新仓库
17+
GIT_PULL = `git -C %s pull --rebase`
18+
)
19+
20+
func updateRepo(dir string) (string, error) {
21+
22+
//指定仓库地址
23+
var cmdline = fmt.Sprintf(GIT_PULL, dir)
24+
25+
result := utils.RunCmd(cmdline, time.Second*30)
26+
if result.Err() != nil {
27+
return "", result.Err()
28+
}
29+
30+
reStr := result.String()
31+
return reStr, nil
32+
}
33+
34+
// checkRepoClean 检测当前仓库是否干净
35+
func checkRepoClean(dir string) (bool, string) {
36+
var cmdline = fmt.Sprintf(STATUS_CHECK_TPL, dir)
37+
38+
result := utils.RunCmd(cmdline, time.Second*30)
39+
if result.Err() != nil {
40+
return false, result.Err().Error()
41+
}
42+
43+
commitMsg := result.String()
44+
if len(commitMsg) == 0 {
45+
return true, ""
46+
}
47+
return false, commitMsg
48+
}
49+
50+
// UpdateAllGitRepo 更新所有仓库
51+
func UpdateAllGitRepo(dir string) {
52+
var res []string
53+
54+
//相对路径转换成绝对路径进行处理
55+
if !filepath.IsAbs(dir) {
56+
absDir, err := filepath.Abs(dir)
57+
if err != nil {
58+
cobra.CheckErr(err)
59+
}
60+
dir = absDir
61+
}
62+
63+
//递归找到所有的git仓库
64+
findGitRepo(dir, &res)
65+
66+
//遍历获取每个仓库的提交信息
67+
for idx, gitDir := range res {
68+
fmt.Printf("#%d Git Repo >> %s\n", idx+1, gitDir)
69+
if clean, msg := checkRepoClean(gitDir); !clean {
70+
//存在未提交的变动,防止冲突等问题,不进行更新
71+
fmt.Println(msg)
72+
fmt.Println(">> Modified Files in this Repo have not been submitted yet, terminating the update!")
73+
fmt.Println()
74+
continue
75+
}
76+
77+
result, err := updateRepo(gitDir)
78+
if err != nil {
79+
fmt.Println(err)
80+
}
81+
fmt.Println(result)
82+
fmt.Println()
83+
}
84+
85+
}

0 commit comments

Comments
 (0)