/src/main/java/net/jeremybrooks/jinx/api/StatsApi.java

http://github.com/jeremybrooks/jinx · Java · 463 lines · 212 code · 21 blank · 230 comment · 48 complexity · f7918bc454df8056cdbe04ddedc007b4 MD5 · raw file

  1. /*
  2. * Jinx is Copyright 2010-2020 by Jeremy Brooks and Contributors
  3. *
  4. * Jinx is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * Jinx is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with Jinx. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package net.jeremybrooks.jinx.api;
  18. import net.jeremybrooks.jinx.Jinx;
  19. import net.jeremybrooks.jinx.JinxConstants;
  20. import net.jeremybrooks.jinx.JinxException;
  21. import net.jeremybrooks.jinx.JinxUtils;
  22. import net.jeremybrooks.jinx.response.photos.Photos;
  23. import net.jeremybrooks.jinx.response.stats.Domains;
  24. import net.jeremybrooks.jinx.response.stats.Referrers;
  25. import net.jeremybrooks.jinx.response.stats.Stats;
  26. import net.jeremybrooks.jinx.response.stats.TotalViews;
  27. import java.util.Date;
  28. import java.util.Map;
  29. import java.util.TreeMap;
  30. /**
  31. * Provides access to the flickr.stats API methods.
  32. *
  33. * @author Jeremy Brooks
  34. * @see <a href="https://www.flickr.com/services/api/">Flickr API documentation</a> for more details.
  35. */
  36. public class StatsApi {
  37. private Jinx jinx;
  38. private StatsApi() {
  39. }
  40. public StatsApi(Jinx jinx) {
  41. this.jinx = jinx;
  42. }
  43. /**
  44. * Get a list of referring domains for a collection
  45. *
  46. * Authentication
  47. *
  48. * This method requires authentication with 'read' permission.
  49. *
  50. * @param date stats will be returned for this date. Required.
  51. * @param collectionId id of the collection to get stats for. If not provided,
  52. * stats for all collections will be returned. Optional.
  53. * @param perPage number of domains to return per page.
  54. * If this argument is omitted, it defaults to 25.
  55. * The maximum allowed value is 100. Optional.
  56. * @param page the page of results to return. If this argument is omitted, it defaults to 1. Optional.
  57. * @return referring domains for a collection.
  58. * @throws JinxException if required parameters are missing, or if there are any errors.
  59. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getCollectionDomains.html">flickr.stats.getCollectionDomains</a>
  60. */
  61. public Domains getCollectionDomains(Date date, String collectionId, Integer perPage, Integer page) throws JinxException {
  62. JinxUtils.validateParams(date);
  63. Map<String, String> params = new TreeMap<>();
  64. params.put("method", "flickr.stats.getCollectionDomains");
  65. params.put("date", JinxUtils.formatDateAsYMD(date));
  66. if (!JinxUtils.isNullOrEmpty(collectionId)) {
  67. params.put("collection_id", collectionId);
  68. }
  69. if (perPage != null) {
  70. params.put("per_page", perPage.toString());
  71. }
  72. if (page != null) {
  73. params.put("page", page.toString());
  74. }
  75. return jinx.flickrGet(params, Domains.class);
  76. }
  77. /**
  78. * Get a list of referrers from a given domain to a collection
  79. *
  80. * Authentication
  81. *
  82. * This method requires authentication with 'read' permission.
  83. *
  84. * @param date stats will be returned for this date. Required.
  85. * @param domain domain to return referrers for. This should be a hostname (eg: "flickr.com")
  86. * with no protocol or pathname. Required.
  87. * @param collectionId id of the collection to get stats for. If not provided, stats for all
  88. * collections will be returned. Optional.
  89. * @param perPage number of referrers to return per page. If this argument is omitted, it defaults
  90. * to 25. The maximum allowed value is 100. Optional.
  91. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  92. * @return Referrers from a given domain for a collection.
  93. * @throws JinxException if required parameters are missing, or if there are any errors.
  94. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getCollectionReferrers.html">flickr.stats.getCollectionReferrers</a>
  95. */
  96. public Referrers getCollectionReferrers(Date date, String domain, String collectionId, Integer perPage, Integer page)
  97. throws JinxException {
  98. JinxUtils.validateParams(date, domain);
  99. Map<String, String> params = new TreeMap<>();
  100. params.put("method", "flickr.stats.getCollectionReferrers");
  101. params.put("date", JinxUtils.formatDateAsYMD(date));
  102. params.put("domain", domain);
  103. if (!JinxUtils.isNullOrEmpty(collectionId)) {
  104. params.put("collection_id", collectionId);
  105. }
  106. if (perPage != null) {
  107. params.put("per_page", perPage.toString());
  108. }
  109. if (page != null) {
  110. params.put("page", page.toString());
  111. }
  112. return jinx.flickrGet(params, Referrers.class);
  113. }
  114. /**
  115. * Get the number of views on a collection for a given date.
  116. *
  117. * Authentication
  118. *
  119. * This method requires authentication with 'read' permission.
  120. *
  121. * @param date stats will be returned for this date. Required.
  122. * @param collectionId id of the collection to get stats for. Required.
  123. * @return stats for the specified collection.
  124. * @throws JinxException if required parameters are missing, or if there are any errors.
  125. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getCollectionStats.html">flickr.stats.getCollectionStats</a>
  126. */
  127. public Stats getCollectionStats(Date date, String collectionId) throws JinxException {
  128. JinxUtils.validateParams(date, collectionId);
  129. Map<String, String> params = new TreeMap<>();
  130. params.put("method", "flickr.stats.getCollectionStats");
  131. params.put("date", JinxUtils.formatDateAsYMD(date));
  132. params.put("collection_id", collectionId);
  133. return jinx.flickrGet(params, Stats.class);
  134. }
  135. /**
  136. * Get a list of referring domains for a photo
  137. *
  138. * Authentication
  139. *
  140. * This method requires authentication with 'read' permission.
  141. *
  142. * @param date stats will be returned for this date. Required.
  143. * @param photoId id of the photo to get stats for. If not provided, stats for all photos will be returned. Optional.
  144. * @param perPage number of domains to return per page. If this argument is omitted,
  145. * it defaults to 25. The maximum allowed value is 100. Optional.
  146. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  147. * @return referrig domains for a photo.
  148. * @throws JinxException if required parameters are missing, or if there are any errors.
  149. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotoDomains.html">flickr.stats.getPhotoDomains</a>
  150. */
  151. public Domains getPhotoDomains(Date date, String photoId, Integer perPage, Integer page) throws JinxException {
  152. JinxUtils.validateParams(date);
  153. Map<String, String> params = new TreeMap<>();
  154. params.put("method", "flickr.stats.getPhotoDomains");
  155. params.put("date", JinxUtils.formatDateAsYMD(date));
  156. if (!JinxUtils.isNullOrEmpty(photoId)) {
  157. params.put("photo_id", photoId);
  158. }
  159. if (perPage != null) {
  160. params.put("per_page", perPage.toString());
  161. }
  162. if (page != null) {
  163. params.put("page", page.toString());
  164. }
  165. return jinx.flickrGet(params, Domains.class);
  166. }
  167. /**
  168. * Get a list of referrers from a given domain to a photo
  169. *
  170. * This method requires authentication with 'read' permission.
  171. *
  172. * @param date stats will be returned for this date. Required.
  173. * @param domain domain to return referrers for. This should be a hostname (eg: "flickr.com") with no
  174. * protocol or pathname. Required.
  175. * @param photoId id of the photo to get stats for. If not provided, stats for all photos will be returned. Optional.
  176. * @param perPage number of referrers to return per page. If this argument is omitted, it defaults
  177. * to 25. The maximum allowed value is 100. Optional.
  178. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  179. * @return referrers from a given domain to a photo.
  180. * @throws JinxException if required parameters are missing, or if there are any errors.
  181. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotoReferrers.html">flickr.stats.getPhotoReferrers</a>
  182. */
  183. public Referrers getPhotoReferrers(Date date, String domain, String photoId, Integer perPage, Integer page)
  184. throws JinxException {
  185. JinxUtils.validateParams(date, domain);
  186. Map<String, String> params = new TreeMap<>();
  187. params.put("method", "flickr.stats.getPhotoReferrers");
  188. params.put("date", JinxUtils.formatDateAsYMD(date));
  189. params.put("domain", domain);
  190. if (!JinxUtils.isNullOrEmpty(photoId)) {
  191. params.put("photo_id", photoId);
  192. }
  193. if (perPage != null) {
  194. params.put("per_page", perPage.toString());
  195. }
  196. if (page != null) {
  197. params.put("page", page.toString());
  198. }
  199. return jinx.flickrGet(params, Referrers.class);
  200. }
  201. /**
  202. * Get the number of views, comments and favorites on a photo for a given date.
  203. *
  204. * This method requires authentication with 'read' permission.
  205. *
  206. * @param date stats will be returned for this date. Required.
  207. * @param photoId id of the photo to get stats for. Required.
  208. * @return number of views, comments, and favorites on a photo for a given date.
  209. * @throws JinxException if required parameters are missing, or if there are any errors.
  210. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotoStats.html">flickr.stats.getPhotoStats</a>
  211. */
  212. public Stats getPhotoStats(Date date, String photoId) throws JinxException {
  213. JinxUtils.validateParams(date, photoId);
  214. Map<String, String> params = new TreeMap<>();
  215. params.put("method", "flickr.stats.getPhotoStats");
  216. params.put("date", JinxUtils.formatDateAsYMD(date));
  217. params.put("photo_id", photoId);
  218. return jinx.flickrGet(params, Stats.class);
  219. }
  220. /**
  221. * Get a list of referring domains for a photoset
  222. *
  223. * This method requires authentication with 'read' permission.
  224. *
  225. * @param date stats will be returned for this date. Required.
  226. * @param photosetId id of the photoset to get stats for. If not provided, stats for all sets will be returned. Optional.
  227. * @param perPage number of domains to return per page. If this argument is omitted,
  228. * it defaults to 25. The maximum allowed value is 100. Optional.
  229. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  230. * @return referring domains for a photoset.
  231. * @throws JinxException if required parameters are missing, or if there are any errors.
  232. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotosetDomains.html">flickr.stats.getPhotosetDomains</a>
  233. */
  234. public Domains getPhotosetDomains(Date date, String photosetId, Integer perPage, Integer page) throws JinxException {
  235. JinxUtils.validateParams(date);
  236. Map<String, String> params = new TreeMap<>();
  237. params.put("method", "flickr.stats.getPhotosetDomains");
  238. params.put("date", JinxUtils.formatDateAsYMD(date));
  239. if (!JinxUtils.isNullOrEmpty(photosetId)) {
  240. params.put("photoset_id", photosetId);
  241. }
  242. if (perPage != null) {
  243. params.put("per_page", perPage.toString());
  244. }
  245. if (page != null) {
  246. params.put("page", page.toString());
  247. }
  248. return jinx.flickrGet(params, Domains.class);
  249. }
  250. /**
  251. * Get a list of referrers from a given domain to a photoset
  252. *
  253. * This method requires authentication with 'read' permission.
  254. *
  255. * @param date stats will be returned for this date. Required.
  256. * @param domain domain to return referrers for. This should be a hostname (eg: "flickr.com") with no
  257. * protocol or pathname. Required.
  258. * @param photosetId id of the photoset to get stats for. If not provided, stats for all sets will be returned. Optional.
  259. * @param perPage number of referrers to return per page. If this argument is omitted, it defaults to
  260. * 25. The maximum allowed value is 100. Optional.
  261. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  262. * @return referrers from a domain to a photoset.
  263. * @throws JinxException if required parameters are missing, or if there are any errors.
  264. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotosetReferrers.html">flickr.stats.getPhotosetReferrers</a>
  265. */
  266. public Referrers getPhotosetReferrers(Date date, String domain, String photosetId, Integer perPage, Integer page)
  267. throws JinxException {
  268. JinxUtils.validateParams(date, domain);
  269. Map<String, String> params = new TreeMap<>();
  270. params.put("method", "flickr.stats.getPhotosetReferrers");
  271. params.put("date", JinxUtils.formatDateAsYMD(date));
  272. params.put("domain", domain);
  273. if (!JinxUtils.isNullOrEmpty(photosetId)) {
  274. params.put("photoset_id", photosetId);
  275. }
  276. if (perPage != null) {
  277. params.put("per_page", perPage.toString());
  278. }
  279. if (page != null) {
  280. params.put("page", page.toString());
  281. }
  282. return jinx.flickrGet(params, Referrers.class);
  283. }
  284. /**
  285. * Get the number of views on a photoset for a given date.
  286. *
  287. * This method requires authentication with 'read' permission.
  288. *
  289. * @param date stats will be returned for this date. Required.
  290. * @param photosetId id of the photoset to get stats for. Required.
  291. * @return number of views on a photoset for a given date.
  292. * @throws JinxException if required parameters are missing, or if there are any errors.
  293. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotosetStats.html">flickr.stats.getPhotosetStats</a>
  294. */
  295. public Stats getPhotosetStats(Date date, String photosetId) throws JinxException {
  296. JinxUtils.validateParams(date, photosetId);
  297. Map<String, String> params = new TreeMap<>();
  298. params.put("method", "flickr.stats.getPhotosetStats");
  299. params.put("date", JinxUtils.formatDateAsYMD(date));
  300. params.put("photoset_id", photosetId);
  301. return jinx.flickrGet(params, Stats.class);
  302. }
  303. /**
  304. * Get a list of referring domains for a photostream
  305. *
  306. * This method requires authentication with 'read' permission.
  307. *
  308. * @param date stats will be returned for this date. Required.
  309. * @param perPage nummber of domains to return per page. If this argument is omitted, it defaults
  310. * to 25. The maximum allowed value is 100. Optional.
  311. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  312. * @return referring domains for a photostream.
  313. * @throws JinxException if required parameters are missing, or if there are any errors.
  314. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotostreamDomains.html">flickr.stats.getPhotostreamDomains</a>
  315. */
  316. public Domains getPhotostreamDomains(Date date, Integer perPage, Integer page) throws JinxException {
  317. JinxUtils.validateParams(date);
  318. Map<String, String> params = new TreeMap<>();
  319. params.put("method", "flickr.stats.getPhotostreamDomains");
  320. params.put("date", JinxUtils.formatDateAsYMD(date));
  321. if (perPage != null) {
  322. params.put("per_page", perPage.toString());
  323. }
  324. if (page != null) {
  325. params.put("page", page.toString());
  326. }
  327. return jinx.flickrGet(params, Domains.class);
  328. }
  329. /**
  330. * Get a list of referrers from a given domain to a user's photostream
  331. *
  332. * This method requires authentication with 'read' permission.
  333. *
  334. * @param date stats will be returned for this date. Required.
  335. * @param domain domain to return referrers for. This should be a hostname (eg: "flickr.com")
  336. * with no protocol or pathname. Required.
  337. * @param perPage number of referrers to return per page. If this argument is omitted, it defaults
  338. * to 25. The maximum allowed value is 100. Optional.
  339. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  340. * @return referrers from a given domain to a user's photostream.
  341. * @throws JinxException if required parameters are missing, or if there are any errors.
  342. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotostreamReferrers.html">flickr.stats.getPhotostreamReferrers</a>
  343. */
  344. public Referrers getPhotostreamReferrers(Date date, String domain, Integer perPage, Integer page)
  345. throws JinxException {
  346. JinxUtils.validateParams(date, domain);
  347. Map<String, String> params = new TreeMap<>();
  348. params.put("method", "flickr.stats.getPhotostreamReferrers");
  349. params.put("date", JinxUtils.formatDateAsYMD(date));
  350. params.put("domain", domain);
  351. if (perPage != null) {
  352. params.put("per_page", perPage.toString());
  353. }
  354. if (page != null) {
  355. params.put("page", page.toString());
  356. }
  357. return jinx.flickrGet(params, Referrers.class);
  358. }
  359. /**
  360. * Get the number of views on a user's photostream for a given date.
  361. *
  362. * This method requires authentication with 'read' permission.
  363. *
  364. * @param date stats will be returned for this date. Required.
  365. * @return number of views on a user's photostream for a given date.
  366. * @throws JinxException if required parameters are missing or if there are any errors.
  367. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPhotostreamStats.html">flickr.stats.getPhotostreamStats</a>
  368. */
  369. public Stats getPhotostreamStats(Date date) throws JinxException {
  370. JinxUtils.validateParams(date);
  371. Map<String, String> params = new TreeMap<>();
  372. params.put("method", "flickr.stats.getPhotostreamStats");
  373. params.put("date", JinxUtils.formatDateAsYMD(date));
  374. return jinx.flickrGet(params, Stats.class);
  375. }
  376. /**
  377. * Returns a list of URLs for text files containing all your stats data (from November 26th 2007 onwards)
  378. * for the currently auth'd user.
  379. *
  380. * Please note, these files will only be available until June 1, 2010 Noon PDT.
  381. *
  382. * This method requires authentication with 'read' permission.
  383. *
  384. * @return stats object with csv files populated.
  385. * @throws JinxException if there are any errors.
  386. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getCSVFiles.html">flickr.stats.getCSVFiles</a>
  387. */
  388. public Stats getCSVFiles() throws JinxException {
  389. Map<String, String> params = new TreeMap<>();
  390. params.put("method", "flickr.stats.getCSVFiles");
  391. return jinx.flickrGet(params, Stats.class);
  392. }
  393. /**
  394. * List the photos with the most views, comments or favorites
  395. *
  396. * This method requires authentication with 'read' permission.
  397. *
  398. * @param date stats will be returned for this date. Optional.
  399. * @param sort order in which to sort returned photos. Defaults to views. Optional.
  400. * @param perPage number of referrers to return per page. If this argument is omitted, it defaults to
  401. * 25. The maximum allowed value is 100. Optional.
  402. * @param page page of results to return. If this argument is omitted, it defaults to 1. Optional.
  403. * @return photos with the most views, comments, or favorites.
  404. * @throws JinxException if there are any errors.
  405. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getPopularPhotos.html">flickr.stats.getPopularPhotos</a>
  406. */
  407. public Photos getPopularPhotos(Date date, JinxConstants.PopularPhotoSort sort, Integer perPage, Integer page) throws JinxException {
  408. Map<String, String> params = new TreeMap<>();
  409. params.put("method", "flickr.stats.getPopularPhotos");
  410. if (date != null) {
  411. params.put("date", JinxUtils.formatDateAsYMD(date));
  412. }
  413. if (sort != null) {
  414. params.put("sort", sort.toString());
  415. }
  416. if (perPage != null) {
  417. params.put("per_page", perPage.toString());
  418. }
  419. if (page != null) {
  420. params.put("page", page.toString());
  421. }
  422. return jinx.flickrGet(params, Photos.class);
  423. }
  424. /**
  425. * Get the overall view counts for an account
  426. *
  427. * This method requires authentication with 'read' permission.
  428. *
  429. * @param date stats will be returned for this date. Optional.
  430. * @return the overall view counts for an account.
  431. * @throws JinxException if there are any errors.
  432. * @see <a href="https://www.flickr.com/services/api/flickr.stats.getTotalViews.html">flickr.stats.getTotalViews</a>
  433. */
  434. public TotalViews getTotalViews(Date date) throws JinxException {
  435. Map<String, String> params = new TreeMap<>();
  436. params.put("method", "flickr.stats.getTotalViews");
  437. if (date != null) {
  438. params.put("date", JinxUtils.formatDateAsYMD(date));
  439. }
  440. return jinx.flickrGet(params, TotalViews.class);
  441. }
  442. }