packages feed

github-0.30.0.2: src/GitHub/Data/Activities.hs

module GitHub.Data.Activities where

import GitHub.Data.Id          (Id, mkId)
import GitHub.Data.Repos       (Repo, RepoRef)
import GitHub.Data.URL         (URL)
import GitHub.Internal.Prelude

import Prelude ()

import qualified Data.Text as T

data RepoStarred = RepoStarred
    { repoStarredStarredAt :: !UTCTime
    , repoStarredRepo      :: !Repo
    }
  deriving (Show, Data, Eq, Ord, Generic)

instance NFData RepoStarred
instance Binary RepoStarred

-- JSON Instances
instance FromJSON RepoStarred where
    parseJSON = withObject "RepoStarred" $ \o -> RepoStarred
        <$> o .: "starred_at"
        <*> o .: "repo"

data Subject = Subject
    { subjectTitle :: !Text
    , subjectURL :: !(Maybe URL)
    , subjectLatestCommentURL :: !(Maybe URL)
    -- https://developer.github.com/v3/activity/notifications/ doesn't indicate
    -- what the possible values for this field are.
    -- TODO: Make an ADT for this.
    , subjectType :: !Text
    }
  deriving (Show, Data, Eq, Ord, Generic)

instance NFData Subject
instance Binary Subject

instance FromJSON Subject where
    parseJSON = withObject "Subject" $ \o -> Subject
        <$> o .: "title"
        <*> o .: "url"
        <*> o .:? "latest_comment_url"
        <*> o .: "type"

data NotificationReason
    = ApprovalRequestedReason
    | AssignReason
    | AuthorReason
    | CommentReason
    | CiActivityReason
    | InvitationReason
    | ManualReason
    | MemberFeatureRequestedReason
    | MentionReason
    | ReviewRequestedReason
    | SecurityAlertReason
    | SecurityAdvisoryCreditReason
    | StateChangeReason
    | SubscribedReason
    | TeamMentionReason
  deriving (Show, Data, Enum, Bounded, Eq, Ord, Generic)

instance NFData NotificationReason
instance Binary NotificationReason

instance FromJSON NotificationReason where
    parseJSON = withText "NotificationReason" $ \t -> case T.toLower t of
      "approval_requested"       -> pure ApprovalRequestedReason
      "assign"                   -> pure AssignReason
      "author"                   -> pure AuthorReason
      "comment"                  -> pure CommentReason
      "ci_activity"              -> pure CiActivityReason
      "invitation"               -> pure InvitationReason
      "manual"                   -> pure ManualReason
      "member_feature_requested" -> pure MemberFeatureRequestedReason
      "mention"                  -> pure MentionReason
      "review_requested"         -> pure ReviewRequestedReason
      "security_alert"           -> pure SecurityAlertReason
      "security_advisory_credit" -> pure SecurityAdvisoryCreditReason
      "state_change"             -> pure StateChangeReason
      "subscribed"               -> pure SubscribedReason
      "team_mention"             -> pure TeamMentionReason
      _                          -> fail $ "Unknown NotificationReason " ++ show t

data Notification = Notification
    -- XXX: The notification id field type IS in fact string. Not sure why gh
    -- chose to do this when all the other ids are Numbers...
    { notificationId :: !(Id Notification)
    , notificationRepo :: !RepoRef
    , notificationSubject :: !Subject
    , notificationReason :: !NotificationReason
    , notificationUnread :: !Bool
    , notificationUpdatedAt :: !(Maybe UTCTime)
    , notificationLastReadAt :: !(Maybe UTCTime)
    , notificationUrl :: !URL
    }
  deriving (Show, Data, Eq, Ord, Generic)

instance NFData Notification
instance Binary Notification

instance FromJSON Notification where
    parseJSON = withObject "Notification" $ \o -> Notification
        <$> (mkId undefined . read <$> o .: "id")
        <*> o .: "repository"
        <*> o .: "subject"
        <*> o .: "reason"
        <*> o .: "unread"
        <*> o .: "updated_at"
        <*> o .: "last_read_at"
        <*> o .: "url"