WithUnlinkedURL()
This commit is contained in:
@@ -94,6 +94,7 @@ func (c *Client) get(path string, values *url.Values, out interface{}) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
dec := json.NewDecoder(resp.Body)
|
dec := json.NewDecoder(resp.Body)
|
||||||
|
|
||||||
@@ -131,6 +132,7 @@ func (c *Client) post(path string, body interface{}, out interface{}) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
if resp.StatusCode != 200 {
|
if resp.StatusCode != 200 {
|
||||||
body, err := ioutil.ReadAll(resp.Body)
|
body, err := ioutil.ReadAll(resp.Body)
|
||||||
|
|||||||
@@ -2,10 +2,12 @@ package asanarules
|
|||||||
|
|
||||||
import "fmt"
|
import "fmt"
|
||||||
import "math/rand"
|
import "math/rand"
|
||||||
|
import "strings"
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
import "cloud.google.com/go/civil"
|
import "cloud.google.com/go/civil"
|
||||||
import "github.com/firestuff/asana-rules/asanaclient"
|
import "github.com/firestuff/asana-rules/asanaclient"
|
||||||
|
import "golang.org/x/net/html"
|
||||||
|
|
||||||
type queryMutator func(*asanaclient.WorkspaceClient, *asanaclient.SearchQuery) error
|
type queryMutator func(*asanaclient.WorkspaceClient, *asanaclient.SearchQuery) error
|
||||||
type taskActor func(*asanaclient.WorkspaceClient, *asanaclient.Task) error
|
type taskActor func(*asanaclient.WorkspaceClient, *asanaclient.Task) error
|
||||||
@@ -211,6 +213,14 @@ func (p *periodic) WithoutTagsAnyOf(names ...string) *periodic {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Task filters
|
// Task filters
|
||||||
|
func (p *periodic) WithUnlinkedURL() *periodic {
|
||||||
|
p.taskFilters = append(p.taskFilters, func(wc *asanaclient.WorkspaceClient, t *asanaclient.Task) (bool, error) {
|
||||||
|
return hasUnlinkedURL(t.ParsedHTMLNotes), nil
|
||||||
|
})
|
||||||
|
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
func (p *periodic) WithoutDue() *periodic {
|
func (p *periodic) WithoutDue() *periodic {
|
||||||
// We can't mutate the query because due_on=null is buggy in the Asana API
|
// We can't mutate the query because due_on=null is buggy in the Asana API
|
||||||
p.taskFilters = append(p.taskFilters, func(wc *asanaclient.WorkspaceClient, t *asanaclient.Task) (bool, error) {
|
p.taskFilters = append(p.taskFilters, func(wc *asanaclient.WorkspaceClient, t *asanaclient.Task) (bool, error) {
|
||||||
@@ -221,6 +231,16 @@ func (p *periodic) WithoutDue() *periodic {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Task actors
|
// Task actors
|
||||||
|
func (p *periodic) FixUnlinkedURL() *periodic {
|
||||||
|
p.taskActors = append(p.taskActors, func(wc *asanaclient.WorkspaceClient, t *asanaclient.Task) error {
|
||||||
|
// TODO: Fix tree
|
||||||
|
// TODO: Update task
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
func (p *periodic) MoveToMyTasksSection(name string) *periodic {
|
func (p *periodic) MoveToMyTasksSection(name string) *periodic {
|
||||||
p.taskActors = append(p.taskActors, func(wc *asanaclient.WorkspaceClient, t *asanaclient.Task) error {
|
p.taskActors = append(p.taskActors, func(wc *asanaclient.WorkspaceClient, t *asanaclient.Task) error {
|
||||||
utl, err := wc.GetMyUserTaskList()
|
utl, err := wc.GetMyUserTaskList()
|
||||||
@@ -248,6 +268,7 @@ func (p *periodic) PrintTasks() *periodic {
|
|||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Infra
|
||||||
func (p *periodic) start(client *asanaclient.Client) {
|
func (p *periodic) start(client *asanaclient.Client) {
|
||||||
err := p.validate()
|
err := p.validate()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -331,3 +352,30 @@ func (p *periodic) exec(c *asanaclient.Client) error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Helpers
|
||||||
|
func hasUnlinkedURL(node *html.Node) bool {
|
||||||
|
if node == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
if node.Type == html.ElementNode && node.Data == "a" {
|
||||||
|
// Don't go down this tree, since it's a link
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
if node.Type == html.TextNode && (strings.HasPrefix(node.Data, "http://") ||
|
||||||
|
strings.HasPrefix(node.Data, "https://")) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
if hasUnlinkedURL(node.FirstChild) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
if hasUnlinkedURL(node.NextSibling) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user