/src/Rdioh/Models.hs

http://github.com/egonSchiele/rdioh · Haskell · 740 lines · 668 code · 64 blank · 8 comment · 18 complexity · 962f7f949c05b63fd37cf66dbb10017c MD5 · raw file

  1. {-# LANGUAGE OverloadedStrings #-}
  2. {-
  3. IDEA: all of these modles could have been split up into their own modules:
  4. Rdioh.Model.Artist etc etc.
  5. Then we wouldn't have these scoping issues and all the fields could be normal names.
  6. Downside: user has to import each module explicitly to use it.
  7. -}
  8. module Rdioh.Models where
  9. import Data.Aeson
  10. import Control.Applicative
  11. data AlbumExtra = AlbumIframeUrl | AlbumIsCompilation | AlbumLabel | AlbumBigIcon | AlbumReleaseDateISO
  12. instance Show AlbumExtra where
  13. show AlbumIframeUrl = "iframeUrl"
  14. show AlbumIsCompilation = "isCompilation"
  15. show AlbumLabel = "label"
  16. show AlbumBigIcon = "bigIcon"
  17. show AlbumReleaseDateISO = "releaseDateISO"
  18. data Album = Album {
  19. albumName :: String,
  20. albumIcon :: String,
  21. albumBaseIcon :: String,
  22. albumUrl :: String,
  23. albumArtist :: String,
  24. albumArtistUrl :: String,
  25. isExplicit :: Bool,
  26. isClean :: Bool,
  27. albumLength :: Int,
  28. albumArtistKey :: String,
  29. trackKeys :: [String],
  30. price :: String,
  31. canStream :: Bool,
  32. canSample :: Bool,
  33. canTether :: Bool,
  34. albumShortUrl :: String,
  35. embedUrl :: String,
  36. displayDate :: String,
  37. albumKey :: String,
  38. releaseDate :: String,
  39. duration :: Int,
  40. iframeUrl :: Maybe String,
  41. isCompilation :: Maybe Bool,
  42. albumLabel :: Maybe String,
  43. albumBigIcon :: Maybe String,
  44. releaseDateISO :: Maybe String
  45. } deriving (Show)
  46. instance FromJSON Album where
  47. parseJSON (Object v) = Album <$> v .: "name"
  48. <*> v .: "icon"
  49. <*> v .: "baseIcon"
  50. <*> v .: "url"
  51. <*> v .: "artist"
  52. <*> v .: "artistUrl"
  53. <*> v .: "isExplicit"
  54. <*> v .: "isClean"
  55. <*> v .: "length"
  56. <*> v .: "artistKey"
  57. <*> v .: "trackKeys"
  58. <*> v .: "price"
  59. <*> v .: "canStream"
  60. <*> v .: "canSample"
  61. <*> v .: "canTether"
  62. <*> v .: "shortUrl"
  63. <*> v .: "embedUrl"
  64. <*> v .: "displayDate"
  65. <*> v .: "key"
  66. <*> v .: "releaseDate"
  67. <*> v .: "duration"
  68. <*> v .:? "iframeUrl"
  69. <*> v .:? "isCompilation"
  70. <*> v .:? "label"
  71. <*> v .:? "bigIcon"
  72. <*> v .:? "releaseDateISO"
  73. data ArtistExtra = ArtistAlbumCount
  74. instance Show ArtistExtra where
  75. show ArtistAlbumCount = "albumCount"
  76. data Artist = Artist {
  77. artistName :: String,
  78. artistKey :: String,
  79. artistUrl :: String,
  80. artistLength :: Int,
  81. artistIcon :: String,
  82. artistBaseIcon :: String,
  83. hasRadio :: Bool,
  84. artistShortUrl :: String,
  85. radioKey :: Maybe String,
  86. topSongsKey :: Maybe String,
  87. artistAlbumCount :: Maybe Int
  88. } deriving (Show)
  89. instance FromJSON Artist where
  90. parseJSON (Object v) = Artist <$> v .: "name"
  91. <*> v .: "key"
  92. <*> v .: "url"
  93. <*> v .: "length"
  94. <*> v .: "icon"
  95. <*> v .: "baseIcon"
  96. <*> v .: "hasRadio"
  97. <*> v .: "shortUrl"
  98. <*> v .:? "radioKey"
  99. <*> v .:? "topSongsKey"
  100. <*> v .:? "albumCount"
  101. data Label = Label {
  102. labelName :: String,
  103. labelKey :: String,
  104. labelUrl :: String,
  105. labelShortUrl :: String,
  106. labelHasRadio :: Bool,
  107. labelRadioKey :: String
  108. } deriving (Show)
  109. instance FromJSON Label where
  110. parseJSON (Object v) = Label <$> v .: "name"
  111. <*> v .: "key"
  112. <*> v .: "url"
  113. <*> v .: "shortUrl"
  114. <*> v .: "hasRadio"
  115. <*> v .: "radioKey"
  116. data TrackExtra = IsInCollection | IsOnCompilation | Isrcs | TrackIframeUrl | PlayCount | TrackBigIcon
  117. instance Show TrackExtra where
  118. show IsInCollection = "isInCollection"
  119. show IsOnCompilation = "isOnCompilation"
  120. show Isrcs = "isrcs"
  121. show TrackIframeUrl = "iframeUrl"
  122. show PlayCount = "playCount"
  123. show TrackBigIcon = "bigIcon"
  124. data Track = Track {
  125. trackName :: String,
  126. trackArtist :: String,
  127. trackAlbum :: String,
  128. trackAlbumKey :: String,
  129. trackAlbumUrl :: String,
  130. trackArtistKey :: String,
  131. trackArtistUrl :: String,
  132. trackDuration :: Int,
  133. trackIsExplicit :: Bool,
  134. trackIsClean :: Bool,
  135. trackUrl :: String,
  136. trackBaseIcon :: String,
  137. trackCanDownload :: Bool,
  138. trackCanDownloadAlbumOnly :: Bool,
  139. trackCanStream :: Bool,
  140. trackCanTether :: Bool,
  141. trackCanSample :: Bool,
  142. trackPrice :: String,
  143. trackEmbedUrl :: String,
  144. trackKey :: String,
  145. trackIcon :: String,
  146. trackNum :: Int,
  147. trackAlbumArtist :: Maybe String,
  148. trackAlbumArtistKey :: Maybe String,
  149. isInCollection :: Maybe Bool,
  150. isOnCompilation :: Maybe Bool,
  151. isrcs :: Maybe [String],
  152. trackIframeUrl :: Maybe String,
  153. playCount :: Maybe Int,
  154. trackBigIcon :: Maybe String
  155. } deriving (Show)
  156. instance FromJSON Track where
  157. parseJSON (Object v) = Track <$> v .: "name"
  158. <*> v .: "artist"
  159. <*> v .: "album"
  160. <*> v .: "albumKey"
  161. <*> v .: "albumUrl"
  162. <*> v .: "artistKey"
  163. <*> v .: "artistUrl"
  164. <*> v .: "duration"
  165. <*> v .: "isExplicit"
  166. <*> v .: "isClean"
  167. <*> v .: "url"
  168. <*> v .: "baseIcon"
  169. <*> v .: "canDownload"
  170. <*> v .: "canDownloadAlbumOnly"
  171. <*> v .: "canStream"
  172. <*> v .: "canTether"
  173. <*> v .: "canSample"
  174. <*> v .: "price"
  175. <*> v .: "embedUrl"
  176. <*> v .: "key"
  177. <*> v .: "icon"
  178. <*> v .: "trackNum"
  179. <*> v .:? "albumArtist"
  180. <*> v .:? "albumArtistKey"
  181. <*> v .:? "isInCollection"
  182. <*> v .:? "isOnCompilation"
  183. <*> v .:? "isrcs"
  184. <*> v .:? "iframeUrl"
  185. <*> v .:? "playCount"
  186. <*> v .:? "bigIcon"
  187. data Reason = Viewable | UserPreference | OrderedAlbum | TooFewSongs deriving (Show)
  188. instance FromJSON Reason where
  189. parseJSON (Number n)
  190. | n == 0 = return Viewable
  191. | n == 1 = return UserPreference
  192. | n == 2 = return OrderedAlbum
  193. | n == 3 = return TooFewSongs
  194. data PlaylistExtra = PlIframeUrl | IsViewable | PlBigIcon | PlDescription | PlTracks | IsPublished | PlTrackKeys | ReasonNotViewable
  195. instance Show PlaylistExtra where
  196. show PlIframeUrl = "iframeUrl"
  197. show IsViewable = "isViewable"
  198. show PlBigIcon = "bigIcon"
  199. show PlDescription = "description"
  200. show PlTracks = "tracks"
  201. show IsPublished = "isPublished"
  202. show PlTrackKeys = "trackKeys"
  203. show ReasonNotViewable = "reasonNotViewable"
  204. data Playlist = Playlist {
  205. plName :: String,
  206. plUrl :: String,
  207. plOwner :: String,
  208. plOwnerUrl :: String,
  209. plOwnerKey :: String,
  210. plOwnerIcon :: String,
  211. plShortUrl :: String,
  212. plEmbedUrl :: String,
  213. plKey :: String,
  214. plLength :: Maybe Int,
  215. plIcon :: Maybe String,
  216. plBaseIcon :: Maybe String,
  217. lastUpdated :: Maybe Int,
  218. plIFrameUrl :: Maybe String,
  219. isViewable :: Maybe Bool,
  220. plBigIcon :: Maybe String,
  221. plDescription :: Maybe String,
  222. plTracks :: Maybe [Track],
  223. isPublished :: Maybe Bool,
  224. plTrackKeys :: Maybe [String],
  225. reasonNotViewable :: Maybe Reason
  226. } deriving (Show)
  227. instance FromJSON Playlist where
  228. parseJSON (Object v) = Playlist <$> v .: "name"
  229. <*> v .: "url"
  230. <*> v .: "owner"
  231. <*> v .: "ownerUrl"
  232. <*> v .: "ownerKey"
  233. <*> v .: "ownerIcon"
  234. <*> v .: "shortUrl"
  235. <*> v .: "embedUrl"
  236. <*> v .: "key"
  237. <*> v .:? "length"
  238. <*> v .:? "icon"
  239. <*> v .:? "baseIcon"
  240. <*> v .:? "lastUpdated"
  241. <*> v .:? "iframeUrl"
  242. <*> v .:? "isViewable"
  243. <*> v .:? "bigIcon"
  244. <*> v .:? "description"
  245. <*> v .:? "tracks"
  246. <*> v .:? "isPublished"
  247. <*> v .:? "trackKeys"
  248. <*> v .:? "reasonNotViewable"
  249. data Gender = Male | Female deriving (Show)
  250. data UserPlaylists = UserPlaylists {
  251. upOwned :: [Playlist],
  252. upCollab :: [Playlist],
  253. upSubscribed :: [Playlist]
  254. } deriving (Show)
  255. instance FromJSON UserPlaylists where
  256. parseJSON (Object v) = UserPlaylists <$> v .: "owned"
  257. <*> v .: "collab"
  258. <*> v .: "subscribed"
  259. instance FromJSON Gender where
  260. parseJSON (String s) = return (if s == "m" then Male else Female)
  261. data User = User {
  262. userKey :: String,
  263. firstName :: String,
  264. lastName :: String,
  265. userIcon :: String,
  266. userBaseIcon :: String,
  267. libraryVersion :: Int,
  268. userUrl :: String,
  269. gender :: Gender,
  270. followingUrl :: Maybe String,
  271. isTrial :: Maybe Bool,
  272. artistCount :: Maybe Int,
  273. lastSongPlayed :: Maybe String,
  274. heavyRotationKey :: Maybe String,
  275. networkHeavyRotationKey :: Maybe String,
  276. albumCount :: Maybe Int,
  277. trackCount :: Maybe Int,
  278. lastSongPlayTime :: Maybe String,
  279. username :: Maybe String,
  280. reviewCount :: Maybe Int,
  281. collectionUrl :: Maybe String,
  282. playlistsUrl :: Maybe String,
  283. collectionKey :: Maybe String,
  284. followersUrl :: Maybe String,
  285. displayName :: Maybe String,
  286. isUnlimited :: Maybe Bool,
  287. isSubscriber :: Maybe Bool
  288. } deriving (Show)
  289. data UserExtra = FollowingUrl | IsTrial | ArtistCount | LastSongPlayed | HeavyRotationKey | NetworkHeavyRotationKey | AlbumCount | TrackCount | LastSongPlayTime | Username | ReviewCount | CollectionUrl | PlaylistsUrl | CollectionKey | FollowersUrl | DisplayName | IsUnlimited | IsSubscriber
  290. instance Show UserExtra where
  291. show FollowingUrl = "followingUrl"
  292. show IsTrial = "isTrial"
  293. show ArtistCount = "artistCount"
  294. show LastSongPlayed = "lastSongPlayed"
  295. show HeavyRotationKey = "heavyRotationKey"
  296. show NetworkHeavyRotationKey = "networkHeavyRotationKey"
  297. show AlbumCount = "albumCount"
  298. show TrackCount = "trackCount"
  299. show LastSongPlayTime = "lastSongPlayTime"
  300. show Username = "username"
  301. show ReviewCount = "reviewCount"
  302. show CollectionUrl = "collectionUrl"
  303. show PlaylistsUrl = "playlistsUrl"
  304. show CollectionKey = "collectionkey"
  305. show FollowersUrl = "followersUrl"
  306. show DisplayName = "displayName"
  307. show IsUnlimited = "isUnlimited"
  308. show IsSubscriber = "isSubscriber"
  309. instance FromJSON User where
  310. parseJSON (Object v) = User <$> v .: "key"
  311. <*> v .: "firstName"
  312. <*> v .: "lastName"
  313. <*> v .: "icon"
  314. <*> v .: "baseIcon"
  315. <*> v .: "libraryVersion"
  316. <*> v .: "url"
  317. <*> v .: "gender"
  318. <*> v .:? "followingUrl"
  319. <*> v .:? "isTrial"
  320. <*> v .:? "artistCount"
  321. <*> v .:? "lastSongPlayed"
  322. <*> v .:? "heavyRotationKey"
  323. <*> v .:? "networkHeavyRotationKey"
  324. <*> v .:? "albumCount"
  325. <*> v .:? "trackCount"
  326. <*> v .:? "lastSongPlayTime"
  327. <*> v .:? "username"
  328. <*> v .:? "reviewCount"
  329. <*> v .:? "collectionUrl"
  330. <*> v .:? "playlistsUrl"
  331. <*> v .:? "collectionKey"
  332. <*> v .:? "followersUrl"
  333. <*> v .:? "displayName"
  334. <*> v .:? "isUnlimited"
  335. <*> v .:? "isSubscriber"
  336. data CollectionAlbum = CollectionAlbum {
  337. colName :: String,
  338. colIcon :: String,
  339. colBaseIcon :: String,
  340. colUrl :: String,
  341. colArtist :: String,
  342. colAlbumArtistUrl :: String,
  343. colIsExplicit :: Bool,
  344. colIsClean :: Bool,
  345. colLength :: Int,
  346. colAlbumArtistKey :: String,
  347. colTrackKeys :: [String],
  348. colPrice :: String,
  349. colCanStream :: Bool,
  350. colCanSample :: Bool,
  351. colCanTether :: Bool,
  352. colShortUrl :: String,
  353. colEmbedUrl :: String,
  354. colDisplayDate :: String,
  355. colKey :: String,
  356. colReleaseDate :: String,
  357. colDuration :: Int,
  358. colUserKey :: String,
  359. colUserName :: String,
  360. colAlbumKey :: String,
  361. colAlbumUrl :: String,
  362. colCollectionUrl :: String,
  363. colItemTrackKeys :: [String],
  364. colIframeUrl :: Maybe String,
  365. colUserGender :: Maybe Gender,
  366. colIsCompilation :: Maybe Bool,
  367. colLabel :: Maybe String,
  368. colReleaseDateISO :: Maybe String,
  369. colUpcs :: Maybe [String],
  370. colBigIcon :: Maybe String
  371. } deriving (Show)
  372. instance FromJSON CollectionAlbum where
  373. parseJSON (Object v) = CollectionAlbum <$> v .: "name"
  374. <*> v .: "icon"
  375. <*> v .: "baseIcon"
  376. <*> v .: "url"
  377. <*> v .: "artist"
  378. <*> v .: "artistUrl"
  379. <*> v .: "isExplicit"
  380. <*> v .: "isClean"
  381. <*> v .: "length"
  382. <*> v .: "artistKey"
  383. <*> v .: "trackKeys"
  384. <*> v .: "price"
  385. <*> v .: "canStream"
  386. <*> v .: "canSample"
  387. <*> v .: "canTether"
  388. <*> v .: "shortUrl"
  389. <*> v .: "embedUrl"
  390. <*> v .: "displayDate"
  391. <*> v .: "key"
  392. <*> v .: "releaseDate"
  393. <*> v .: "duration"
  394. <*> v .: "userkey"
  395. <*> v .: "userName"
  396. <*> v .: "albumKey"
  397. <*> v .: "albumUrl"
  398. <*> v .: "collectionUrl"
  399. <*> v .: "itemTrackKeys"
  400. <*> v .:? "iframeUrl"
  401. <*> v .:? "userGender"
  402. <*> v .:? "isCompilation"
  403. <*> v .:? "label"
  404. <*> v .:? "releaseDateISO"
  405. <*> v .:? "upcs"
  406. <*> v .:? "bigIcon"
  407. data CollectionArtist = CollectionArtist {
  408. colArtistName :: String,
  409. colArtistKey :: String,
  410. colArtistUrl :: String,
  411. colArtistLength :: Int,
  412. colArtistIcon :: String,
  413. colArtistBaseIcon :: String,
  414. colArtistHasRadio :: Bool,
  415. colArtistShortUrl :: String,
  416. colArtistRadioKey :: String,
  417. colArtistTopSongsKey :: [String],
  418. colArtistUserKey :: String,
  419. colArtistUserName :: String,
  420. colArtistArtistKey :: String,
  421. colArtistArtistUrl :: String,
  422. colArtistCollectionUrl :: String,
  423. colCount :: Maybe Int,
  424. colAlbumCount :: Maybe Int
  425. } deriving (Show)
  426. instance FromJSON CollectionArtist where
  427. parseJSON (Object v) = CollectionArtist <$> v .: "name"
  428. <*> v .: "key"
  429. <*> v .: "url"
  430. <*> v .: "length"
  431. <*> v .: "icon"
  432. <*> v .: "baseIcon"
  433. <*> v .: "hasRadio"
  434. <*> v .: "shortUrl"
  435. <*> v .: "radioKey"
  436. <*> v .: "topSongsKey"
  437. <*> v .: "userKey"
  438. <*> v .: "userName"
  439. <*> v .: "artistKey"
  440. <*> v .: "artistUrl"
  441. <*> v .: "collectionUrl"
  442. <*> v .:? "count"
  443. <*> v .:? "albumCount"
  444. data LabelStation = LabelStation {
  445. lsCount :: Int,
  446. lsLabelName :: String,
  447. lsName :: String,
  448. lsHasRadio :: Bool,
  449. lsTracks :: [String],
  450. lsLabelUrl :: String,
  451. lsShortUrl :: String,
  452. lsLength :: Int,
  453. lsUrl :: String,
  454. lsKey :: String,
  455. lsRadioKey :: String,
  456. lsReloadOnRepeat :: Bool,
  457. lsTrackKeys :: Maybe [String]
  458. } deriving (Show)
  459. instance FromJSON LabelStation where
  460. parseJSON (Object v) = LabelStation <$> v .: "count"
  461. <*> v .: "labelName"
  462. <*> v .: "name"
  463. <*> v .: "hasRadio"
  464. <*> v .: "tracks"
  465. <*> v .: "labelUrl"
  466. <*> v .: "shortUrl"
  467. <*> v .: "length"
  468. <*> v .: "url"
  469. <*> v .: "key"
  470. <*> v .: "radioKey"
  471. <*> v .: "reloadOnRepeat"
  472. <*> v .:? "trackKeys"
  473. data ArtistStation = ArtistStation {
  474. asRadioKey :: String,
  475. asTopSongsKey :: String,
  476. asBaseIcon :: String,
  477. asTracks :: [String],
  478. asArtistUrl :: String,
  479. asKey :: String,
  480. asReloadOnRepeat :: Bool,
  481. asIcon :: String,
  482. asCount :: Int,
  483. asName :: String,
  484. asHasRadio :: Bool,
  485. asUrl :: String,
  486. asArtistName :: String,
  487. asShortUrl :: String,
  488. asLength :: Int,
  489. asAlbumCount :: Maybe Int,
  490. asTrackKeys :: Maybe [String]
  491. } deriving (Show)
  492. instance FromJSON ArtistStation where
  493. parseJSON (Object v) = ArtistStation <$> v .: "radioKey"
  494. <*> v .: "topSongsKey"
  495. <*> v .: "baseIcon"
  496. <*> v .: "tracks"
  497. <*> v .: "artistUrl"
  498. <*> v .: "key"
  499. <*> v .: "reloadOnRepeat"
  500. <*> v .: "icon"
  501. <*> v .: "count"
  502. <*> v .: "name"
  503. <*> v .: "hasRadio"
  504. <*> v .: "url"
  505. <*> v .: "artistName"
  506. <*> v .: "shortUrl"
  507. <*> v .: "length"
  508. <*> v .:? "albumCount"
  509. <*> v .:? "trackKeys"
  510. data HeavyRotationStation = HeavyRotationStation {
  511. hrsKey :: String,
  512. hrsLength :: Int,
  513. hrsTracks :: Int,
  514. hrsReloadOnRepeat :: Bool,
  515. hrsCount :: Int,
  516. hrsUser :: String,
  517. hrsBaseIcon :: String,
  518. hrsIcon :: String,
  519. hrsName :: String,
  520. hrsTrackKeys :: Maybe [String]
  521. } deriving (Show)
  522. instance FromJSON HeavyRotationStation where
  523. parseJSON (Object v) = HeavyRotationStation <$> v .: "key"
  524. <*> v .: "length"
  525. <*> v .: "tracks"
  526. <*> v .: "reloadOnRepeat"
  527. <*> v .: "count"
  528. <*> v .: "user"
  529. <*> v .: "baseIcon"
  530. <*> v .: "icon"
  531. <*> v .: "name"
  532. <*> v .:? "trackKeys"
  533. data HeavyRotationUserStation = HeavyRotationUserStation {
  534. hrusKey :: String,
  535. hrusLength :: Int,
  536. hrusTracks :: Int,
  537. hrusReloadOnRepeat :: Bool,
  538. hrusCount :: Int,
  539. hrusUser :: String,
  540. hrusBaseIcon :: String,
  541. hrusIcon :: String,
  542. hrusName :: String,
  543. hrusTrackKeys :: Maybe [String]
  544. } deriving (Show)
  545. instance FromJSON HeavyRotationUserStation where
  546. parseJSON (Object v) = HeavyRotationUserStation <$> v .: "key"
  547. <*> v .: "length"
  548. <*> v .: "tracks"
  549. <*> v .: "reloadOnRepeat"
  550. <*> v .: "count"
  551. <*> v .: "user"
  552. <*> v .: "baseIcon"
  553. <*> v .: "icon"
  554. <*> v .: "name"
  555. <*> v .:? "trackKeys"
  556. data ArtistTopSongsStation = ArtistTopSongsStation {
  557. atssRadioKey :: String,
  558. atssTopSongsKey :: String,
  559. atssBaseIcon :: String,
  560. atssTracks :: [String],
  561. atssArtistUrl :: String,
  562. atssKey :: String,
  563. atssReloadOnRepeat :: Bool,
  564. atssIcon :: String,
  565. atssCount :: Int,
  566. atssName :: String,
  567. atssHasRadio :: Bool,
  568. atssUrl :: String,
  569. atssArtistName :: String,
  570. atssShortUrl :: String,
  571. atssLength :: Int,
  572. atssAlbumCount :: Maybe Int,
  573. atssTrackKeys :: Maybe [String]
  574. } deriving (Show)
  575. instance FromJSON ArtistTopSongsStation where
  576. parseJSON (Object v) = ArtistTopSongsStation <$> v .: "radioKey"
  577. <*> v .: "topSongsKey"
  578. <*> v .: "baseIcon"
  579. <*> v .: "tracks"
  580. <*> v .: "artistUrl"
  581. <*> v .: "key"
  582. <*> v .: "reloadOnRepeat"
  583. <*> v .: "icon"
  584. <*> v .: "count"
  585. <*> v .: "name"
  586. <*> v .: "hasRadio"
  587. <*> v .: "url"
  588. <*> v .: "artistName"
  589. <*> v .: "shortUrl"
  590. <*> v .: "length"
  591. <*> v .:? "albumCount"
  592. <*> v .:? "trackKeys"
  593. data UserCollectionStation = UserCollectionStation {
  594. ucsKey :: String,
  595. ucsLength :: Int,
  596. ucsTracks :: [String],
  597. ucsReloadOnRepeat :: Bool,
  598. ucsCount :: Int,
  599. ucsUser :: String,
  600. ucsBaseIcon :: String,
  601. ucsIcon :: String,
  602. ucsName :: String,
  603. ucsUrl :: String,
  604. ucsTrackKeys :: Maybe [String]
  605. } deriving (Show)
  606. instance FromJSON UserCollectionStation where
  607. parseJSON (Object v) = UserCollectionStation <$> v .: "key"
  608. <*> v .: "length"
  609. <*> v .: "tracks"
  610. <*> v .: "reloadOnRepeat"
  611. <*> v .: "count"
  612. <*> v .: "user"
  613. <*> v .: "baseIcon"
  614. <*> v .: "icon"
  615. <*> v .: "name"
  616. <*> v .: "url"
  617. <*> v .:? "trackKeys"
  618. data RdioResponse v = RdioResponse {
  619. rdioStatus :: String,
  620. rdioResult :: v
  621. } deriving (Show)
  622. instance FromJSON a => FromJSON (RdioResponse a) where
  623. parseJSON (Object v) = RdioResponse <$> v .: "status"
  624. <*> v .: "result"
  625. data SearchResults v = SearchResults {
  626. results :: [v]
  627. } deriving (Show)
  628. instance FromJSON a => FromJSON (SearchResults a) where
  629. parseJSON (Object v) = SearchResults <$> v .: "results"
  630. data PlaylistType = Owned | Collab | Subscribed
  631. instance Show PlaylistType where
  632. show Owned = "owned"
  633. show Collab = "collab"
  634. show Subscribed = "subscribed"
  635. data CollaborationMode = NoCollaboration | CollaborationWithAll | CollaborationWithFollowed deriving (Show)
  636. data Scope = UserScope | FriendScope | AllScope
  637. instance Show Scope where
  638. show UserScope = "user"
  639. show FriendScope = "friends"
  640. show AllScope = "everyone"
  641. data Activity = Activity {
  642. activityUser :: User,
  643. updates :: [Update]
  644. } deriving (Show)
  645. instance FromJSON Activity where
  646. parseJSON (Object v) = Activity <$> v .: "user"
  647. <*> v .: "updates"
  648. data UpdateType = UTrackAddedToCollection | UTrackAddedToPlaylist | UFriendAdded | UUserJoined | UCommentOnTrack | UCommentOnAlbum | UCommentOnArtist | UCommentOnPlaylist | UTrackAddedViaMatchCollection | UUserSubscribed | UTrackSynced deriving (Show)
  649. instance FromJSON UpdateType where
  650. parseJSON (Number n)
  651. | n == 0 = return UTrackAddedToCollection
  652. | n == 1 = return UTrackAddedToPlaylist
  653. | n == 3 = return UFriendAdded
  654. | n == 5 = return UUserJoined
  655. | n == 6 = return UCommentOnTrack
  656. | n == 7 = return UCommentOnAlbum
  657. | n == 8 = return UCommentOnArtist
  658. | n == 9 = return UCommentOnPlaylist
  659. | n == 10 = return UTrackAddedViaMatchCollection
  660. | n == 11 = return UUserSubscribed
  661. | n == 12 = return UTrackSynced
  662. data Update = Update {
  663. owner :: User,
  664. date :: String,
  665. updateType :: UpdateType
  666. } deriving (Show)
  667. instance FromJSON Update where
  668. parseJSON (Object v) = Update <$> v .: "owner"
  669. <*> v .: "date"
  670. <*> v .: "update_type"
  671. data Timeframe = ThisWeek | LastWeek | TwoWeeks
  672. instance Show Timeframe where
  673. show ThisWeek = "thisweek"
  674. show LastWeek = "lastweek"
  675. show TwoWeeks = "twoweeks"