summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/services/mr_widget_service.js
blob: 79c3d335679a5d8ac00799cfa417e84e3282d1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import Vue from 'vue';
import VueResource from 'vue-resource';

Vue.use(VueResource);

export default class MRWidgetService {
  constructor(endpoints) {
    this.mergeResource = Vue.resource(endpoints.mergePath);
    this.mergeCheckResource = Vue.resource(endpoints.statusPath);
    this.cancelAutoMergeResource = Vue.resource(endpoints.cancelAutoMergePath);
    this.removeWIPResource = Vue.resource(endpoints.removeWIPPath);
    this.removeSourceBranchResource = Vue.resource(endpoints.sourceBranchPath);
    this.deploymentsResource = Vue.resource(endpoints.ciEnvironmentsStatusPath);
    this.pollResource = Vue.resource(`${endpoints.statusPath}?basic=true`);
    this.mergeActionsContentResource = Vue.resource(endpoints.mergeActionsContentPath);
  }

  merge(data) {
    return this.mergeResource.save(data);
  }

  cancelAutomaticMerge() {
    return this.cancelAutoMergeResource.save();
  }

  removeWIP() {
    return this.removeWIPResource.save();
  }

  removeSourceBranch() {
    return this.removeSourceBranchResource.delete();
  }

  fetchDeployments() {
    return this.deploymentsResource.get();
  }

  poll() {
    return this.pollResource.get();
  }

  checkStatus() {
    return this.mergeCheckResource.get();
  }

  fetchMergeActionsContent() {
    return this.mergeActionsContentResource.get();
  }

  static stopEnvironment(url) {
    return Vue.http.post(url);
  }

  static fetchMetrics(metricsUrl) {
    return Vue.http.get(`${metricsUrl}.json`);
  }
}