UNPKG

@datocms/cma-client

Version:
182 lines (168 loc) 7.2 kB
import { type LogLevel, pollJobResult, request, } from '@datocms/rest-client-utils'; import type { JobResult } from './SimpleSchemaTypes'; import * as Resources from './resources'; export type RequestOptions = { method: 'GET' | 'PUT' | 'POST' | 'DELETE'; url: string; queryParams?: Record<string, unknown>; body?: unknown; preCallStack?: string; }; export type ClientConfigOptions = { /** The API token to use to perform requests */ apiToken: string | null; /** The base URL of the server. Defaults to https://site-api.datocms.com */ baseUrl?: string; /** The environment in which to perform every API request */ environment?: string; /** Configure request timeout (in ms). When timeout is reached and `autoRetry` is active, a new request will be performed. Otherwise, a `TimeoutError` will be raised. Defaults to `30000` */ requestTimeout?: number; /** Any extra header to add to every API request */ extraHeaders?: Record<string, string>; /** Level of logging */ logLevel?: LogLevel; /** Function to use to log. Defaults to `console.log` */ logFn?: (message: string) => void; /** Whether to automatically retry failed requests (ie. timeout, rate-limiting, etc.), with a linear incremental backoff. Defaults to `true` */ autoRetry?: boolean; /** If fetch() is not available in your environment, you can provide it */ fetchFn?: Parameters<typeof request>[0]['fetchFn']; }; export class Client { static readonly defaultBaseUrl = 'https://site-api.datocms.com'; roles: Resources.Role; users: Resources.User; ssoUsers: Resources.SsoUser; auditLogEvents: Resources.AuditLogEvent; menuItems: Resources.MenuItem; schemaMenuItems: Resources.SchemaMenuItem; uploadCollections: Resources.UploadCollection; itemTypes: Resources.ItemType; fields: Resources.Field; fieldsets: Resources.Fieldset; session: Resources.Session; accessTokens: Resources.AccessToken; plugins: Resources.Plugin; jobResults: Resources.JobResult; subscriptionLimits: Resources.SubscriptionLimit; subscriptionFeatures: Resources.SubscriptionFeature; buildEvents: Resources.BuildEvent; items: Resources.Item; itemVersions: Resources.ItemVersion; uploads: Resources.Upload; uploadRequest: Resources.UploadRequest; uploadTracks: Resources.UploadTrack; scheduledPublication: Resources.ScheduledPublication; scheduledUnpublishing: Resources.ScheduledUnpublishing; searchResults: Resources.SearchResult; environments: Resources.Environment; maintenanceMode: Resources.MaintenanceMode; webhooks: Resources.Webhook; webhookCalls: Resources.WebhookCall; buildTriggers: Resources.BuildTrigger; itemTypeFilters: Resources.ItemTypeFilter; uploadFilters: Resources.UploadFilter; siteInvitations: Resources.SiteInvitation; editingSessions: Resources.EditingSession; ssoGroups: Resources.SsoGroup; ssoSettings: Resources.SsoSettings; emojiSuggestions: Resources.EmojiSuggestions; whiteLabelSettings: Resources.WhiteLabelSettings; publicInfo: Resources.PublicInfo; dailyUsages: Resources.DailyUsage; usageCounters: Resources.UsageCounter; uploadTags: Resources.UploadTag; uploadSmartTags: Resources.UploadSmartTag; site: Resources.Site; workflows: Resources.Workflow; config: ClientConfigOptions; jobResultsFetcher?: (jobId: string) => Promise<JobResult>; private cachedEventsChannelName: string | undefined; constructor(config: ClientConfigOptions) { this.config = config; this.roles = new Resources.Role(this); this.users = new Resources.User(this); this.ssoUsers = new Resources.SsoUser(this); this.auditLogEvents = new Resources.AuditLogEvent(this); this.menuItems = new Resources.MenuItem(this); this.schemaMenuItems = new Resources.SchemaMenuItem(this); this.uploadCollections = new Resources.UploadCollection(this); this.itemTypes = new Resources.ItemType(this); this.fields = new Resources.Field(this); this.fieldsets = new Resources.Fieldset(this); this.session = new Resources.Session(this); this.accessTokens = new Resources.AccessToken(this); this.plugins = new Resources.Plugin(this); this.jobResults = new Resources.JobResult(this); this.subscriptionLimits = new Resources.SubscriptionLimit(this); this.subscriptionFeatures = new Resources.SubscriptionFeature(this); this.buildEvents = new Resources.BuildEvent(this); this.items = new Resources.Item(this); this.itemVersions = new Resources.ItemVersion(this); this.uploads = new Resources.Upload(this); this.uploadRequest = new Resources.UploadRequest(this); this.uploadTracks = new Resources.UploadTrack(this); this.scheduledPublication = new Resources.ScheduledPublication(this); this.scheduledUnpublishing = new Resources.ScheduledUnpublishing(this); this.searchResults = new Resources.SearchResult(this); this.environments = new Resources.Environment(this); this.maintenanceMode = new Resources.MaintenanceMode(this); this.webhooks = new Resources.Webhook(this); this.webhookCalls = new Resources.WebhookCall(this); this.buildTriggers = new Resources.BuildTrigger(this); this.itemTypeFilters = new Resources.ItemTypeFilter(this); this.uploadFilters = new Resources.UploadFilter(this); this.siteInvitations = new Resources.SiteInvitation(this); this.editingSessions = new Resources.EditingSession(this); this.ssoGroups = new Resources.SsoGroup(this); this.ssoSettings = new Resources.SsoSettings(this); this.emojiSuggestions = new Resources.EmojiSuggestions(this); this.whiteLabelSettings = new Resources.WhiteLabelSettings(this); this.publicInfo = new Resources.PublicInfo(this); this.dailyUsages = new Resources.DailyUsage(this); this.usageCounters = new Resources.UsageCounter(this); this.uploadTags = new Resources.UploadTag(this); this.uploadSmartTags = new Resources.UploadSmartTag(this); this.site = new Resources.Site(this); this.workflows = new Resources.Workflow(this); } get baseUrl() { return this.config.baseUrl || Client.defaultBaseUrl; } request<T>(options: RequestOptions) { return request<T>({ ...this.config, ...options, logFn: this.config.logFn || console.log, userAgent: '@datocms/cma-client v4.0.1', baseUrl: this.baseUrl, preCallStack: new Error().stack, extraHeaders: { ...(this.config.extraHeaders || {}), ...(this.config.environment ? { 'X-Environment': this.config.environment } : {}), 'X-API-Version': '3', }, fetchJobResult: (jobId: string) => { return this.jobResultsFetcher ? this.jobResultsFetcher(jobId) : pollJobResult(() => this.jobResults.find(jobId)); }, }); } async eventsChannelName() { if (this.cachedEventsChannelName) { return this.cachedEventsChannelName; } const { data: site } = await this.site.rawFind(); this.cachedEventsChannelName = this.config.environment ? `private-site-${site.id}-environment-${this.config.environment}` : `private-site-${site.id}`; return this.cachedEventsChannelName; } }