Skip to content

Commit 898754f

Browse files
committed
rename to ghp-sync
1 parent dfbf243 commit 898754f

22 files changed

+75
-68
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.DS_Store
22
.idea/
3-
ghp-repo-sync
3+
ghp-sync

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# ghp-repo-sync
1+
# ghp-sync
22

33
This is an application for dealing with GitHub Project Boards. This is intended to make sorting through issues and PRs in large repos faster and easier via the GitHub Project Board.
44

55
It can automatically add Issues or PRs to Project Boards based on the repo, organization, and project number.
66

77
When adding Issues to Project Boards with the Issue # and number of Days Open.
88

9-
ghp-repo-sync is still a work in progress with more automation to come in future!
9+
ghp-sync is still a work in progress with more automation to come in future!
1010

1111
## Installation
1212

13-
To install ghp-repo-sync from the command line, you can run:
13+
To install ghp-sync from the command line, you can run:
1414

15-
`go install ghp-repo-sync`
15+
`go install ghp-sync`
1616

1717
## Commands
1818

cli/cmds.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cli
33
import (
44
"fmt"
55

6-
"github.com/katbyte/ghp-repo-sync/version" // todo - should we rename this (again) to ghp-sync ? if it can do project <> project & jira <> gh TODO yes we should
6+
"github.com/katbyte/ghp-sync/version" // todo - should we rename this (again) to ghp-sync ? if it can do project <> project & jira <> gh TODO yes we should
77
"github.com/spf13/cobra"
88
"github.com/spf13/viper"
99
)
@@ -28,7 +28,7 @@ func Make(cmdName string) (*cobra.Command, error) {
2828
SilenceErrors: true,
2929
PreRunE: ValidateParams([]string{"token", "repo", "project-owner", "project-number"}),
3030
RunE: func(cmd *cobra.Command, args []string) error {
31-
fmt.Println("USAGE: ghp-repo-syc [issues|prs] katbyte/ghp-repo-sync project")
31+
fmt.Println("USAGE: ghp-repo-syc [issues|prs] katbyte/ghp-sync project")
3232

3333
return nil
3434
},

cli/cmds_issues.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"time"
66

7-
"github.com/katbyte/ghp-repo-sync/lib/gh"
7+
"github.com/katbyte/ghp-sync/lib/gh"
88
"github.com/spf13/cobra"
99

1010
//nolint:misspell

cli/cmds_jira.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package cli
33
import (
44
"fmt"
55
"github.com/ctreminiom/go-atlassian/v2/pkg/infra/models"
6-
"github.com/katbyte/ghp-repo-sync/lib/gh"
7-
"github.com/katbyte/ghp-repo-sync/lib/j"
6+
"github.com/katbyte/ghp-sync/lib/gh"
7+
"github.com/katbyte/ghp-sync/lib/j"
88
"github.com/spf13/cobra"
99
"strings"
1010
"time"

cli/cmds_project.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cli
22

33
import (
44
"fmt"
5-
"github.com/katbyte/ghp-repo-sync/lib/gh"
5+
"github.com/katbyte/ghp-sync/lib/gh"
66
"github.com/spf13/cobra"
77
"strconv"
88
//nolint:misspell

cli/cmds_prs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/google/go-github/v45/github"
10-
"github.com/katbyte/ghp-repo-sync/lib/gh"
10+
"github.com/katbyte/ghp-sync/lib/gh"
1111
"github.com/spf13/cobra"
1212

1313
//nolint:misspell

cli/flags.go

+18-4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ type Filters struct {
2626
Assignees []string
2727
LabelsOr []string
2828
LabelsAnd []string
29+
30+
// todo move this to flags.project.Filters?
31+
ProjectStatusIs string
32+
ProjectFieldPopulated []string
2933
}
3034

3135
type Jira struct {
@@ -75,6 +79,8 @@ func configureFlags(root *cobra.Command) error {
7579
pflags.StringSliceVarP(&flags.Filters.Assignees, "assignees", "", []string{}, "sync prs assigned to these users. ie 'katbyte,assignee2,assignee3'")
7680
pflags.StringSliceVarP(&flags.Filters.LabelsOr, "labels-or", "l", []string{}, "filter that match any label conditions. ie 'label1,label2,-not-this-label'")
7781
pflags.StringSliceVarP(&flags.Filters.LabelsAnd, "labels-and", "", []string{}, "filter that match all label conditions. ie 'label1,label2,-not-this-label'")
82+
pflags.StringVarP(&flags.Filters.ProjectStatusIs, "project-status-is", "", "", "filter that match project status. ie 'In Progress'")
83+
pflags.StringSliceVarP(&flags.Filters.ProjectFieldPopulated, "project-fields-populated", "", []string{}, "filter that match project fields populated. ie 'Due Date'")
7884

7985
pflags.BoolVarP(&flags.DryRun, "dry-run", "d", false, "dry run, don't actually add issues/prs to project")
8086

@@ -86,6 +92,8 @@ func configureFlags(root *cobra.Command) error {
8692
"project-owner": "GITHUB_PROJECT_OWNER",
8793
"project-number": "GITHUB_PROJECT_NUMBER",
8894
"include-closed": "GITHUB_INCLUDE_CLOSED",
95+
"project-status-is": "GITHUB_PROJECT_STATUS_IS",
96+
"project-fields-populated": "GITHUB_PROJECT_FIELDS_POPULATED",
8997
"jira-url": "JIRA_URL",
9098
"jira-user": "JIRA_USER",
9199
"jira-jql": "JIRA_JQL",
@@ -142,6 +150,10 @@ func GetFlags() FlagData {
142150
if len(assignees) > 0 {
143151
assignees = strings.Split(assignees[0], ",")
144152
}
153+
projectFields := viper.GetStringSlice("project-fields-populated")
154+
if len(projectFields) > 0 {
155+
projectFields = strings.Split(projectFields[0], ",")
156+
}
145157

146158
// custom fields
147159
jiraCustomFieldsStr := viper.GetString("jira-custom-fields")
@@ -191,10 +203,12 @@ func GetFlags() FlagData {
191203
},
192204

193205
Filters: Filters{
194-
Authors: authors,
195-
Assignees: assignees,
196-
LabelsOr: viper.GetStringSlice("labels-or"),
197-
LabelsAnd: viper.GetStringSlice("labels-and"),
206+
Authors: authors,
207+
Assignees: assignees,
208+
LabelsOr: viper.GetStringSlice("labels-or"),
209+
LabelsAnd: viper.GetStringSlice("labels-and"),
210+
ProjectStatusIs: viper.GetString("project-status-is"),
211+
ProjectFieldPopulated: projectFields,
198212
},
199213
}
200214
}

docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: "3.6"
22

33
services:
4-
ghp-repo-sync:
5-
image: ghp-repo-sync
6-
container_name: ghp-repo-sync
4+
ghp-sync:
5+
image: ghp-sync
6+
container_name: ghp-sync
77
environment:
88
- "TZ=America/Vancouver"
99
- "SYNC_CRON=0 0,3,6,9,12,15,18,21 * * *"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/katbyte/ghp-repo-sync
1+
module github.com/katbyte/ghp-sync
22

33
go 1.23
44

lib/chttp/http.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net/http/httputil"
88
"strings"
99

10-
"github.com/katbyte/ghp-repo-sync/lib/clog"
10+
"github.com/katbyte/ghp-sync/lib/clog"
1111
)
1212

1313
var HTTP = http.DefaultClient

lib/gh/events.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"sort"
66

77
"github.com/google/go-github/v45/github"
8-
"github.com/katbyte/ghp-repo-sync/lib/clog"
8+
"github.com/katbyte/ghp-sync/lib/clog"
99
)
1010

1111
func (r Repo) ListAllIssueEvents(number int, cb func([]*github.Timeline, *github.Response) error) error {

lib/gh/issue.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"sort"
66

77
"github.com/google/go-github/v45/github"
8-
"github.com/katbyte/ghp-repo-sync/lib/clog"
8+
"github.com/katbyte/ghp-sync/lib/clog"
99
)
1010

1111
func (r Repo) ListAllIssues(state string, cb func([]*github.Issue, *github.Response) error) error {

lib/gh/label.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55

66
"github.com/google/go-github/v45/github"
7-
"github.com/katbyte/ghp-repo-sync/lib/clog"
7+
"github.com/katbyte/ghp-sync/lib/clog"
88
)
99

1010
func (r Repo) GetLabelsFor(number int) (*[]string, error) {

lib/gh/pr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strconv"
77

88
"github.com/google/go-github/v45/github"
9-
"github.com/katbyte/ghp-repo-sync/lib/clog"
9+
"github.com/katbyte/ghp-sync/lib/clog"
1010
)
1111

1212
func (r Repo) PrURL(pr int) string {

lib/gh/project-item.go

+23-30
Original file line numberDiff line numberDiff line change
@@ -69,43 +69,19 @@ func (p *Project) AddItem(nodeID string) (*string, error) {
6969
}
7070

7171
func (p *Project) SetItemStatus(itemId, status string) error {
72-
// should this be a method of ProjectItem? (to do this we'll need to figure out how to get all the fields and vlalues
72+
// should this be a method of ProjectItem? (to do this we'll need to figure out how to get all the fields and values
7373
//TODO couldn't figure it out today)
7474

7575
if p.ProjectDetails == nil {
7676
// todo should we do this automatically or error?
7777
return fmt.Errorf("project details not loaded yet")
7878
}
7979

80-
q := `query=
81-
mutation (
82-
$project:ID!, $item:ID!,
83-
$status_field:ID!, $status_value:String!,
84-
) {
85-
set_status: updateProjectV2ItemFieldValue(input: {
86-
projectId: $project
87-
itemId: $item
88-
fieldId: $status_field
89-
value: {
90-
singleSelectOptionId: $status_value
91-
}
92-
}) {
93-
projectV2Item {
94-
id
95-
}
96-
}
97-
}
98-
`
99-
100-
fields := [][]string{
101-
{"-f", "project=" + p.ID},
102-
{"-f", "item=" + itemId},
103-
{"-f", "status_field=" + p.FieldIDs["Status"]},
104-
{"-f", "status_value=" + p.StatusIDs[status]},
80+
fields := []ProjectItemField{
81+
{Name: "number", FieldID: p.FieldIDs["Status"], Type: ItemValueTypeSingleSelect, Value: status},
10582
}
10683

107-
_, err := p.GraphQLQuery(q, fields)
108-
return err
84+
return p.UpdateItem(itemId, fields)
10985
}
11086

11187
// for not we hard code the project fields we want (dueDate and type)
@@ -117,8 +93,11 @@ type ProjectItemsResult struct {
11793
ID string `json:"id"`
11894
Items struct {
11995
Nodes []struct {
120-
ID string `json:"id"`
121-
Type string `json:"type"`
96+
ID string `json:"id"`
97+
Type string `json:"type"`
98+
Status *struct {
99+
SingleSelectOptionID string `json:"singleSelectOptionId"`
100+
}
122101
RequestType *struct {
123102
Text string `json:"text"`
124103
} `json:"requestType"`
@@ -144,9 +123,15 @@ type ProjectItem struct {
144123
URL string
145124
RequestType string
146125
DueDate string
126+
Status string
147127
NodeID string // actual pr/issue node id
148128
}
149129

130+
type ProjectItemFieldNameAndType struct {
131+
Name string // The field name as it appears in GitHub's Project
132+
Type ItemValueType // The field type
133+
}
134+
150135
// todo: allow configure the fields we want to get
151136
func (p *Project) GetItems() ([]ProjectItem, error) {
152137
// nolint: misspell
@@ -169,6 +154,11 @@ func (p *Project) GetItems() ([]ProjectItem, error) {
169154
date
170155
}
171156
}
157+
status:fieldValueByName(name:"Status") {
158+
... on ProjectV2ItemFieldSingleSelectValue {
159+
singleSelectOptionId
160+
}
161+
}
172162
content {
173163
... on Issue {
174164
id
@@ -208,6 +198,9 @@ func (p *Project) GetItems() ([]ProjectItem, error) {
208198
NodeID: i.Content.ID,
209199
}
210200

201+
if i.Status != nil {
202+
item.Status = i.Status.SingleSelectOptionID
203+
}
211204
if i.RequestType != nil {
212205
item.RequestType = i.RequestType.Text
213206
}

lib/gh/repo.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"github.com/google/go-github/v45/github"
77
"github.com/hashicorp/go-retryablehttp"
8-
"github.com/katbyte/ghp-repo-sync/lib/clog"
9-
"github.com/katbyte/ghp-repo-sync/lib/pointer"
8+
"github.com/katbyte/ghp-sync/lib/clog"
9+
"github.com/katbyte/ghp-sync/lib/pointer"
1010
"golang.org/x/oauth2"
1111
"net/http"
1212
"strconv"

main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"os"
55

66
c "github.com/gookit/color" // nolint: misspell
7-
"github.com/katbyte/ghp-repo-sync/cli"
8-
"github.com/katbyte/ghp-repo-sync/lib/clog"
7+
"github.com/katbyte/ghp-sync/cli"
8+
"github.com/katbyte/ghp-sync/lib/clog"
99
)
1010

11-
const cmdName = "ghp-repo-sync"
11+
const cmdName = "ghp-sync"
1212

1313
func main() {
1414
cmd, err := cli.Make(cmdName)

makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ test: build
2929

3030
build:
3131
@echo "==> building..."
32-
go build -ldflags "-X github.com/katbyte/ghp-repo-sync/lib/version.GitCommit=${GIT_COMMIT}"
32+
go build -ldflags "-X github.com/katbyte/ghp-sync/lib/version.GitCommit=${GIT_COMMIT}"
3333

3434
docker:
35-
docker build --network=host --tag ghp-repo-sync .
35+
docker build --network=host --tag ghp-sync .
3636

3737
goimports:
3838
@echo "==> Fixing imports code with goimports..."
@@ -54,7 +54,7 @@ depscheck:
5454

5555
install:
5656
@echo "==> installing..."
57-
go install -ldflags "-X github.com/katbyte/ghp-repo-sync/lib/version.GitCommit=${GIT_COMMIT}" .
57+
go install -ldflags "-X github.com/katbyte/ghp-sync/lib/version.GitCommit=${GIT_COMMIT}" .
5858

5959
check-all: build test lint depscheck
6060

scripts/crontab

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
*/2 * * * * /app/scripts/run.sh 2>&1 | tee -a /var/log/ghp-repo-sync.log
1+
*/2 * * * * /app/scripts/run.sh 2>&1 | tee -a /var/log/ghp-sync.log

scripts/entry.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ make install
88
env >> /etc/profile
99

1010
#setup cron
11-
echo "$SYNC_CRON /app/scripts/run.sh 2>&1 | tee -a /var/log/ghp-repo-sync.log" > /etc/cron.d/crontab
11+
echo "$SYNC_CRON /app/scripts/run.sh 2>&1 | tee -a /var/log/ghp-sync.log" > /etc/cron.d/crontab
1212
chmod 0644 /etc/cron.d/crontab
1313
crontab /etc/cron.d/crontab
1414
touch /var/log/cron.log
1515

1616
# start cron
1717
/usr/sbin/crond -b
18-
touch /var/log/ghp-repo-sync.log
19-
tail -f /var/log/ghp-repo-sync.log
18+
touch /var/log/ghp-sync.log
19+
tail -f /var/log/ghp-sync.log

scripts/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
echo
44
echo "Job started: $(date)"
5-
ghp-repo-sync "$SYNC_CMD"
5+
ghp-sync "$SYNC_CMD"
66
echo "Job finished: $(date)"

0 commit comments

Comments
 (0)