mirror of
https://github.com/strongdm/comply
synced 2024-11-05 15:35:25 +00:00
30 lines
587 B
Go
30 lines
587 B
Go
|
package cli
|
||
|
|
||
|
import (
|
||
|
"github.com/strongdm/comply/internal/model"
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
var syncCommand = cli.Command{
|
||
|
Name: "sync",
|
||
|
Usage: "sync ticket status to local cache",
|
||
|
Action: syncAction,
|
||
|
Before: beforeAll(projectMustExist, ticketingMustBeConfigured),
|
||
|
}
|
||
|
|
||
|
func syncAction(c *cli.Context) error {
|
||
|
// TODO: unhardcode plugin
|
||
|
tp := model.GetPlugin(model.GitHub)
|
||
|
tickets, err := tp.FindByTagName("comply")
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
for _, t := range tickets {
|
||
|
err = model.DB().Write("tickets", t.ID, t)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
return nil
|
||
|
}
|