All files / src/api/storage service-accounts.js

100% Statements 6/6
100% Branches 3/3
100% Functions 6/6
100% Lines 6/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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                                                                                          4x                                 3x   1x       1x       1x       1x        
// @flow
 
import { type Caller } from '.';
 
/**
 * A description of a service account.
 */
export type ServiceAccount = {
  id: string,
  name: string,
  hyperscaler: string,
  credentials: string,
  region: {
    id: string,
    name: string,
  },
  created: Date,
  updated: Date,
  deleted: ?Date,
};
 
/**
 * Parameters passed when creating a service account.
 */
type CreateServiceAccountValues = any;
 
/**
 * Parameters passed when updating a storage account.
 */
type UpdateServiceAccountValues = any;
 
/**
 * Manage service accounts.
 */
export interface ServiceAccountsAPI {
  list(): Promise<ServiceAccount[]>;
  create(values: CreateServiceAccountValues): Promise<ServiceAccount>;
  update(
    id: string,
    values: UpdateServiceAccountValues,
  ): Promise<ServiceAccount>;
  delete(id: string): Promise<any>;
}
 
function into(serviceAccount: any): ServiceAccount {
  return {
    id: serviceAccount.uuid,
    name: serviceAccount.name,
    hyperscaler: serviceAccount.hyperscaler,
    credentials: serviceAccount.credentials,
    region: {
      id: serviceAccount.regionUUID,
      name: serviceAccount.regionName,
    },
    created: new Date(serviceAccount.createdAt),
    updated: new Date(serviceAccount.updatedAt),
    deleted:
      (serviceAccount.deletedAt && new Date(serviceAccount.deletedAt)) || null,
  };
}
 
export default function serviceAccounts(call: Caller): ServiceAccountsAPI {
  return {
    async list() {
      return (await call('GET', 'serviceaccount')).map(into);
    },
 
    async create(values) {
      return into(await call('POST', `serviceaccount`, values));
    },
 
    async update(id, values) {
      return into(await call('PUT', `serviceaccount/${id}`, values));
    },
 
    async delete(id) {
      return call('DELETE', `serviceaccount/${id}`);
    },
  };
}