Fix invalid domain error in collect input.
This commit is contained in:
parent
234dcbf99a
commit
664d0cf3b3
@ -106,6 +106,16 @@ func (config *RelayState) DelSubscription(domain string) {
|
|||||||
config.Load()
|
config.Load()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SelectSubscription : Select instance from string
|
||||||
|
func (config *RelayState) SelectSubscription(domain string) *Subscription {
|
||||||
|
for _, subscription := range config.Subscriptions {
|
||||||
|
if domain == subscription.Domain {
|
||||||
|
return &subscription
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// SetBlockedDomain : Set/Unset instance for blocked domain
|
// SetBlockedDomain : Set/Unset instance for blocked domain
|
||||||
func (config *RelayState) SetBlockedDomain(domain string, value bool) {
|
func (config *RelayState) SetBlockedDomain(domain string, value bool) {
|
||||||
if value {
|
if value {
|
||||||
|
24
cli/contain.go
Normal file
24
cli/contain.go
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import state "github.com/yukimochi/Activity-Relay/State"
|
||||||
|
|
||||||
|
func contains(entries interface{}, finder string) bool {
|
||||||
|
switch entry := entries.(type) {
|
||||||
|
case string:
|
||||||
|
return entry == finder
|
||||||
|
case []string:
|
||||||
|
for i := 0; i < len(entry); i++ {
|
||||||
|
if entry[i] == finder {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case []state.Subscription:
|
||||||
|
for i := 0; i < len(entry); i++ {
|
||||||
|
if entry[i].Domain == finder {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
@ -119,15 +119,15 @@ func setDomainType(cmd *cobra.Command, args []string) error {
|
|||||||
func unfollowDomains(cmd *cobra.Command, args []string) error {
|
func unfollowDomains(cmd *cobra.Command, args []string) error {
|
||||||
subscriptions := relayState.Subscriptions
|
subscriptions := relayState.Subscriptions
|
||||||
for _, domain := range args {
|
for _, domain := range args {
|
||||||
for _, subscription := range subscriptions {
|
if contains(subscriptions, domain) {
|
||||||
if domain == subscription.Domain {
|
subscription := *relayState.SelectSubscription(domain)
|
||||||
cmd.Println("Unfollow [" + domain + "]")
|
cmd.Println("Unfollow [" + subscription.Domain + "]")
|
||||||
createUnfollowRequestResponse(subscription)
|
createUnfollowRequestResponse(subscription)
|
||||||
relayState.DelSubscription(subscription.Domain)
|
relayState.DelSubscription(subscription.Domain)
|
||||||
break
|
break
|
||||||
}
|
} else {
|
||||||
|
cmd.Println("Invalid domain [" + domain + "] given")
|
||||||
}
|
}
|
||||||
cmd.Println("Invalid domain [" + domain + "] given")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -130,14 +130,12 @@ func acceptFollow(cmd *cobra.Command, args []string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, domain := range args {
|
for _, domain := range args {
|
||||||
for _, request := range domains {
|
if contains(domains, domain) {
|
||||||
if domain == request {
|
cmd.Println("Accept [" + domain + "] follow request")
|
||||||
cmd.Println("Accept [" + domain + "] follow request")
|
createFollowRequestResponse(domain, "Accept")
|
||||||
createFollowRequestResponse(domain, "Accept")
|
} else {
|
||||||
break
|
cmd.Println("Invalid domain [" + domain + "] given")
|
||||||
}
|
|
||||||
}
|
}
|
||||||
cmd.Println("Invalid domain [" + domain + "] given")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
Loading…
x
Reference in New Issue
Block a user