/client/galaxy/scripts/mvc/citation/citation-model.js

https://bitbucket.org/galaxy/galaxy-central/ · JavaScript · 75 lines · 51 code · 9 blank · 15 comment · 2 complexity · 54308d53f19f814f2376d183dbfaf199 MD5 · raw file

  1. define([
  2. "libs/bibtex",
  3. "mvc/base-mvc",
  4. "utils/localization"
  5. ], function( parseBibtex, baseMVC, _l ){
  6. /* global Backbone */
  7. // we use amd here to require, but bibtex uses a global or commonjs pattern.
  8. // webpack will load via commonjs and plain requirejs will load as global. Check both
  9. parseBibtex = parseBibtex || window.BibtexParser;
  10. var logNamespace = 'citation';
  11. //==============================================================================
  12. /** @class model for tool citations.
  13. * @name Citation
  14. * @augments Backbone.Model
  15. */
  16. var Citation = Backbone.Model.extend( baseMVC.LoggableMixin ).extend( {
  17. _logNamespace : logNamespace,
  18. initialize: function() {
  19. var bibtex = this.get( 'content' );
  20. var entry = parseBibtex(bibtex).entries[0];
  21. this.entry = entry;
  22. this._fields = {};
  23. var rawFields = entry.Fields;
  24. for(var key in rawFields) {
  25. var value = rawFields[ key ];
  26. var lowerKey = key.toLowerCase();
  27. this._fields[ lowerKey ] = value;
  28. }
  29. },
  30. entryType: function() {
  31. return this.entry.EntryType;
  32. },
  33. fields: function() {
  34. return this._fields;
  35. }
  36. } );
  37. //==============================================================================
  38. /** @class Backbone collection of citations.
  39. */
  40. var BaseCitationCollection = Backbone.Collection.extend( baseMVC.LoggableMixin ).extend( {
  41. _logNamespace : logNamespace,
  42. /** root api url */
  43. urlRoot : Galaxy.root + 'api',
  44. partial : true, // Assume some tools in history/workflow may not be properly annotated yet.
  45. model : Citation,
  46. } );
  47. var HistoryCitationCollection = BaseCitationCollection.extend( {
  48. /** complete api url */
  49. url : function() {
  50. return this.urlRoot + '/histories/' + this.history_id + '/citations';
  51. }
  52. } );
  53. var ToolCitationCollection = BaseCitationCollection.extend( {
  54. /** complete api url */
  55. url : function() {
  56. return this.urlRoot + '/tools/' + this.tool_id + '/citations';
  57. },
  58. partial : false, // If a tool has citations, assume they are complete.
  59. } );
  60. //==============================================================================
  61. return {
  62. Citation : Citation,
  63. HistoryCitationCollection : HistoryCitationCollection,
  64. ToolCitationCollection: ToolCitationCollection
  65. };
  66. });