RocketChat/Rocket.Chat.Ops

View on GitHub
hubots/hubot-gitsy/src/gitlab/lib/Models/ProjectMilestones.js

Summary

Maintainability
D
3 days
Test Coverage
(function() {
  var BaseModel, ProjectMilestones, Utils,
    bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
    hasProp = {}.hasOwnProperty;

  BaseModel = require('../BaseModel');

  Utils = require('../Utils');

  ProjectMilestones = (function(superClass) {
    var list;

    extend(ProjectMilestones, superClass);

    function ProjectMilestones() {
      this.update = bind(this.update, this);
      this.add = bind(this.add, this);
      this.show = bind(this.show, this);
      this.all = bind(this.all, this);
      return ProjectMilestones.__super__.constructor.apply(this, arguments);
    }

    list = function(projectId, fn) {
      if (fn == null) {
        fn = null;
      }
      console.log('DEPRECATED: milestone.list. Use milestone.all instead');
      return this.all.apply(this, arguments);
    };

    ProjectMilestones.prototype.all = function(projectId, fn) {
      var cb, data, params;
      if (fn == null) {
        fn = null;
      }
      this.debug("Projects::Milestones::all()");
      params = {};
      if (params.page == null) {
        params.page = 1;
      }
      if (params.per_page == null) {
        params.per_page = 100;
      }
      data = [];
      cb = (function(_this) {
        return function(err, retData) {
          if (err) {
            if (fn) {
              return fn(retData || data);
            }
          } else if (retData.length === params.per_page) {
            _this.debug("Recurse Projects::Milestones::all()");
            data = data.concat(retData);
            params.page++;
            return _this.get("projects/" + (Utils.parseProjectId(projectId)) + "/milestones", params, cb);
          } else {
            data = data.concat(retData);
            if (fn) {
              return fn(data);
            }
          }
        };
      })(this);
      return this.get("projects/" + (Utils.parseProjectId(projectId)) + "/milestones", params, cb);
    };

    ProjectMilestones.prototype.show = function(projectId, milestoneId, fn) {
      if (fn == null) {
        fn = null;
      }
      this.debug("Projects::milestone()");
      return this.get("projects/" + (Utils.parseProjectId(projectId)) + "/milestones/" + (parseInt(milestoneId)), (function(_this) {
        return function(data) {
          if (fn) {
            return fn(data);
          }
        };
      })(this));
    };

    ProjectMilestones.prototype.add = function(projectId, title, description, due_date, fn) {
      var params;
      if (fn == null) {
        fn = null;
      }
      this.debug("Projects::addMilestone()");
      params = {
        id: Utils.parseProjectId(projectId),
        title: title,
        description: description,
        due_date: due_date
      };
      return this.post("projects/" + (Utils.parseProjectId(projectId)) + "/milestones", params, (function(_this) {
        return function(data) {
          if (fn) {
            return fn(data);
          }
        };
      })(this));
    };

    ProjectMilestones.prototype.update = function(projectId, milestoneId, title, description, due_date, state_event, fn) {
      var params;
      if (fn == null) {
        fn = null;
      }
      this.debug("Projects::editMilestone()");
      params = {
        id: Utils.parseProjectId(projectId),
        title: title,
        description: description,
        due_date: due_date,
        state_event: state_event
      };
      return this.put("projects/" + (Utils.parseProjectId(projectId)) + "/milestones/" + (parseInt(milestoneId)), params, (function(_this) {
        return function(data) {
          if (fn) {
            return fn(data);
          }
        };
      })(this));
    };

    return ProjectMilestones;

  })(BaseModel);

  module.exports = function(client) {
    return new ProjectMilestones(client);
  };

}).call(this);