mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-07 20:40:05 +00:00
Compare commits
7 Commits
viyaNewFil
...
v4.16.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
03b7592521 | ||
|
|
ba64ed1f20 | ||
|
|
480510b980 | ||
|
|
8c7767a36d | ||
|
|
f335be344e | ||
|
|
680f5a4872 | ||
|
|
c42a20a8ee |
19
.github/workflows/server-tests.yml
vendored
19
.github/workflows/server-tests.yml
vendored
@@ -79,14 +79,15 @@ jobs:
|
|||||||
|
|
||||||
- name: Deploy sasjs-tests
|
- name: Deploy sasjs-tests
|
||||||
run: |
|
run: |
|
||||||
npm install -g replace-in-files-cli
|
sudo apt install jq
|
||||||
cd sasjs-tests
|
cd sasjs-tests
|
||||||
replace-in-files --regex='"@sasjs/adapter".*' --replacement='"@sasjs/adapter":"latest",' ./package.json
|
jq '.dependencies."@sasjs/adapter" |= "latest"' ./package.json > ./package.temp && mv ./package.temp ./package.json
|
||||||
npm i
|
npm i
|
||||||
replace-in-files --regex='"serverUrl".*' --replacement='"serverUrl":"${{ secrets.SASJS_SERVER_URL }}",' ./public/config.json
|
jq '.sasJsConfig.serverUrl |= "${{ secrets.SASJS_SERVER_URL }}"' ./public/config.json > ./public/config.temp && mv ./public/config.temp ./public/config.json
|
||||||
replace-in-files --regex='"userName".*' --replacement='"userName":"${{ secrets.SASJS_USERNAME }}",' ./public/config.json
|
jq '.sasJsConfig.serverType |= "SASJS"' ./public/config.json > ./public/config.temp && mv ./public/config.temp ./public/config.json
|
||||||
replace-in-files --regex='"serverType".*' --replacement='"serverType":"SASJS",' ./public/config.json
|
jq '.userName |= "${{ secrets.SASJS_USERNAME }}"' ./public/config.json > ./public/config.temp && mv ./public/config.temp ./public/config.json
|
||||||
replace-in-files --regex='"password".*' --replacement='"password":"${{ secrets.SASJS_PASSWORD }}",' ./public/config.json
|
jq '.password |= "${{ secrets.SASJS_PASSWORD }}"' ./public/config.json > ./public/config.temp && mv ./public/config.temp ./public/config.json
|
||||||
|
|
||||||
cat ./public/config.json
|
cat ./public/config.json
|
||||||
|
|
||||||
npm run update:adapter
|
npm run update:adapter
|
||||||
@@ -98,9 +99,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Run cypress on sasjs
|
- name: Run cypress on sasjs
|
||||||
run: |
|
run: |
|
||||||
replace-in-files --regex='"sasjsTestsUrl".*' --replacement='"sasjsTestsUrl":"http://localhost:3000",' ./cypress.json
|
jq '.env.sasjsTestsUrl |= "http://localhost:3000"' ./cypress.json > ./cypress.temp && mv ./cypress.temp ./cypress.json
|
||||||
replace-in-files --regex='"username".*' --replacement='"username":"${{ secrets.SASJS_USERNAME }}",' ./cypress.json
|
jq '.env.username |= "${{ secrets.SASJS_USERNAME }}"' ./cypress.json > ./cypress.temp && mv ./cypress.temp ./cypress.json
|
||||||
replace-in-files --regex='"password".*' --replacement='"password":"${{ secrets.SASJS_PASSWORD }}",' ./cypress.json
|
jq '.env.password |= "${{ secrets.SASJS_PASSWORD }}"' ./cypress.json > ./cypress.temp && mv ./cypress.temp ./cypress.json
|
||||||
cat ./cypress.json
|
cat ./cypress.json
|
||||||
echo "SASJS_USERNAME=${{ secrets.SASJS_USERNAME }}"
|
echo "SASJS_USERNAME=${{ secrets.SASJS_USERNAME }}"
|
||||||
|
|
||||||
|
|||||||
@@ -12,10 +12,6 @@ body {
|
|||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
#app {
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app__error {
|
.app__error {
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: 50px auto;
|
margin: 50px auto;
|
||||||
|
|||||||
@@ -35,6 +35,60 @@ interface JobExecutionResult {
|
|||||||
log?: string
|
log?: string
|
||||||
error?: object
|
error?: object
|
||||||
}
|
}
|
||||||
|
/* Viya /types/types?limit=999999 response structure */
|
||||||
|
interface IViyaTypesResponse {
|
||||||
|
accept: string
|
||||||
|
count: number
|
||||||
|
items: IViyaTypesItem[]
|
||||||
|
limit: number
|
||||||
|
links: IViyaTypesLink[]
|
||||||
|
name: string
|
||||||
|
start: number
|
||||||
|
version: number
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Item element within the Viya types response */
|
||||||
|
interface IViyaTypesItem {
|
||||||
|
description?: string
|
||||||
|
extensions?: string[]
|
||||||
|
iconUri?: string
|
||||||
|
label: string
|
||||||
|
links: IViyaTypesLink[]
|
||||||
|
mappedTypes?: string[]
|
||||||
|
mediaType?: string
|
||||||
|
mediaTypes?: string[]
|
||||||
|
name?: string | undefined
|
||||||
|
pluralLabel?: string
|
||||||
|
properties?: IViyaTypesProperties
|
||||||
|
resourceUri?: string
|
||||||
|
serviceRootUri?: string
|
||||||
|
tags?: string[]
|
||||||
|
version: number
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generic structure for a link
|
||||||
|
* in the links array of a Viya
|
||||||
|
* types/types api response
|
||||||
|
*/
|
||||||
|
type IViyaTypesLink = Record<string, string>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generic structure for a type's
|
||||||
|
* 'properties' object from the Viya
|
||||||
|
* types/types api response
|
||||||
|
*/
|
||||||
|
type IViyaTypesProperties = Record<string, string>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Arbitrary interface for storing
|
||||||
|
* sufficient additional detail to
|
||||||
|
* create and patch a new file.
|
||||||
|
*/
|
||||||
|
interface IViyaTypesExtensionInfo {
|
||||||
|
typeDefName: string | undefined
|
||||||
|
properties: IViyaTypesProperties | undefined
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A client for interfacing with the SAS Viya REST API.
|
* A client for interfacing with the SAS Viya REST API.
|
||||||
@@ -61,6 +115,9 @@ export class SASViyaApiClient {
|
|||||||
this.requestClient
|
this.requestClient
|
||||||
)
|
)
|
||||||
private folderMap = new Map<string, Job[]>()
|
private folderMap = new Map<string, Job[]>()
|
||||||
|
private fileExtensionMap = new Map<string, IViyaTypesExtensionInfo>()
|
||||||
|
private boolExtensionMap = false // required in case the map has zero entries
|
||||||
|
// after an attempt to populate it.
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A helper method used to call appendRequest method of RequestClient
|
* A helper method used to call appendRequest method of RequestClient
|
||||||
@@ -434,15 +491,102 @@ export class SASViyaApiClient {
|
|||||||
const formData = new NodeFormData()
|
const formData = new NodeFormData()
|
||||||
formData.append('file', contentBuffer, fileName)
|
formData.append('file', contentBuffer, fileName)
|
||||||
|
|
||||||
return (
|
/** Query Viya for file metadata based on extension type. */
|
||||||
await this.requestClient.post<File>(
|
|
||||||
`/files/files?parentFolderUri=${parentFolderUri}&typeDefName=file#rawUpload`,
|
// typeDefName - Viya accepts this property during the file creation
|
||||||
|
let typeDefName: string | undefined = undefined
|
||||||
|
// Additional properties are supplied by a patch.
|
||||||
|
let filePatch:
|
||||||
|
| {
|
||||||
|
name: string
|
||||||
|
properties: IViyaTypesProperties | undefined
|
||||||
|
}
|
||||||
|
| undefined = undefined
|
||||||
|
|
||||||
|
// The patching process requires properties related to the file-extension
|
||||||
|
const fileExtension: string | undefined = fileName
|
||||||
|
.split('.')
|
||||||
|
.pop()
|
||||||
|
?.toLowerCase()
|
||||||
|
|
||||||
|
if (fileExtension) {
|
||||||
|
if (!this.boolExtensionMap) {
|
||||||
|
// Populate the file extension map
|
||||||
|
// 1. Get Viya's response to this api call
|
||||||
|
const typesQueryUrl = `/types/types?limit=999999`
|
||||||
|
const response = (
|
||||||
|
await this.requestClient.get(typesQueryUrl, accessToken)
|
||||||
|
).result as IViyaTypesResponse
|
||||||
|
// 2. Filter the returned items that have file extensions into a map
|
||||||
|
// using forEach as an item may relate to multiple file extensions.
|
||||||
|
response.items
|
||||||
|
.filter((e) => e.extensions)
|
||||||
|
.forEach((e) => {
|
||||||
|
e.extensions?.forEach((ext) => {
|
||||||
|
this.fileExtensionMap.set(ext, {
|
||||||
|
// `name` becomes the typeDefName value at file creation time.
|
||||||
|
// `name` is ignored here if it is not populated in the map, or
|
||||||
|
// has a blank/empty value.
|
||||||
|
typeDefName: e.name
|
||||||
|
? e.name.trim().length
|
||||||
|
? e.name.trim()
|
||||||
|
: undefined
|
||||||
|
: undefined,
|
||||||
|
properties: e.properties
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
// 3. Toggle the flag to avoid repeating this step
|
||||||
|
this.boolExtensionMap = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// Query the map for the current file extension
|
||||||
|
const fileExtInfo = this.fileExtensionMap.get(fileExtension)
|
||||||
|
if (fileExtInfo) {
|
||||||
|
// If the extension was found in the map, record the typeDefName and
|
||||||
|
// create a patch if a properties object was returned.
|
||||||
|
typeDefName = fileExtInfo.typeDefName
|
||||||
|
if (fileExtInfo.properties)
|
||||||
|
filePatch = { name: fileName, properties: fileExtInfo.properties }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the file
|
||||||
|
const createFileResponse = await this.requestClient.post<File>(
|
||||||
|
`/files/files?parentFolderUri=${parentFolderUri}&typeDefName=${
|
||||||
|
typeDefName ?? 'file'
|
||||||
|
}#rawUpload`,
|
||||||
formData,
|
formData,
|
||||||
accessToken,
|
accessToken,
|
||||||
'multipart/form-data; boundary=' + (formData as any)._boundary,
|
'multipart/form-data; boundary=' + (formData as any)._boundary,
|
||||||
headers
|
headers
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// If a patch was created...
|
||||||
|
if (filePatch) {
|
||||||
|
try {
|
||||||
|
const patchHeaders = {
|
||||||
|
Accept: 'application/json',
|
||||||
|
'If-Match': '*'
|
||||||
|
}
|
||||||
|
// Get the URI of the newly created file
|
||||||
|
const fileUri = createFileResponse.result.links.filter(
|
||||||
|
(e) => e.method == 'PATCH' && e.rel == 'patch'
|
||||||
|
)[0].uri
|
||||||
|
// and apply the patch
|
||||||
|
return (
|
||||||
|
await this.requestClient.patch<File>(
|
||||||
|
`${fileUri}`,
|
||||||
|
filePatch,
|
||||||
|
accessToken,
|
||||||
|
patchHeaders
|
||||||
|
)
|
||||||
).result
|
).result
|
||||||
|
} catch (e: any) {
|
||||||
|
throw new Error(`Error patching file ${fileName}.\n${e.message}`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return createFileResponse.result
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -273,9 +273,13 @@ export class RequestClient implements HttpClient {
|
|||||||
public async patch<T>(
|
public async patch<T>(
|
||||||
url: string,
|
url: string,
|
||||||
data: any = {},
|
data: any = {},
|
||||||
accessToken?: string
|
accessToken?: string,
|
||||||
|
overrideHeaders: { [key: string]: string | number } = {}
|
||||||
): Promise<{ result: T; etag: string }> {
|
): Promise<{ result: T; etag: string }> {
|
||||||
const headers = this.getHeaders(accessToken, 'application/json')
|
const headers = {
|
||||||
|
...this.getHeaders(accessToken, 'application/json'),
|
||||||
|
...overrideHeaders
|
||||||
|
}
|
||||||
|
|
||||||
return this.httpClient
|
return this.httpClient
|
||||||
.patch<T>(url, data, { headers, withXSRFToken: true })
|
.patch<T>(url, data, { headers, withXSRFToken: true })
|
||||||
|
|||||||
Reference in New Issue
Block a user