aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/RecipesStore.js
blob: 7f91049df90914888f20d2e594818ef0b07bf09e (plain) (blame)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { action, computed, observable } from 'mobx';

import Store from './lib/Store';
import CachedRequest from './lib/CachedRequest';
import Request from './lib/Request';
import { matchRoute } from '../helpers/routing-helpers';

const debug = require('debug')('Ferdi:RecipeStore');

export default class RecipesStore extends Store {
  @observable allRecipesRequest = new CachedRequest(this.api.recipes, 'all');

  @observable installRecipeRequest = new Request(this.api.recipes, 'install');

  @observable getRecipeUpdatesRequest = new Request(this.api.recipes, 'update');

  constructor(...args) {
    super(...args);

    // Register action handlers
    this.actions.recipe.install.listen(this._install.bind(this));
    this.actions.recipe.update.listen(this._update.bind(this));

    // Reactions
    this.registerReactions([
      this._checkIfRecipeIsInstalled.bind(this),
    ]);
  }

  setup() {
    return this.all;
  }

  @computed get all() {
    return this.allRecipesRequest.execute().result || [];
  }

  @computed get active() {
    const match = matchRoute('/settings/services/add/:id', this.stores.router.location.pathname);
    if (match) {
      const activeRecipe = this.one(match.id);
      if (activeRecipe) {
        return activeRecipe;
      }

      debug(`Recipe ${match.id} not installed`);
    }

    return null;
  }

  @computed get recipeIdForServices() {
    return this.stores.services.all.map(s => s.recipe.id);
  }

  one(id) {
    return this.all.find(recipe => recipe.id === id);
  }

  isInstalled(id) {
    return !!this.one(id);
  }

  // Actions
  @action async _install({ recipeId }) {
    const recipe = await this.installRecipeRequest.execute(recipeId)._promise;
    await this.allRecipesRequest.invalidate({ immediately: true })._promise;

    return recipe;
  }

  @action async _update() {
    const recipeIds = this.recipeIdForServices;
    const recipes = {};

    // Hackfix, reference this.all to fetch services
    debug(`Check Recipe updates for ${this.all.map(recipe => recipe.id)}`);

    recipeIds.forEach((r) => {
      const recipe = this.one(r);
      recipes[r] = recipe.version;
    });

    if (Object.keys(recipes).length === 0) return;

    const updates = await this.getRecipeUpdatesRequest.execute(recipes)._promise;
    const length = updates.length - 1;
    const syncUpdate = async (i) => {
      const update = updates[i];

      this.actions.recipe.install({ recipeId: update });
      await this.installRecipeRequest._promise;

      this.installRecipeRequest.reset();

      if (i === length) {
        this.stores.ui.showServicesUpdatedInfoBar = true;
      } else if (i < length) {
        syncUpdate(i + 1);
      }
    };

    if (length >= 0) {
      syncUpdate(0);
    }
  }

  async _checkIfRecipeIsInstalled() {
    const { router } = this.stores;

    const match = matchRoute('/settings/services/add/:id', router.location.pathname);
    if (match) {
      const recipeId = match.id;

      if (!this.stores.recipes.isInstalled(recipeId)) {
        router.push('/settings/recipes');
        debug(`Recipe ${recipeId} is not installed, trying to install it`);

        const recipe = await this.installRecipeRequest.execute(recipeId)._promise;
        if (recipe) {
          await this.allRecipesRequest.invalidate({ immediately: true })._promise;
          router.push(`/settings/services/add/${recipeId}`);
        } else {
          router.push('/settings/recipes');
        }
      }
    }
  }
}