-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[content management / maps] Content management / Saved object schema abstraction #155342
Merged
mattkime
merged 37 commits into
elastic:main
from
mattkime:content_management_code_abstraction
Apr 27, 2023
Merged
Changes from 35 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
d601dbd
abstract types
mattkime 9e06b50
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine 83b1ff5
[CI] Auto-commit changed files from 'node scripts/generate codeowners'
kibanamachine 86e3a85
fix types
mattkime 8daec60
Merge branch 'content_management_api_so_type_abstraction' of github.c…
mattkime aea2173
remove comment
mattkime 28548f7
fix partial types
mattkime 44ca8ee
add readme content
mattkime 5b8eb84
Merge branch 'main' into content_management_api_so_type_abstraction
mattkime 3ab8198
simplify type export
mattkime e10b297
simplify type export
mattkime 055679a
simplify type export
mattkime ac841b5
Merge branch 'main' into content_management_api_so_type_abstraction
mattkime df3fd85
Merge branch 'main' into content_management_api_so_type_abstraction
mattkime eee1744
move Option types external to main interface
mattkime 530c23d
[CI] Auto-commit changed files from 'node scripts/generate codeowners'
kibanamachine 8f9c939
schema abstraction
mattkime 5303a6b
schema abstraction
mattkime 10048c5
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine c473549
[CI] Auto-commit changed files from 'node scripts/generate codeowners'
kibanamachine b3da60a
Update CODEOWNERS
mattkime f32ecb4
Update kibana.jsonc
mattkime 64c4733
more complete types for SO Options
mattkime 907ce41
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine c3d7211
fix SO types for config
mattkime 48756d5
Merge branch 'content_management_api_so_type_abstraction' of github.c…
mattkime dd9d980
Merge branch 'main' into content_management_api_so_type_abstraction
mattkime a357f39
Merge branch 'content_management_api_so_type_abstraction' into conten…
mattkime ef07c0a
[CI] Auto-commit changed files from 'node scripts/generate codeowners'
kibanamachine 45642ea
cleanup
mattkime bd1ca70
Merge branch 'content_management_code_abstraction' of github.com:matt…
mattkime 744c083
more complete schema
mattkime 63ffe47
Merge branch 'main' into content_management_code_abstraction
mattkime 2a85688
add notes
mattkime 0d9d35d
remove mistaken duplicate types
mattkime dda5f23
better importing of partial schema
mattkime f96cf21
Merge branch 'main' into content_management_code_abstraction
mattkime File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
import { schema, ObjectType } from '@kbn/config-schema'; | ||
|
||
export const apiError = schema.object({ | ||
error: schema.string(), | ||
message: schema.string(), | ||
statusCode: schema.number(), | ||
metadata: schema.object({}, { unknowns: 'allow' }), | ||
}); | ||
|
||
export const referenceSchema = schema.object( | ||
{ | ||
name: schema.maybe(schema.string()), | ||
type: schema.string(), | ||
id: schema.string(), | ||
}, | ||
{ unknowns: 'forbid' } | ||
); | ||
|
||
export const referencesSchema = schema.arrayOf(referenceSchema); | ||
|
||
export const savedObjectSchema = (attributesSchema: ObjectType<any>) => | ||
schema.object( | ||
{ | ||
id: schema.string(), | ||
type: schema.string(), | ||
version: schema.maybe(schema.string()), | ||
createdAt: schema.maybe(schema.string()), | ||
updatedAt: schema.maybe(schema.string()), | ||
error: schema.maybe(apiError), | ||
attributes: attributesSchema, | ||
references: referencesSchema, | ||
namespaces: schema.maybe(schema.arrayOf(schema.string())), | ||
originId: schema.maybe(schema.string()), | ||
}, | ||
{ unknowns: 'allow' } | ||
); | ||
|
||
export const objectTypeToGetResultSchema = (soSchema: ObjectType<any>) => | ||
schema.object( | ||
{ | ||
item: soSchema, | ||
meta: schema.object( | ||
{ | ||
outcome: schema.oneOf([ | ||
schema.literal('exactMatch'), | ||
schema.literal('aliasMatch'), | ||
schema.literal('conflict'), | ||
]), | ||
aliasTargetId: schema.maybe(schema.string()), | ||
aliasPurpose: schema.maybe( | ||
schema.oneOf([ | ||
schema.literal('savedObjectConversion'), | ||
schema.literal('savedObjectImport'), | ||
]) | ||
), | ||
}, | ||
{ unknowns: 'forbid' } | ||
), | ||
}, | ||
{ unknowns: 'forbid' } | ||
); | ||
|
||
// its recommended to create a subset of this schema for stricter validation | ||
export const createOptionsSchema = schema.object({ | ||
id: schema.maybe(schema.string()), | ||
references: schema.maybe(referencesSchema), | ||
overwrite: schema.maybe(schema.boolean()), | ||
version: schema.maybe(schema.string()), | ||
refresh: schema.maybe(schema.boolean()), | ||
initialNamespaces: schema.maybe(schema.arrayOf(schema.string())), | ||
}); | ||
|
||
export const schemaAndOr = schema.oneOf([schema.literal('AND'), schema.literal('OR')]); | ||
|
||
// its recommended to create a subset of this schema for stricter validation | ||
export const searchOptionsSchema = schema.object({ | ||
page: schema.maybe(schema.number()), | ||
perPage: schema.maybe(schema.number()), | ||
sortField: schema.maybe(schema.string()), | ||
sortOrder: schema.maybe(schema.oneOf([schema.literal('asc'), schema.literal('desc')])), | ||
fields: schema.maybe(schema.arrayOf(schema.string())), | ||
search: schema.maybe(schema.string()), | ||
searchFields: schema.maybe(schema.oneOf([schema.string(), schema.arrayOf(schema.string())])), | ||
rootSearchFields: schema.maybe(schema.arrayOf(schema.string())), | ||
|
||
hasReference: schema.maybe(schema.oneOf([referenceSchema, schema.arrayOf(referenceSchema)])), | ||
hasReferenceOperator: schema.maybe(schemaAndOr), | ||
hasNoReference: schema.maybe(schema.oneOf([referenceSchema, schema.arrayOf(referenceSchema)])), | ||
hasNoReferenceOperator: schema.maybe(schemaAndOr), | ||
defaultSearchOperator: schema.maybe(schemaAndOr), | ||
namespaces: schema.maybe(schema.arrayOf(schema.string())), | ||
type: schema.maybe(schema.string()), | ||
|
||
filter: schema.maybe(schema.string()), | ||
pit: schema.maybe( | ||
schema.object({ id: schema.string(), keepAlive: schema.maybe(schema.string()) }) | ||
), | ||
}); | ||
|
||
// its recommended to create a subset of this schema for stricter validation | ||
export const updateOptionsSchema = (attributesSchema: ObjectType<any>) => | ||
schema.object({ | ||
references: schema.maybe(referencesSchema), | ||
version: schema.maybe(schema.string()), | ||
refresh: schema.maybe(schema.oneOf([schema.boolean(), schema.literal('wait_for')])), | ||
upsert: schema.maybe(savedObjectSchema(attributesSchema)), | ||
retryOnConflict: schema.maybe(schema.number()), | ||
}); | ||
|
||
export const createResultSchema = (soSchema: ObjectType<any>) => | ||
schema.object( | ||
{ | ||
item: soSchema, | ||
}, | ||
{ unknowns: 'forbid' } | ||
); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be better then to expose the properties separately for composing the schema then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thats a good idea, will do.