Skip to content

Commit

Permalink
Print the payload for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
craigjbass committed Nov 11, 2022
1 parent ba76145 commit a0f7f4c
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 2 deletions.
66 changes: 65 additions & 1 deletion cmd/action/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,69 @@
package main

import (
"context"
"github.com/google/go-github/v48/github"
"github.com/madetech/sparkling-dependencies/internal/dealWithPullRequest"
"os"
"strings"
)

type GitHubPresenter struct {
client *github.Client
}

func (g GitHubPresenter) Exit() {
os.Exit(0)
}

func (g GitHubPresenter) PostComment(comment dealWithPullRequest.Comment) {
splitRepository := strings.Split(comment.Repository, "/")
owner := splitRepository[0]
repo := splitRepository[1]
context.Background()
_, _, err := g.client.PullRequests.CreateComment(context.Background(), owner, repo, int(comment.Number), &github.PullRequestComment{
Body: &comment.Body,
})
if err != nil {
panic(err)
}
}

func main() {
println("Hello world")
eventPayloadPath, _ := os.LookupEnv("GITHUB_EVENT_PATH")
//token, _ := os.LookupEnv("INPUT_GITHUB-TOKEN")
//
//ctx := context.Background()
//ts := oauth2.StaticTokenSource(
// &oauth2.Token{AccessToken: token},
//)
//tc := oauth2.NewClient(ctx, ts)
//
//client := github.NewClient(tc)

file := readFile(eventPayloadPath)
print(file)

//var data struct {
// EventName string `json:"eventName"`
// Payload struct {
// sender struct {
// login string `json:"login"`
// } `json:"sender"`
// } `json:"payload"`
//}
//err := json.Unmarshal(file, data)
//if err != nil {
// panic(err)
//}
//useCase := dealWithPullRequest.New(dealWithPullRequest.Event{})
//useCase.Execute(GitHubPresenter{client: client})
}

func readFile(eventPayloadPath string) []byte {
file, err := os.ReadFile(eventPayloadPath)
if err != nil {
panic(err)
}
return file
}
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ module github.com/madetech/sparkling-dependencies

go 1.19

require github.com/google/go-github/v48 v48.0.0
require (
github.com/google/go-github/v48 v48.0.0
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
)

require (
github.com/golang/protobuf v1.3.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
google.golang.org/appengine v1.6.7 // indirect
)
18 changes: 18 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs=
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-github/v48 v48.0.0 h1:9H5fWVXFK6ZsRriyPbjtnFAkJnoj0WKFtTYfpCRrTm8=
github.com/google/go-github/v48 v48.0.0/go.mod h1:dDlehKBDo850ZPvCTK0sEqTCVWcrGl2LcDiajkYi89Y=
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ=
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be h1:vEDujvNQGv4jgYKudGeI/+DAX4Jffq6hpD55MmoEvKs=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=

0 comments on commit a0f7f4c

Please sign in to comment.