128 lines
3.7 KiB
JavaScript
128 lines
3.7 KiB
JavaScript
import { durationFrom, configKeys, compact } from 'travis/utils/helpers';
|
|
import configKeysMap from 'travis/utils/keys-map';
|
|
import Ember from 'ember';
|
|
import Model from 'travis/models/model';
|
|
import DurationCalculations from 'travis/utils/duration-calculations';
|
|
import DS from 'ember-data';
|
|
|
|
export default Model.extend(DurationCalculations, {
|
|
ajax: Ember.inject.service(),
|
|
state: DS.attr(),
|
|
number: DS.attr('number'),
|
|
message: DS.attr('string'),
|
|
_duration: DS.attr('number'),
|
|
_config: DS.attr('object'),
|
|
_startedAt: DS.attr(),
|
|
_finishedAt: DS.attr('string'),
|
|
pullRequest: DS.attr('boolean'),
|
|
pullRequestTitle: DS.attr(),
|
|
pullRequestNumber: DS.attr('number'),
|
|
eventType: DS.attr('string'),
|
|
branch: DS.belongsTo('branch', { async: false, inverse: 'builds' }),
|
|
repo: DS.belongsTo('repo', { async: true }),
|
|
commit: DS.belongsTo('commit', { async: false }),
|
|
jobs: DS.hasMany('job', { async: true }),
|
|
|
|
config: function() {
|
|
var config;
|
|
if (config = this.get('_config')) {
|
|
return compact(config);
|
|
} else if (this.get('currentState.stateName') !== 'root.loading') {
|
|
if (this.get('isFetchingConfig')) {
|
|
return;
|
|
}
|
|
this.set('isFetchingConfig', true);
|
|
return this.reload();
|
|
}
|
|
}.property('_config'),
|
|
|
|
isPullRequest: function() {
|
|
return this.get('eventType') === 'pull_request' || this.get('pullRequest');
|
|
}.property('eventType'),
|
|
|
|
isMatrix: function() {
|
|
return this.get('jobs.length') > 1;
|
|
}.property('jobs.length'),
|
|
|
|
isFinished: function() {
|
|
var ref;
|
|
return (ref = this.get('state')) === 'passed' || ref === 'failed' || ref === 'errored' || ref === 'canceled';
|
|
}.property('state'),
|
|
|
|
notStarted: function() {
|
|
var ref;
|
|
return (ref = this.get('state')) === 'queued' || ref === 'created' || ref === 'received';
|
|
}.property('state'),
|
|
|
|
startedAt: function() {
|
|
if (!this.get('notStarted')) {
|
|
return this.get('_startedAt');
|
|
}
|
|
}.property('_startedAt', 'notStarted'),
|
|
|
|
finishedAt: function() {
|
|
if (!this.get('notStarted')) {
|
|
return this.get('_finishedAt');
|
|
}
|
|
}.property('_finishedAt', 'notStarted'),
|
|
|
|
requiredJobs: function() {
|
|
return this.get('jobs').filter(function(data) {
|
|
return !data.get('allowFailure');
|
|
});
|
|
}.property('jobs.@each.allowFailure'),
|
|
|
|
allowedFailureJobs: function() {
|
|
return this.get('jobs').filter(function(data) {
|
|
return data.get('allowFailure');
|
|
});
|
|
}.property('jobs.@each.allowFailure'),
|
|
|
|
rawConfigKeys: function() {
|
|
var keys;
|
|
keys = [];
|
|
this.get('jobs').forEach(function(job) {
|
|
return configKeys(job.get('config')).forEach(function(key) {
|
|
if (!keys.contains(key)) {
|
|
return keys.pushObject(key);
|
|
}
|
|
});
|
|
});
|
|
return keys;
|
|
}.property('config', 'jobs.@each.config'),
|
|
|
|
configKeys: function() {
|
|
var headers, keys;
|
|
keys = this.get('rawConfigKeys');
|
|
headers = ['Job', 'Duration', 'Finished'];
|
|
return $.map(headers.concat(keys), function(key) {
|
|
if (configKeysMap.hasOwnProperty(key)) {
|
|
return configKeysMap[key];
|
|
} else {
|
|
return key;
|
|
}
|
|
});
|
|
}.property('rawConfigKeys.length'),
|
|
|
|
canCancel: function() {
|
|
return this.get('jobs').filterBy('canCancel').length;
|
|
}.property('jobs.@each.canCancel'),
|
|
|
|
canRestart: Ember.computed.alias('isFinished'),
|
|
|
|
cancel() {
|
|
return this.get('ajax').post("/builds/" + (this.get('id')) + "/cancel");
|
|
},
|
|
|
|
restart() {
|
|
return this.get('ajax').post("/builds/" + (this.get('id')) + "/restart");
|
|
},
|
|
|
|
formattedFinishedAt: function() {
|
|
var finishedAt;
|
|
if (finishedAt = this.get('finishedAt')) {
|
|
return moment(finishedAt).format('lll');
|
|
}
|
|
}.property('finishedAt')
|
|
});
|