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

https://bitbucket.org/galaxy/galaxy-central/ · JavaScript · 126 lines · 76 code · 19 blank · 31 comment · 9 complexity · 17ad5c07a17e903cd221337f557b0b47 MD5 · raw file

  1. define([
  2. 'libs/underscore',
  3. 'libs/backbone',
  4. 'mvc/base-mvc',
  5. 'utils/localization'
  6. ], function( _, Backbone, baseMVC, _l ){
  7. var logNamespace = 'user';
  8. //==============================================================================
  9. /** @class Model for a Galaxy user (including anonymous users).
  10. * @name User
  11. */
  12. var User = Backbone.Model.extend( baseMVC.LoggableMixin ).extend(
  13. /** @lends User.prototype */{
  14. _logNamespace : logNamespace,
  15. /** API location for this resource */
  16. urlRoot : function(){ return Galaxy.root + 'api/users'; },
  17. /** Model defaults
  18. * Note: don't check for anon-users with the username as the default is '(anonymous user)'
  19. * a safer method is if( !user.get( 'email' ) ) -> anon user
  20. */
  21. defaults : /** @lends User.prototype */{
  22. id : null,
  23. username : '(' + _l( "anonymous user" ) + ')',
  24. email : "",
  25. total_disk_usage : 0,
  26. nice_total_disk_usage : "",
  27. quota_percent : null,
  28. is_admin : false
  29. },
  30. /** Set up and bind events
  31. * @param {Object} data Initial model data.
  32. */
  33. initialize : function( data ){
  34. this.log( 'User.initialize:', data );
  35. this.on( 'loaded', function( model, resp ){ this.log( this + ' has loaded:', model, resp ); });
  36. this.on( 'change', function( model, data ){ this.log( this + ' has changed:', model, data.changes ); });
  37. },
  38. isAnonymous : function(){
  39. return ( !this.get( 'email' ) );
  40. },
  41. isAdmin : function(){
  42. return ( this.get( 'is_admin' ) );
  43. },
  44. /** Load a user with the API using an id.
  45. * If getting an anonymous user or no access to a user id, pass the User.CURRENT_ID_STR
  46. * (e.g. 'current') and the API will return the current transaction's user data.
  47. * @param {String} idOrCurrent encoded user id or the User.CURRENT_ID_STR
  48. * @param {Object} options hash to pass to Backbone.Model.fetch. Can contain success, error fns.
  49. * @fires loaded when the model has been loaded from the API, passing the newModel and AJAX response.
  50. */
  51. loadFromApi : function( idOrCurrent, options ){
  52. idOrCurrent = idOrCurrent || User.CURRENT_ID_STR;
  53. options = options || {};
  54. var model = this,
  55. userFn = options.success;
  56. /** @ignore */
  57. options.success = function( newModel, response ){
  58. model.trigger( 'loaded', newModel, response );
  59. if( userFn ){ userFn( newModel, response ); }
  60. };
  61. // requests for the current user must have a sep. constructed url (fetch don't work, ma)
  62. if( idOrCurrent === User.CURRENT_ID_STR ){
  63. options.url = this.urlRoot + '/' + User.CURRENT_ID_STR;
  64. }
  65. return Backbone.Model.prototype.fetch.call( this, options );
  66. },
  67. /** Clears all data from the sessionStorage.
  68. */
  69. clearSessionStorage : function(){
  70. for( var key in sessionStorage ){
  71. //TODO: store these under the user key so we don't have to do this
  72. // currently only history
  73. if( key.indexOf( 'history:' ) === 0 ){
  74. sessionStorage.removeItem( key );
  75. } else if( key === 'history-panel' ){
  76. sessionStorage.removeItem( key );
  77. }
  78. }
  79. },
  80. /** string representation */
  81. toString : function(){
  82. var userInfo = [ this.get( 'username' ) ];
  83. if( this.get( 'id' ) ){
  84. userInfo.unshift( this.get( 'id' ) );
  85. userInfo.push( this.get( 'email' ) );
  86. }
  87. return 'User(' + userInfo.join( ':' ) + ')';
  88. }
  89. });
  90. // string to send to tell server to return this transaction's user (see api/users.py)
  91. User.CURRENT_ID_STR = 'current';
  92. // class method to load the current user via the api and return that model
  93. User.getCurrentUserFromApi = function( options ){
  94. var currentUser = new User();
  95. currentUser.loadFromApi( User.CURRENT_ID_STR, options );
  96. return currentUser;
  97. };
  98. // (stub) collection for users (shouldn't be common unless admin UI)
  99. var UserCollection = Backbone.Collection.extend( baseMVC.LoggableMixin ).extend({
  100. model : User,
  101. urlRoot : function(){ return Galaxy.root + 'api/users'; },
  102. //logger : console,
  103. });
  104. //==============================================================================
  105. return {
  106. User : User
  107. };});