1
0
Fork 0
mirror of synced 2025-04-04 21:53:37 +03:00

update lint rules

This commit is contained in:
Pavel 2025-03-21 14:22:28 +03:00
parent da336676b7
commit 171f0a0d67
4 changed files with 11 additions and 12 deletions

View file

@ -34,7 +34,6 @@ linters:
- revive
- mnd
- gosec
- lll
- makezero
- misspell
- nestif

View file

@ -304,7 +304,7 @@ func (m *Messenger) handle(w http.ResponseWriter, r *http.Request) {
}
if rec.Object != "page" && rec.Object != "instagram" {
fmt.Println("Object is not page or instagram, undefined behaviour. Got", rec.Object)
fmt.Println("Object is not page or instagram, undefined behavior. Got", rec.Object)
respond(w, http.StatusUnprocessableEntity)
return
}

View file

@ -13,7 +13,7 @@ type Profile struct {
// instagram user profile
Username string `json:"username,omitempty"`
IsPrivate bool `json:"is_private,omitempty"`
//FollowCount int32 `json:"follow_count,omitempty"`
// FollowCount int32 `json:"follow_count,omitempty"`
FollowedByCount int32 `json:"follower_count,omitempty"` // by the documentation followed_by_count
IsVerifiedUser bool `json:"is_verified_user"`
IsUserFollowBusiness bool `json:"is_user_follow_business"`

View file

@ -52,11 +52,11 @@ const (
// NonPromotionalSubscriptionType is NON_PROMOTIONAL_SUBSCRIPTION messaging type.
NonPromotionalSubscriptionType MessagingType = "NON_PROMOTIONAL_SUBSCRIPTION"
// NotificationNoPushType is NO_PUSH notification type. No notification
// NotificationNoPushType is NO_PUSH notification type. No notification.
NotificationNoPushType NotificationType = "NO_PUSH"
// NotificationRegularType is REGULAR notification type (default). Sound or vibration when a message is received by a person
// NotificationRegularType is REGULAR notification type (default). Sound or vibration when a message is received by a person.
NotificationRegularType NotificationType = "REGULAR"
// NotificationSilentPushType is SILENT_PUSH notification type. On-screen notification only
// NotificationSilentPushType is SILENT_PUSH notification type. On-screen notification only.
NotificationSilentPushType NotificationType = "SILENT_PUSH"
// TopElementStyle is compact.
@ -73,13 +73,13 @@ const (
SenderActionTypingOn SenderAction = "typing_on"
SenderActionTypingOff SenderAction = "typing_off"
// TagAccountUpdateType Tags the message you are sending to your customer as a non-recurring update to their application or account. Not available for Instagram Messaging API
// TagAccountUpdateType Tags the message you are sending to your customer as a non-recurring update to their application or account. Not available for Instagram Messaging API.
TagAccountUpdateType TagType = "ACCOUNT_UPDATE"
// TagConfirmedEventUpdateType Tags the message you are sending to your customer as a reminder fo an upcoming event or an update for an event in procgres for which the customer is registered. Not available for Instagram Messaging API
// TagConfirmedEventUpdateType Tags the message you are sending to your customer as a reminder fo an upcoming event or an update for an event in procgres for which the customer is registered. Not available for Instagram Messaging API.
TagConfirmedEventUpdateType TagType = "CONFIRMED_EVENT_UPDATE"
// TagCustomerFeedbackType Tags the message you are sending to your customer as a Customer Feedback Survey. Customer feedback messages must be sent within 7 days of the customer's last message. Not available for Instagram Messaging API
// TagCustomerFeedbackType Tags the message you are sending to your customer as a Customer Feedback Survey. Customer feedback messages must be sent within 7 days of the customer's last message. Not available for Instagram Messaging API.
TagCustomerFeedbackType TagType = "CUSTOMER_FEEDBACK"
// TagHumanAgentType When this tag is added to a message to a customer, it allows a human agent to respond to a person's message. Messages can be sent within 7 days of the person's. Human agent support is for issues that cannot be resolved within the standard 24 hour messaging window
// TagHumanAgentType When this tag is added to a message to a customer, it allows a human agent to respond to a person's message. Messages can be sent within 7 days of the person's. Human agent support is for issues that cannot be resolved within the standard 24 hour messaging window.
TagHumanAgentType TagType = "HUMAN_AGENT"
// TagPostPurchaseUpdateType Tags the message you are sending to your customer as an update for a recent purchase made by the customer. Not available for Instagram Messaging API.
TagPostPurchaseUpdateType TagType = "POST_PURCHASE_UPDATE"
@ -162,7 +162,7 @@ func (r *Response) Text(
// only supply tags when messagingType == "MESSAGE_TAG"
// (see https://developers.facebook.com/docs/messenger-platform/send-messages#messaging_types for more).
// notificationType should be one of the following: "NO_PUSH","REGULAR" (default),"SILENT_PUSH"
// only supply tags when messagingType == "MESSAGE_TAG" (see https://developers.facebook.com/docs/messenger-platform/send-messages#messaging_types for more)
// only supply tags when messagingType == "MESSAGE_TAG" (see https://developers.facebook.com/docs/messenger-platform/send-messages#messaging_types for more).
func (r *Response) TextWithReplies(
message string,
replies []QuickReply,
@ -191,7 +191,7 @@ func (r *Response) TextWithReplies(
return r.DispatchMessage(&m)
}
// AttachmentWithReplies sends a attachment message with some replies
// AttachmentWithReplies sends a attachment message with some replies.
func (r *Response) AttachmentWithReplies(
attachment *StructuredMessageAttachment,
replies []QuickReply,