Compare commits
1 Commits
add/custom
...
sandboxed
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
835f450686 |
24
ext/.eslintrc
Normal file
24
ext/.eslintrc
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"extends": "eslint:recommended",
|
||||||
|
"env": {
|
||||||
|
"node": true,
|
||||||
|
"es6": true,
|
||||||
|
"jest": true
|
||||||
|
},
|
||||||
|
"parserOptions": {
|
||||||
|
"ecmaVersion": 2017
|
||||||
|
},
|
||||||
|
"globals": {
|
||||||
|
"SELECT": true,
|
||||||
|
"INSERT": true,
|
||||||
|
"UPDATE": true,
|
||||||
|
"DELETE": true,
|
||||||
|
"CREATE": true,
|
||||||
|
"DROP": true,
|
||||||
|
"cds": true
|
||||||
|
},
|
||||||
|
"rules": {
|
||||||
|
"no-console": "off",
|
||||||
|
"require-atomic-updates": "off"
|
||||||
|
}
|
||||||
|
}
|
||||||
30
ext/.gitignore
vendored
Normal file
30
ext/.gitignore
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# CAP ext
|
||||||
|
_out
|
||||||
|
*.db
|
||||||
|
connection.properties
|
||||||
|
default-*.json
|
||||||
|
gen/
|
||||||
|
node_modules/
|
||||||
|
package-lock.json
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Web IDE, App Studio
|
||||||
|
.che/
|
||||||
|
.gen/
|
||||||
|
|
||||||
|
# MTA
|
||||||
|
*_mta_build_tmp
|
||||||
|
*.mtar
|
||||||
|
mta_archives/
|
||||||
|
|
||||||
|
# Other
|
||||||
|
.DS_Store
|
||||||
|
*.orig
|
||||||
|
*.log
|
||||||
|
|
||||||
|
*.iml
|
||||||
|
*.flattened-pom.xml
|
||||||
|
|
||||||
|
# IDEs
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
6
ext/db/schema.cds
Normal file
6
ext/db/schema.cds
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
using { sap.capire.bookshop.Books } from '@capire/bookshop';
|
||||||
|
|
||||||
|
extend Books with {
|
||||||
|
ISBN : String;
|
||||||
|
discount : Decimal @assert.range:[0,1];
|
||||||
|
}
|
||||||
19
ext/package.json
Normal file
19
ext/package.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "ext",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "A simple CAP project.",
|
||||||
|
"repository": "<Add your repository here>",
|
||||||
|
"license": "UNLICENSED",
|
||||||
|
"private": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@capire/bookshop": "../bookshop",
|
||||||
|
"@sap/cds": "^4",
|
||||||
|
"express": "^4"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"sqlite3": "^4"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"start": "npx cds run"
|
||||||
|
}
|
||||||
|
}
|
||||||
40
ext/server.js
Normal file
40
ext/server.js
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
const cds = require ('@sap/cds')
|
||||||
|
const path = require ('path')
|
||||||
|
const fs = require ('fs')
|
||||||
|
const protected = {db:1,messaging:1,auth:1}
|
||||||
|
const { isfile } = cds.utils
|
||||||
|
|
||||||
|
cds.on('served', ()=>{
|
||||||
|
for (let each of cds.services) {
|
||||||
|
if (each.name in protected) continue
|
||||||
|
// search for local srv/<each>.js files and if exist
|
||||||
|
// activate them in a service extension sandbox
|
||||||
|
const impl = isfile (path.resolve('srv/'+each.name+'.js'))
|
||||||
|
if (impl) activate_sandboxed (each,impl)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
function activate_sandboxed (srv,impl) {
|
||||||
|
console.log (`[cds] - extending ${srv.name} with sandboxed:`, {impl:path.relative(process.cwd(),impl)})
|
||||||
|
const src = fs.readFileSync (impl)
|
||||||
|
const sandbox = Object.keys(global).filter(name => name !== 'cds')
|
||||||
|
const fn = new Function (
|
||||||
|
'module','cds','global','process', ...sandbox,
|
||||||
|
src
|
||||||
|
)
|
||||||
|
// restricted sandboxed variant of 'module' and 'cds'
|
||||||
|
const module = {}
|
||||||
|
const cds = {
|
||||||
|
service: {
|
||||||
|
impl: fn=>fn
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fn (module,cds,undefined,undefined, ...sandbox.map((()=>(undefined))))
|
||||||
|
if (typeof module.exports === 'function') try {
|
||||||
|
module.exports.call (srv,srv)
|
||||||
|
} catch (e) {
|
||||||
|
console.log (e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = cds.server
|
||||||
10
ext/srv/AdminService.js
Normal file
10
ext/srv/AdminService.js
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
module.exports = cds.service.impl(function(){
|
||||||
|
|
||||||
|
this.before(['CREATE','UPDATE'],'Books', req => { //> ....
|
||||||
|
const book = req.data
|
||||||
|
if (book.stock < 10 && book.discount > 0.5) {
|
||||||
|
req.error('Hey, da sind so wenig übrig, die wollen wir nicht zu billig verticken')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
9
ext/srv/CatalogService.js
Normal file
9
ext/srv/CatalogService.js
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
console.log ('Böses Zeug', global, process, cds)
|
||||||
|
// process.exit()
|
||||||
|
// const fs = require('fs')
|
||||||
|
// cds.run('Böses Zeugs')
|
||||||
|
// SELECT.from ('Foo')
|
||||||
|
|
||||||
|
module.exports = cds.service.impl(function(){
|
||||||
|
this.after('READ','Books', each => each.title += ' (served through sandbox)')
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user