2018-08-21 08:50:30 +00:00
|
|
|
package main
|
|
|
|
|
2019-08-23 10:23:33 +00:00
|
|
|
import "github.com/davecgh/go-spew/spew"
|
|
|
|
|
2018-08-21 08:57:59 +00:00
|
|
|
import (
|
2018-08-22 10:29:14 +00:00
|
|
|
"bytes"
|
2018-08-22 00:39:08 +00:00
|
|
|
"fmt"
|
2018-11-23 12:22:03 +00:00
|
|
|
// "github.com/adlio/trello"
|
2019-08-23 10:23:33 +00:00
|
|
|
|
2018-11-23 12:22:03 +00:00
|
|
|
trello "github.com/glenux/contrib-trello"
|
2018-11-22 16:24:19 +00:00
|
|
|
"github.com/russross/blackfriday/v2"
|
2018-08-22 10:34:33 +00:00
|
|
|
"log"
|
2018-08-22 00:39:08 +00:00
|
|
|
"net/url"
|
2018-12-27 13:14:31 +00:00
|
|
|
"os"
|
2018-08-21 08:57:59 +00:00
|
|
|
"os/exec"
|
2018-12-27 13:14:31 +00:00
|
|
|
"path"
|
2018-08-22 00:39:08 +00:00
|
|
|
"strings"
|
2018-11-23 11:41:16 +00:00
|
|
|
"text/template"
|
2018-08-21 23:50:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-11-23 12:29:14 +00:00
|
|
|
// See https://trello.com/app-key
|
|
|
|
APP_KEY string = "58117ebf843d49b05bca074c5fd520ee"
|
2018-08-21 08:57:59 +00:00
|
|
|
)
|
|
|
|
|
2018-11-23 10:46:12 +00:00
|
|
|
type TrelloConfig struct {
|
|
|
|
Url string
|
|
|
|
Token string
|
|
|
|
}
|
|
|
|
|
2018-08-21 17:21:46 +00:00
|
|
|
type TrelloCtx struct {
|
2018-08-21 23:50:50 +00:00
|
|
|
Token string
|
|
|
|
Client *trello.Client
|
2018-08-21 17:21:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type TrelloBoard struct {
|
2018-11-23 12:22:03 +00:00
|
|
|
Ctx *TrelloCtx
|
|
|
|
Ptr *trello.Board
|
|
|
|
Starred bool
|
|
|
|
Closed bool
|
|
|
|
Name string
|
2018-08-21 17:21:46 +00:00
|
|
|
}
|
|
|
|
|
2018-08-21 08:57:59 +00:00
|
|
|
func runcmd(command string) string {
|
|
|
|
shell := "/bin/sh"
|
|
|
|
flag := "-c"
|
|
|
|
|
|
|
|
out, err := exec.Command(shell, flag, command).Output()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(out)
|
|
|
|
}
|
|
|
|
|
2018-08-22 10:29:14 +00:00
|
|
|
func GetTokenProcessMessage() string {
|
|
|
|
url := strings.Join([]string{
|
|
|
|
"https://trello.com/1/authorize?expiration=never",
|
|
|
|
"name=taskell",
|
|
|
|
"scope=read",
|
|
|
|
"response_type=token",
|
|
|
|
fmt.Sprintf("key=%s", APP_KEY),
|
|
|
|
}, "&")
|
|
|
|
|
|
|
|
text := strings.Join([]string{
|
|
|
|
"Wrong TRELLO_TOKEN value. Please visit:",
|
|
|
|
url,
|
|
|
|
"When you have your access token, set TRELLO_TOKEN=<your-token>",
|
|
|
|
}, "\n\n")
|
|
|
|
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
2018-08-21 17:21:46 +00:00
|
|
|
func NewTrello(token string) *TrelloCtx {
|
2018-08-21 23:50:50 +00:00
|
|
|
client := trello.NewClient(APP_KEY, token)
|
2018-08-22 10:29:14 +00:00
|
|
|
|
2018-08-21 23:50:50 +00:00
|
|
|
ctx := TrelloCtx{}
|
|
|
|
ctx.Token = token
|
|
|
|
ctx.Client = client
|
|
|
|
|
|
|
|
return &ctx
|
2018-08-21 17:21:46 +00:00
|
|
|
}
|
|
|
|
|
2018-11-23 12:22:03 +00:00
|
|
|
func (ctx *TrelloCtx) GetBoards() []TrelloBoard {
|
|
|
|
var result []TrelloBoard
|
|
|
|
|
|
|
|
token, err := ctx.Client.GetToken(ctx.Token, trello.Defaults())
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
member, err := ctx.Client.GetMember(token.IDMember, trello.Defaults())
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
boards, err := member.GetBoards(trello.Defaults())
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
for _, board := range boards {
|
|
|
|
result = append(result, TrelloBoard{
|
|
|
|
Ctx: ctx,
|
|
|
|
Starred: board.Starred,
|
|
|
|
Closed: board.Closed,
|
|
|
|
Ptr: board,
|
|
|
|
Name: board.Name,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2018-08-21 17:21:46 +00:00
|
|
|
func (ctx *TrelloCtx) GetBoard(boardUrl string) TrelloBoard {
|
2018-08-22 00:39:08 +00:00
|
|
|
parsedUrl, err := url.Parse(boardUrl)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
boardId := strings.Split(parsedUrl.Path, "/")[2]
|
|
|
|
|
|
|
|
board, err := ctx.Client.GetBoard(boardId, trello.Defaults())
|
2018-11-23 10:46:12 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
2019-08-23 10:23:33 +00:00
|
|
|
|
|
|
|
// fmt.Printf("%#v\n", board)
|
|
|
|
spew.Dump(board)
|
2018-11-23 12:22:03 +00:00
|
|
|
return TrelloBoard{
|
|
|
|
Ctx: ctx,
|
|
|
|
Starred: board.Starred,
|
|
|
|
Closed: board.Closed,
|
|
|
|
Ptr: board,
|
|
|
|
Name: board.Name,
|
|
|
|
}
|
2018-08-21 17:21:46 +00:00
|
|
|
}
|
|
|
|
|
2018-11-23 11:41:16 +00:00
|
|
|
type CardData struct {
|
|
|
|
Name string
|
|
|
|
Url string
|
|
|
|
}
|
2018-08-22 00:39:08 +00:00
|
|
|
|
2018-11-23 11:41:16 +00:00
|
|
|
type ListData struct {
|
|
|
|
Name string
|
|
|
|
Cards []CardData
|
|
|
|
}
|
|
|
|
|
|
|
|
type BoardData struct {
|
|
|
|
Name string
|
|
|
|
Url string
|
|
|
|
Lists []ListData
|
|
|
|
}
|
|
|
|
|
|
|
|
func (board *TrelloBoard) ExportData() BoardData {
|
|
|
|
var boardData = BoardData{
|
|
|
|
Name: board.Ptr.Name,
|
|
|
|
Url: board.Ptr.ShortUrl,
|
|
|
|
Lists: make([]ListData, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
// get lists
|
2018-08-22 10:34:33 +00:00
|
|
|
lists, err := board.Ptr.GetLists(trello.Defaults())
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
2018-11-23 11:41:16 +00:00
|
|
|
// fill in reverse order
|
2018-08-22 10:29:14 +00:00
|
|
|
for listIdx := len(lists) - 1; listIdx >= 0; listIdx -= 1 {
|
|
|
|
list := lists[listIdx]
|
2018-11-23 11:41:16 +00:00
|
|
|
listData := ListData{
|
|
|
|
Name: list.Name,
|
|
|
|
Cards: make([]CardData, 0),
|
|
|
|
}
|
2018-08-22 10:29:14 +00:00
|
|
|
|
2018-08-22 10:34:33 +00:00
|
|
|
cards, err := list.GetCards(trello.Defaults())
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
2018-08-22 10:29:14 +00:00
|
|
|
for _, card := range cards {
|
2018-11-23 11:41:16 +00:00
|
|
|
cardData := CardData{
|
|
|
|
Name: card.Name,
|
|
|
|
Url: card.Url,
|
|
|
|
}
|
|
|
|
listData.Cards = append(listData.Cards, cardData)
|
2018-08-22 10:29:14 +00:00
|
|
|
}
|
2018-11-23 11:41:16 +00:00
|
|
|
|
|
|
|
boardData.Lists = append(boardData.Lists, listData)
|
2018-08-22 00:39:08 +00:00
|
|
|
}
|
2018-11-23 11:41:16 +00:00
|
|
|
|
|
|
|
return boardData
|
|
|
|
}
|
|
|
|
|
|
|
|
func (board *TrelloBoard) ExportToMarkdown() string {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
|
|
|
|
data := board.ExportData()
|
|
|
|
|
2018-12-27 13:14:31 +00:00
|
|
|
wd, err := os.Getwd()
|
|
|
|
t, err := template.ParseFiles(path.Join(wd, "templates/markdown.tmpl"))
|
2018-11-23 11:41:16 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Panic("Unable to parse template files")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := t.Execute(&buf, data); err != nil {
|
|
|
|
log.Panicf("Template execution: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.String()
|
2018-08-21 08:50:30 +00:00
|
|
|
}
|
|
|
|
|
2018-08-22 12:02:06 +00:00
|
|
|
func (board *TrelloBoard) ExportToHtml() string {
|
|
|
|
markdown := board.ExportToMarkdown()
|
|
|
|
html := blackfriday.Run([]byte(markdown))
|
|
|
|
return string(html)
|
|
|
|
}
|