Synchronous server-side connection to the UnityBase instance. To be used only inside UnityBase. For Node.js & browser use asynchronous UBConnection class from @unitybase/ub-pub package.
The most used method is SyncConnection.query - an authorized request to ubql
endpoint.
const SyncConnection = require('@unitybase/base').SyncConnection
const conn = new SyncConnection({URL: 'http://localhost:888'})
conn.onRequestAuthParams = function(){ return {authSchema: 'UB', login: 'admin', password: 'admin'} }
const domain = conn.getDomainInfo();
if (domain.has('my_entity')){
..
}
# new SyncConnection (options: object)
Arguments:
options
: objectConnection parameters. See http.request for details
Members
# appConfig : Object instance
AdminUI settings
# appName : string instance
Name of UnityBase application
# authMethods : Array.<string> instance
Possible server authentication method
# authNeed : boolean instance
Is UnityBase server require authorization
# clientRequest : ClientRequest instance
Internal instance of HTTP client
# encryptContent : boolean instance
Is server require content encryption
# onRequestAuthParams : function instance
Callback for resolving user credential. Take a SyncConnection as a parameter, must return authorization parameters object:
{authSchema: authType, login: login, password: password, [apiKey: ]}
For an internal usage (requests from a localhost or other systems, etc.) and in case authShema == 'UB'
it is possible to pass a
apiKey
instead of a password. apiKey is actually a uba_user.uPasswordHashHexa
content
# queryMethod : string instance
Endpoint name for query (runList
before 1.12, ubql
after 1.12)
# serverCertificate : boolean instance
base64
encoded server certificate used for cryptographic operation
# servicePath : string instance
Root path to all application-level method
# sessionKeyLifeTime : Number instance
Lifetime (in second) of session encryption
# UBQLv2 instance
Server support UBQL v2 (value instead of values)
Name | Type | Description |
---|---|---|
UBQLv2 | boolean |
# _domain : UBDomain inner
Methods
# addNew (ubq: ubRequest) → * instance
Execute addnew method: add method 'addnew' to ubq
query (if req.method not already set)
If ubq.fieldList
contain only ID
return generated ID, otherwise return array of attribute values passed to fieldList
.
If no field list passed at all - return response.resultData (null usually).
Arguments:
ubq
: ubRequest
const testRole = conn.addNew({
entity: 'uba_role',
fieldList: ['ID', 'name', 'allowedAppMethods'],
execParams: {
name: 'testRole1',
allowedAppMethods: 'runList'
}
})
console.log(testRole) //[3000000000200,"testRole1","runList"]
const testRoleID = conn.addNew({
entity: 'uba_role',
fieldList: ['ID']
})
console.log(testRoleID) //3000000000200
# addNewAsObject (ubq: ubRequest, fieldAliasesopt: Object.<string, string>) → object instance
Run UBQL command with addnew
method
In case fieldList
is passed - result will contains new values for attributes specified in fieldList
as Object, otherwise - null
In opposite to addNew
method values in result are PARSED based on Domain (as in AsyncConnection) - so values
for boolean attributes is true/false, date is typeof Date etc.
Arguments:
const newRole = conn.addNewAsObject({
entity: 'uba_role',
fieldList: ['ID', 'name', 'allowedAppMethods'],
execParams: {
name: 'testRole61',
allowedAppMethods: 'runList'
}
})
console.log(newRole) // {ID: 332462911062017, name: 'testRole1', allowedAppMethods: 'runList'}
# get (endpoint: string, URLParamsopt: *) → ArrayBuffer | Object | String instance
Perform get request to endpoint
with optional URLParams.
Arguments:
endpoint
: stringURLParams
: *
# getAppInfo () → Object instance
Return information about how application is configured as returned by getAppInfo
endpoint
# getDocument (params: object, optionsopt: object) → ArrayBuffer | string instance
Retrieve content of document
type attribute field from server
Return:
Document content (either ArrayBuffer in case options.resultIsBinary===true or text/json)
Arguments:
params
: objectentity
: stringCode of entity to retrieve from
attribute
: stringdocument
type attribute codeid
: numberInstance ID
forceMime
: stringIf passed and server support transformation from source MIME type to
forceMime
server perform transformation and return documenRt representation in the passed MIMErevision
: numberOptional revision of the documnet (if supported by server-side store configuration). Default is current revision.
fileName
: string????
isDirty
: booleanOptional ability to retrieve document in dirty state
store
: string????
options
: objectAdditional request options
//Retrieve content of document as string using GET
let frmContent = conn.getDocument({
entity:'ubm_form',
attribute: 'formDef',
ID: 100000232003
})
console.log(typeof frmContent)
//The same, but using POST for bypass cache
let frmContent = conn.getDocument({
entity:'ubm_form',
attribute: 'formDef',
ID: 100000232003
}, {
bypassCache: true
})
console.log(typeof frmContent) // string
//Retrieve content of document as ArrayBuffer and bypass cache
let frmContent = conn.getDocument({
entity:'ubm_form',
attribute: 'formDef',
ID: 100000232003
}, {
bypassCache: true, resultIsBinary: true
})
console.log('Result is', typeof frmContent, 'of length' , frmContent.byteLength, 'bytes'); //output: Result is object of length 2741 bytes
# getDomainInfo (isExtendedopt: boolean) → UBDomain instance
Retrieve application domain information.
Arguments:
isExtended
= false: booleanFor member of admin group can return a additional domain information, such as mappings, connection details, indexes, realPath for models etc.
# insert (ubq: ubRequest) → * instance
Execute insert method by add method: 'insert' to ubq
query (if req.method not already set)
If ubq.fieldList
contain only ID
return inserted ID, else return array of attribute values passed to fieldList
.
If no field list passed at all - return response.resultData (null usually).
Arguments:
ubq
: ubRequest
const testRole = conn.insert({
entity: 'uba_role',
fieldList: ['ID', 'mi_modifyDate'],
execParams: {
name: 'testRole1',
allowedAppMethods: 'runList'
}
})
console.log(testRole) //[3000000000200,"2014-10-21T11:56:37Z"]
const testRoleID = conn.insert({
entity: 'uba_role',
fieldList: ['ID'],
execParams: {
name: 'testRole1',
allowedAppMethods: 'runList'
}
})
console.log(testRoleID) //3000000000200
# insertAsObject (ubq: ubRequest, fieldAliasesopt: Object.<string, string>) → object instance
Run UBQL command with insert
method
In case fieldList
is passed - result will contains new values for attributes specified in fieldList
as Object, otherwise - null
In opposite to insert
method values in result are PARSED based on Domain (as in AsyncConnection) - so values
for boolean attributes is true/false, date is typeof Date etc.
Arguments:
const newRole = conn.insertAsObject({
entity: 'uba_role',
fieldList: ['ID', 'name', 'allowedAppMethods', 'mi_modifyDate'],
execParams: {
name: 'testRole61',
allowedAppMethods: 'runList'
}
}, {mi_modifyDate: 'modifiedAt'})
console.log(newRole) // {ID: 332462911062017, name: 'testRole1', allowedAppMethods: 'runList', mi_modifyDate: 2020-12-21T15:45:01.000Z}
console.log(newRole.modifiedAt instanceof Date) //true
# isAuthorized () → boolean instance
Check is current connection already perform authentication request
# logout () instance
Logout from server if logged in
# lookup (aEntity: string, lookupAttribute: string, aCondition: String | Object, doNotUseCacheopt: boolean) → * instance
Lookup value in entity using a Condition
Return:
lookupAttribute
value of first result row or null if not found.
Arguments:
aEntity
: stringentity to lookup
lookupAttribute
: stringattribute to lookup
aCondition
: String| Objectlookup condition. String in case of custom expression, or whereListItem {expression: condition: value: }, or whereList {condition1: {expression: condition: value: }, condition2: {}, ....}
doNotUseCache
= false: boolean
// create condition using Repository
const myID = conn.lookup('ubm_enum', 'ID',
conn.Repository('ubm_enum').where('eGroup', '=', 'UBA_RULETYPE').where('code', '=', 'A').ubql().whereList
)
// or pass condition directly
const adminID = conn.lookup('uba_user', 'ID', {
expression: 'name', condition: 'equal', value: 'admin'}
})
# post (endpoint: string, data: ArrayBuffer | Object | String, URLParamsopt: object) → ArrayBuffer | Object | String | Array.<object> instance
Shortcut method to perform authorized POST
request to application we connected
Arguments:
endpoint
: stringdata
: ArrayBuffer| Object| StringURLParams
: object
# query (ubq: Object) → Object | Array instance
Perform authorized UBQL request. Can take one QB Query or an array of UB Query and execute it at once.
# Repository (entityCodeOrUBQL: string) → ServerRepository instance
Create a new instance of repository
# run (request: ubRequest) → Object instance deprecated
Since UB 1.11 use SyncConnection.query
Shortcut method to perform authorized POST
request to ubql
endpoint.
Can take one ubRequest and wrap it to array
Arguments:
request
: ubRequest
# runCustom () → * instance
Send request to any endpoint. For entity-level method execution (ubql
endpoint) better to use SyncConnection.query
Return:
body of HTTP request result. If !simpleTextResult and response type is json - then parsed to object
# setDocument (entity: string, attribute: string, id: number, data: ArrayBuffer | string, origName: string, fileNameopt: string, dataEncoding: string) → string instance
Saves a file content as a potential value of the specified entity instance attribute to the TEMP store.
Call this function before entity insert of update. Result of this function is what shall be assigned to the attribute value, to "execParams".
Arguments:
entity
: stringEntity name
attribute
: stringEntity attribute name
id
: numberID of the record
data
: ArrayBuffer| stringFile content
origName
: stringfileName
: stringIf not specified, origName will be used.
dataEncoding
: stringSpecify
data
parameter encoding. Either omit for binary data or set tobase64
for base64 encoded data
const myObj = conn.Repository(entityName)
.attrs('ID', 'mi_modifyDate')
.where('code', '=', code)
.selectSingle()
const {ID, mi_modifyDate} = myObj
const data = fs.readFileSync(fileName, {encoding: 'bin'})
const tempStoreResult = conn.setDocument(entityName, 'configuration', ID, data, fn)
conn.query({
entity: entityName,
method: 'update',
execParams: {ID, configuration: tempStoreResult, mi_modifyDate}
})
# update () instance
Execute update method (adds method: 'update' if req.method
is not already set)
# updateAsObject (ubq: ubRequest, fieldAliasesopt: Object.<string, string>) → object instance
Run UBQL command with update
method
In case fieldList
is passed - result will contain new values for attributes specified in fieldList
as Object, otherwise - null
In opposite to update
method values in result are PARSED based on Domain (as in AsyncConnection) - so values
for boolean attributes is true/false, date is typeof Date etc.
Arguments:
const newRole = conn.updateAsObject({
entity: 'uba_role',
fieldList: ['ID', 'name', 'allowedAppMethods', 'mi_modifyDate'],
execParams: {
ID: 123,
name: 'testRole61'
}
}, {mi_modifyDate: 'modifiedAt'})
console.log(newRole) // {ID: 332462911062017, name: 'testRole1', allowedAppMethods: 'runList', mi_modifyDate: 2020-12-21T15:45:01.000Z}
console.log(newRole.modifiedAt instanceof Date) //true
# userData (keyopt: string) → * instance
Return custom data for logged in user, or {lang: 'en'} in case not logged in
If key is provided - return only key part of user data
Arguments:
key
: stringOptional key
$App.connection.userData('lang')
// or the same but dedicated alias
$App.connection.userLang()
# userLang () → String instance
Return current user language or 'en' in case not logged in
# userLogin () → String instance
Return current user logon or 'anonymous' in case not logged in
# xhr (options: object) → ArrayBuffer | Object | String | Array.<Object> instance
HTTP request to UB server. In case of success response return body parsed to {Object} or {ArrayBuffer} depending of Content-Type response header
Arguments:
options
: objectendpoint
: stringUBMethod
: stringThis parameter is DEPRECATED. Use
options.endpoint
insteadHTTPMethod
='POST': stringheaders
: objectOptional request headers in format {headerName: headerValue, ..}
simpleTextResult
: booleando not parse response and return it as is even if response content type is JSON
URLParams
: *Optional parameters added to URL using http.buildURL
data
: ArrayBuffer | Object | StringOptional body
responseType
: Stringsee responseType. Currently only
arraybuffer
supported.
conn.xhr({
endpoint: 'runSQL',
URLParams: {CONNECTION: 'dba'},
data: 'DROP SCHEMA IF EXISTS ub_autotest CASCADE; DROP USER IF EXISTS ub_autotest;'
});