Compare commits

..

No commits in common. "15b9761497077460b3a1b900201be1b1c060c579" and "3c8633ff041a95b15f7bf7fc4a881c410708194b" have entirely different histories.

13 changed files with 64 additions and 101 deletions

View file

@ -32,13 +32,6 @@ func (a *AddExecutor) Execute() error {
} }
func (a *AddExecutor) addToList(gtsClient *client.Client) error { func (a *AddExecutor) addToList(gtsClient *client.Client) error {
if a.listID == "" {
return MissingIDError{
resource: resourceList,
action: "add to",
}
}
funcMap := map[string]func(*client.Client) error{ funcMap := map[string]func(*client.Client) error{
resourceAccount: a.addAccountsToList, resourceAccount: a.addAccountsToList,
} }
@ -55,6 +48,10 @@ func (a *AddExecutor) addToList(gtsClient *client.Client) error {
} }
func (a *AddExecutor) addAccountsToList(gtsClient *client.Client) error { func (a *AddExecutor) addAccountsToList(gtsClient *client.Client) error {
if a.listID == "" {
return FlagNotSetError{flagText: flagListID}
}
if a.accountNames.Empty() { if a.accountNames.Empty() {
return NoAccountSpecifiedError{} return NoAccountSpecifiedError{}
} }
@ -141,10 +138,7 @@ func (a *AddExecutor) addToBookmarks(gtsClient *client.Client) error {
func (a *AddExecutor) addStatusToBookmarks(gtsClient *client.Client) error { func (a *AddExecutor) addStatusToBookmarks(gtsClient *client.Client) error {
if a.statusID == "" { if a.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "add to your bookmarks",
}
} }
if err := gtsClient.AddStatusToBookmarks(a.statusID); err != nil { if err := gtsClient.AddStatusToBookmarks(a.statusID); err != nil {
@ -158,10 +152,7 @@ func (a *AddExecutor) addStatusToBookmarks(gtsClient *client.Client) error {
func (a *AddExecutor) addToStatus(gtsClient *client.Client) error { func (a *AddExecutor) addToStatus(gtsClient *client.Client) error {
if a.statusID == "" { if a.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "add to",
}
} }
funcMap := map[string]func(*client.Client) error{ funcMap := map[string]func(*client.Client) error{

View file

@ -1,29 +0,0 @@
package executor
const (
flagFrom string = "from"
flagTo string = "to"
flagType string = "type"
resourceAccount string = "account"
resourceBlocked string = "blocked"
resourceBookmarks string = "bookmarks"
resourceBoost string = "boost"
resourceFollowers string = "followers"
resourceFollowing string = "following"
resourceFollowRequest string = "follow-request"
resourceInstance string = "instance"
resourceLike string = "like"
resourceLiked string = "liked"
resourceList string = "list"
resourceMedia string = "media"
resourceMediaAttachment string = "media-attachment"
resourceMutedAccounts string = "muted-accounts"
resourceNote string = "note"
resourcePoll string = "poll"
resourceStatus string = "status"
resourceStar string = "star"
resourceStarred string = "starred"
resourceTimeline string = "timeline"
resourceVote string = "vote"
)

View file

@ -34,12 +34,12 @@ func (c *CreateExecutor) Execute() error {
func (c *CreateExecutor) createList(gtsClient *client.Client) error { func (c *CreateExecutor) createList(gtsClient *client.Client) error {
if c.listTitle == "" { if c.listTitle == "" {
return Error{"please provide the title of the list that you want to create"} return FlagNotSetError{flagText: flagListTitle}
} }
parsedListRepliesPolicy, err := model.ParseListRepliesPolicy(c.listRepliesPolicy) parsedListRepliesPolicy, err := model.ParseListRepliesPolicy(c.listRepliesPolicy)
if err != nil { if err != nil {
return err //nolint:wrapcheck return err
} }
form := client.CreateListForm{ form := client.CreateListForm{

View file

@ -33,10 +33,7 @@ func (d *DeleteExecutor) Execute() error {
func (d *DeleteExecutor) deleteList(gtsClient *client.Client) error { func (d *DeleteExecutor) deleteList(gtsClient *client.Client) error {
if d.listID == "" { if d.listID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagListID}
resource: resourceList,
action: "delete",
}
} }
if err := gtsClient.DeleteList(d.listID); err != nil { if err := gtsClient.DeleteList(d.listID); err != nil {
@ -50,10 +47,7 @@ func (d *DeleteExecutor) deleteList(gtsClient *client.Client) error {
func (d *DeleteExecutor) deleteStatus(gtsClient *client.Client) error { func (d *DeleteExecutor) deleteStatus(gtsClient *client.Client) error {
if d.statusID == "" { if d.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "delete",
}
} }
status, err := gtsClient.GetStatus(d.statusID) status, err := gtsClient.GetStatus(d.statusID)

View file

@ -33,10 +33,7 @@ func (e *EditExecutor) Execute() error {
func (e *EditExecutor) editList(gtsClient *client.Client) error { func (e *EditExecutor) editList(gtsClient *client.Client) error {
if e.listID == "" { if e.listID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagListID}
resource: resourceList,
action: "edit",
}
} }
list, err := gtsClient.GetList(e.listID) list, err := gtsClient.GetList(e.listID)

View file

@ -117,12 +117,3 @@ func (e UnexpectedNumValuesError) Error() string {
e.expected, e.expected,
) )
} }
type MissingIDError struct {
resource string
action string
}
func (e MissingIDError) Error() string {
return "please provide the ID of the " + e.resource + " you want to " + e.action
}

View file

@ -0,0 +1,14 @@
package executor
const (
flagAttachmentID = "attachment-id"
flagContent = "content"
flagFrom = "from"
flagInstance = "instance"
flagListID = "list-id"
flagListTitle = "list-title"
flagStatusID = "status-id"
flagTag = "tag"
flagTo = "to"
flagType = "type"
)

View file

@ -13,7 +13,7 @@ func (l *LoginExecutor) Execute() error {
var err error var err error
if l.instance == "" { if l.instance == "" {
return Error{"please specify the instance that you want to log into"} return FlagNotSetError{flagText: flagInstance}
} }
instance := l.instance instance := l.instance

View file

@ -47,10 +47,7 @@ func (m *MuteExecutor) muteAccount(gtsClient *client.Client) error {
func (m *MuteExecutor) muteStatus(gtsClient *client.Client) error { func (m *MuteExecutor) muteStatus(gtsClient *client.Client) error {
if m.statusID == "" { if m.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "mute",
}
} }
status, err := gtsClient.GetStatus(m.statusID) status, err := gtsClient.GetStatus(m.statusID)

View file

@ -49,10 +49,7 @@ func (r *RemoveExecutor) removeFromList(gtsClient *client.Client) error {
func (r *RemoveExecutor) removeAccountsFromList(gtsClient *client.Client) error { func (r *RemoveExecutor) removeAccountsFromList(gtsClient *client.Client) error {
if r.listID == "" { if r.listID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagListID}
resource: resourceList,
action: "remove from",
}
} }
if r.accountNames.Empty() { if r.accountNames.Empty() {
@ -128,10 +125,7 @@ func (r *RemoveExecutor) removeFromBookmarks(gtsClient *client.Client) error {
func (r *RemoveExecutor) removeStatusFromBookmarks(gtsClient *client.Client) error { func (r *RemoveExecutor) removeStatusFromBookmarks(gtsClient *client.Client) error {
if r.statusID == "" { if r.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "remove",
}
} }
if err := gtsClient.RemoveStatusFromBookmarks(r.statusID); err != nil { if err := gtsClient.RemoveStatusFromBookmarks(r.statusID); err != nil {
@ -145,10 +139,7 @@ func (r *RemoveExecutor) removeStatusFromBookmarks(gtsClient *client.Client) err
func (r *RemoveExecutor) removeFromStatus(gtsClient *client.Client) error { func (r *RemoveExecutor) removeFromStatus(gtsClient *client.Client) error {
if r.statusID == "" { if r.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "remove from",
}
} }
funcMap := map[string]func(*client.Client) error{ funcMap := map[string]func(*client.Client) error{

View file

@ -0,0 +1,25 @@
package executor
const (
resourceAccount = "account"
resourceBlocked = "blocked"
resourceBookmarks = "bookmarks"
resourceBoost = "boost"
resourceFollowers = "followers"
resourceFollowing = "following"
resourceFollowRequest = "follow-request"
resourceInstance = "instance"
resourceLike = "like"
resourceLiked = "liked"
resourceList = "list"
resourceMedia = "media"
resourceMediaAttachment = "media-attachment"
resourceMutedAccounts = "muted-accounts"
resourceNote = "note"
resourcePoll = "poll"
resourceStatus = "status"
resourceStar = "star"
resourceStarred = "starred"
resourceTimeline = "timeline"
resourceVote = "vote"
)

View file

@ -118,10 +118,7 @@ func (s *ShowExecutor) showAccount(gtsClient *client.Client) error {
func (s *ShowExecutor) showStatus(gtsClient *client.Client) error { func (s *ShowExecutor) showStatus(gtsClient *client.Client) error {
if s.statusID == "" { if s.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "view",
}
} }
status, err := gtsClient.GetStatus(s.statusID) status, err := gtsClient.GetStatus(s.statusID)
@ -160,10 +157,7 @@ func (s *ShowExecutor) showTimeline(gtsClient *client.Client) error {
timeline, err = gtsClient.GetPublicTimeline(s.limit) timeline, err = gtsClient.GetPublicTimeline(s.limit)
case model.TimelineCategoryList: case model.TimelineCategoryList:
if s.listID == "" { if s.listID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagListID}
resource: resourceList,
action: "view the timeline in",
}
} }
var list model.List var list model.List
@ -176,7 +170,7 @@ func (s *ShowExecutor) showTimeline(gtsClient *client.Client) error {
timeline, err = gtsClient.GetListTimeline(list.ID, list.Title, s.limit) timeline, err = gtsClient.GetListTimeline(list.ID, list.Title, s.limit)
case model.TimelineCategoryTag: case model.TimelineCategoryTag:
if s.tag == "" { if s.tag == "" {
return Error{"please provide the name of the tag"} return FlagNotSetError{flagText: flagTag}
} }
timeline, err = gtsClient.GetTagTimeline(s.tag, s.limit) timeline, err = gtsClient.GetTagTimeline(s.tag, s.limit)
@ -416,6 +410,10 @@ func (s *ShowExecutor) showMutedAccounts(gtsClient *client.Client) error {
} }
func (s *ShowExecutor) showMediaAttachment(gtsClient *client.Client) error { func (s *ShowExecutor) showMediaAttachment(gtsClient *client.Client) error {
if len(s.attachmentIDs) == 0 {
return FlagNotSetError{flagText: flagAttachmentID}
}
if len(s.attachmentIDs) != 1 { if len(s.attachmentIDs) != 1 {
return fmt.Errorf( return fmt.Errorf(
"unexpected number of attachment IDs received: want 1, got %d", "unexpected number of attachment IDs received: want 1, got %d",
@ -455,10 +453,7 @@ func (s *ShowExecutor) showMedia(gtsClient *client.Client) error {
func (s *ShowExecutor) showMediaFromStatus(gtsClient *client.Client) error { func (s *ShowExecutor) showMediaFromStatus(gtsClient *client.Client) error {
if s.statusID == "" { if s.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "view the media from",
}
} }
status, err := gtsClient.GetStatus(s.statusID) status, err := gtsClient.GetStatus(s.statusID)

View file

@ -42,10 +42,7 @@ func (m *UnmuteExecutor) unmuteAccount(gtsClient *client.Client) error {
func (m *UnmuteExecutor) unmuteStatus(gtsClient *client.Client) error { func (m *UnmuteExecutor) unmuteStatus(gtsClient *client.Client) error {
if m.statusID == "" { if m.statusID == "" {
return MissingIDError{ return FlagNotSetError{flagText: flagStatusID}
resource: resourceStatus,
action: "unmute",
}
} }
status, err := gtsClient.GetStatus(m.statusID) status, err := gtsClient.GetStatus(m.statusID)