mirror of
https://github.com/status-im/consul.git
synced 2025-01-24 20:51:10 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
97 lines
3.0 KiB
JavaScript
97 lines
3.0 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import RepositoryService from 'consul-ui/services/repository';
|
|
import isFolder from 'consul-ui/utils/isFolder';
|
|
import { get } from '@ember/object';
|
|
import { PRIMARY_KEY } from 'consul-ui/models/kv';
|
|
// import { ACCESS_LIST } from 'consul-ui/abilities/base';
|
|
import dataSource from 'consul-ui/decorators/data-source';
|
|
|
|
const modelName = 'kv';
|
|
export default class KvService extends RepositoryService {
|
|
getModelName() {
|
|
return modelName;
|
|
}
|
|
|
|
getPrimaryKey() {
|
|
return PRIMARY_KEY;
|
|
}
|
|
|
|
shouldReconcile(item, params) {
|
|
return super.shouldReconcile(...arguments) && item.Key.startsWith(params.id);
|
|
}
|
|
|
|
// this one gives you the full object so key,values and meta
|
|
@dataSource('/:partition/:ns/:dc/kv/:id')
|
|
async findBySlug(params, configuration = {}) {
|
|
let item;
|
|
if (isFolder(params.id)) {
|
|
// we only use findBySlug for a folder when we are looking to create a
|
|
// parent for a key for retrieving something Model shaped. Therefore we
|
|
// only use existing records or a fake record with the correct Key,
|
|
// which means we don't need to inspect permissions as its an already
|
|
// existing KV or a fake one
|
|
|
|
// TODO: This very much shouldn't be here,
|
|
// needs to eventually use ember-datas generateId thing
|
|
// in the meantime at least our fingerprinter
|
|
const uid = JSON.stringify([params.partition, params.ns, params.dc, params.id]);
|
|
item = this.store.peekRecord(this.getModelName(), uid);
|
|
if (!item) {
|
|
item = await this.create({
|
|
Key: params.id,
|
|
Datacenter: params.dc,
|
|
Namespace: params.ns,
|
|
Partition: params.partition,
|
|
});
|
|
}
|
|
} else {
|
|
if (params.id === '') {
|
|
item = await this.create({
|
|
Datacenter: params.dc,
|
|
Namespace: params.ns,
|
|
Partition: params.partition,
|
|
});
|
|
} else {
|
|
item = await super.findBySlug(...arguments);
|
|
}
|
|
}
|
|
// TODO: Whilst KV is using DataForm and DataForm does the model >
|
|
// changeset conversion a model > changeset conversion is not needed here
|
|
// until we move KV to just use DataWriter like the other new stuff
|
|
return item;
|
|
}
|
|
|
|
// this one only gives you keys
|
|
// https://www.consul.io/api/kv.html
|
|
@dataSource('/:partition/:ns/:dc/kvs/:id')
|
|
async findAllBySlug(params, configuration = {}) {
|
|
params.separator = '/';
|
|
if (params.id === '/') {
|
|
params.id = '';
|
|
}
|
|
|
|
/**/
|
|
// Temporarily revert to pre-1.10 UI functionality by not pre-checking backend
|
|
// permissions.
|
|
// This temporary measure should be removed again once https://github.com/hashicorp/consul/issues/11098
|
|
// has been resolved
|
|
|
|
// return this.authorizeBySlug(
|
|
// async () => {
|
|
let items = await this.findAll(...arguments);
|
|
const meta = items.meta;
|
|
items = items.filter((item) => params.id !== get(item, 'Key'));
|
|
items.meta = meta;
|
|
return items;
|
|
// },
|
|
// ACCESS_LIST,
|
|
// params
|
|
// );
|
|
/**/
|
|
}
|
|
}
|