aboutsummaryrefslogtreecommitdiff
path: root/node_modules/workbox-precaching/models/PrecachedDetailsModel.mjs
blob: 55f1420d130d7b7fdced02499a8776b728a349da (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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
  Copyright 2017 Google Inc.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      https://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

import {DBWrapper} from 'workbox-core/_private/DBWrapper.mjs';
import '../_version.mjs';

// Allows minifier to mangle this name
const REVISON_IDB_FIELD = 'revision';
const URL_IDB_FIELD = 'url';
const DB_STORE_NAME = 'precached-details-models';
/**
 * This model will track the relevant information of entries that
 * are cached and their matching revision details.
 *
 * @private
 */
class PrecachedDetailsModel {
  /**
   * Construct a new model for a specific cache.
   *
   * @param {string} dbName
   * @private
   */
  constructor(dbName) {
    // This ensures the db name contains only letters, numbers, '-', '_' and '$'
    const filteredDBName = dbName.replace(/[^\w-]/g, '_');
    this._db = new DBWrapper(filteredDBName, 2, {
      onupgradeneeded: this._handleUpgrade,
    });
  }

  /**
   * Should perform an upgrade of indexedDB.
   *
   * @param {Event} evt
   *
   * @private
   */
  _handleUpgrade(evt) {
    const db = evt.target.result;
    if (evt.oldVersion < 2) {
      // IndexedDB version 1 used both 'workbox-precaching' and
      // 'precached-details-model' before upgrading to version 2.
      // Delete them and create a new store with latest schema.
      if (db.objectStoreNames.contains('workbox-precaching')) {
        db.deleteObjectStore('workbox-precaching');
      }
      if (db.objectStoreNames.contains(DB_STORE_NAME)) {
        db.deleteObjectStore(DB_STORE_NAME);
      }
    }
    db.createObjectStore(DB_STORE_NAME);
  }

  /**
   * Check if an entry is already cached. Returns false if
   * the entry isn't cached or the revision has changed.
   *
   * @param {string} cacheName
   * @param {PrecacheEntry} precacheEntry
   * @return {boolean}
   *
   * @private
   */
  async _isEntryCached(cacheName, precacheEntry) {
    const revisionDetails = await this._getRevision(precacheEntry._entryId);
    if (revisionDetails !== precacheEntry._revision) {
      return false;
    }

    const openCache = await caches.open(cacheName);
    const cachedResponse = await openCache.match(precacheEntry._cacheRequest);
    return !!cachedResponse;
  }

  /**
   * @return {Promise<Array>}
   *
   * @private
   */
  async _getAllEntries() {
    return await this._db.getAllMatching(DB_STORE_NAME, {
      includeKeys: true,
    });
  }

  /**
   * Get the current revision details.
   *
   * @param {Object} entryId
   * @return {Promise<string|null>}
   *
   * @private
   */
  async _getRevision(entryId) {
    const data = await this._db.get(DB_STORE_NAME, entryId);
    return data ? data[REVISON_IDB_FIELD] : null;
  }

  /**
   * Add an entry to the details model.
   *
   * @param {PrecacheEntry} precacheEntry
   *
   * @private
   */
  async _addEntry(precacheEntry) {
    await this._db.put(
      DB_STORE_NAME,
      {
        [REVISON_IDB_FIELD]: precacheEntry._revision,
        [URL_IDB_FIELD]: precacheEntry._cacheRequest.url,
      },
      precacheEntry._entryId
    );
  }

  /**
   * Delete entry from details model.
   *
   * @param {string} entryId
   *
   * @private
   */
  async _deleteEntry(entryId) {
    await this._db.delete(DB_STORE_NAME, entryId);
  }
}

export default PrecachedDetailsModel;