Compare commits

..

34 Commits

Author SHA1 Message Date
Christian Georgi
0e894313c3 Update README.md 2020-04-20 17:11:43 +02:00
Christian Georgi
83ea6a363d Add package-lock.json, fix readme 2020-04-02 16:12:08 +02:00
Christian Georgi
98cf14101a Update readme 2020-03-23 17:10:22 +01:00
D065023
401ff039ff rm other packages 2020-03-20 10:52:10 +01:00
D065023
4d8b887389 Merge branch 'OpenSAP-week4-unit1' of https://github.com/SAP-samples/cloud-cap-samples into OpenSAP-week4-unit1 2020-03-16 09:25:38 +01:00
D065023
8ab6a7ebf6 added package-lock 2020-03-16 09:25:32 +01:00
Dr. David Kunz
09eb51fa32 Update package.json 2020-02-11 11:49:25 +01:00
D065023
7a6a6a0257 rm req 2020-01-29 15:21:47 +01:00
D065023
f17c5bfa57 rm amqp 2020-01-29 15:20:23 +01:00
D065023
85498a9875 added default 2020-01-29 15:18:20 +01:00
D065023
19b09645db rm imported 2020-01-29 15:04:51 +01:00
D065023
9861b05f2d imported 2020-01-29 14:57:38 +01:00
D065023
c58bcf905f rm eventing 2020-01-29 14:51:42 +01:00
D065023
50ab059c13 comment 2020-01-29 14:46:31 +01:00
D065023
46960159d1 cleaner 2020-01-29 14:35:22 +01:00
D065023
02228e5a96 easier 2020-01-29 14:16:34 +01:00
D065023
d4793177fc rm 2020-01-29 14:13:42 +01:00
D065023
2787284aad blocked 2020-01-29 14:13:15 +01:00
D065023
61a318b250 fixed bug 2020-01-29 13:02:23 +01:00
D065023
6e42e5a173 address -> bupa 2020-01-29 12:59:59 +01:00
D065023
bf162c23cc cleaner 2020-01-29 09:55:21 +01:00
D065023
9b41615ac8 file-based not needed 2020-01-29 08:34:49 +01:00
D065023
29840afc0b data 2020-01-28 18:14:24 +01:00
D065023
fa880e2987 rm lock 2020-01-28 18:02:09 +01:00
D065023
90881558dc working 2020-01-28 18:01:53 +01:00
D065023
6d3e9a211a rm bug 2020-01-28 16:04:32 +01:00
D065023
e694fbaf13 messaging 2020-01-28 16:00:01 +01:00
D065023
43d0373d70 rm complexity 2020-01-28 15:21:46 +01:00
D065023
b632013b16 old way 2020-01-28 13:08:20 +01:00
D065023
a6deddf022 added postalcode 2020-01-28 10:41:14 +01:00
D065023
513bf9711f changed data 2020-01-28 10:40:15 +01:00
D065023
00c99c0e0b devdep 2020-01-28 10:27:23 +01:00
D065023
e042317f82 sync API 2020-01-28 09:07:23 +01:00
D065023
04ab69c48f imported 2020-01-28 08:32:37 +01:00
16 changed files with 144 additions and 941 deletions

View File

@@ -6,7 +6,7 @@
"jest": true "jest": true
}, },
"parserOptions": { "parserOptions": {
"ecmaVersion": 2018 "ecmaVersion": 2017
}, },
"globals": { "globals": {
"SELECT": true, "SELECT": true,

27
.vscode/launch.json vendored
View File

@@ -5,17 +5,19 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "bookshop", "request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ], "name": "cds run",
"args": [ "--", "cds", "run", "--in-memory" ], "request": "launch",
"cwd": "${workspaceFolder}/packages/bookshop", "type": "node",
"console": "integratedTerminal", "runtimeExecutable": "npx",
"skipFiles": ["<node_internals>/**"] "runtimeArgs": ["-n"],
}, "args": ["--", "cds", "run", "--with-mocks", "--in-memory?"], // the leading "--" arg ensures it works with as well as without debugging
{
"name": "cds run ...", "request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ],
"args": [ "--", "cds", "run", "--with-mocks", "--in-memory?" ],
"cwd": "${workspaceFolder}/packages/${input:service}", "cwd": "${workspaceFolder}/packages/${input:service}",
"console": "integratedTerminal", "console": "integratedTerminal",
"serverReadyAction": {
"pattern": "server listening on (https?://\\S+|[0-9]+)",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
},
"skipFiles": ["<node_internals>/**"] "skipFiles": ["<node_internals>/**"]
} }
], ],
@@ -29,9 +31,12 @@
"bookstore", "bookstore",
"media-server", "media-server",
"office-supplies", "office-supplies",
"reviews-service" "orders-service",
"products-service",
"reviews-service",
"user-service"
], ],
"default": "bookshop" "default": "bookstore"
} }
] ]
} }

View File

@@ -1,6 +1,7 @@
{ {
"files.exclude": { "files.exclude": {
"**/.gitignore": true, "**/.gitignore": false,
"**/.vscode": true "**/.git": false,
"**/.vscode": false
} }
} }

19
.vscode/tasks.json vendored
View File

@@ -4,14 +4,23 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"type": "npm", "script": "watch", "path": "packages/bookshop/", "type": "shell", "label": "cds run bookshop",
"options": { "env": { "PORT": "4004" }}, "command": "npx", "args": [ "cds", "watch", "packages/bookshop" ],
"presentation": { "group": "A" } "presentation": { "group": "A" },
"problemMatcher": []
}, },
{ {
"type": "npm", "script": "watch", "path": "packages/reviews-service/", "type": "shell", "label": "cds run bookshop-enhanced",
"command": "npx", "args": [ "cds", "watch", "packages/bookshop-enhanced" ],
"presentation": { "group": "A" },
"problemMatcher": []
},
{
"type": "shell", "label": "cds run reviews-service",
"command": "npx", "args": [ "cds", "watch", "packages/reviews-service" ],
"options": {"env": { "PORT":"5005" }}, "options": {"env": { "PORT":"5005" }},
"presentation": { "group": "A" } "presentation": { "group": "A" },
"problemMatcher": []
} }
] ]
} }

View File

@@ -11,7 +11,7 @@ In SAP Business Application Studio, open a terminal.
Then clone the repo with this specific branch: Then clone the repo with this specific branch:
```sh ```sh
git clone https://github.com/sap-samples/cloud-cap-samples projects/cloud-cap-samples -b openSAP-week2-unit3 git clone https://github.com/sap-samples/cloud-cap-samples projects/cloud-cap-samples -b openSAP-week4-unit1
cd projects/cloud-cap-samples cd projects/cloud-cap-samples
``` ```

836
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -5,20 +5,23 @@
"author": "daniel.hutzel@sap.com", "author": "daniel.hutzel@sap.com",
"private": true, "private": true,
"scripts": { "scripts": {
"lerna": "npx --no-install lerna -v > /dev/null || npm i lerna --no-save",
"install": "(npm -s run lerna) && lerna bootstrap --hoist",
"cleanup": "lerna clean -y && rm -fr node_modules", "cleanup": "lerna clean -y && rm -fr node_modules",
"bookshop": "cds watch packages/bookshop" "install": "(npm -s run lerna) && lerna bootstrap --hoist",
"lerna": "npx --no-install lerna -v > /dev/null || npm i lerna --no-save",
"test": "jest",
"bookshop-enhanced": "cds watch packages/bookshop-enhanced",
"bookshop": "cds watch packages/bookshop",
"bookstore": "cds watch packages/bookstore",
"products-service": "cds watch packages/products-service",
"reviews-service": "cds watch packages/reviews-service"
}, },
"dependencies": { "dependencies": {
"@sap/cds": "^3", "@sap/cds": "^3",
"express": "^4" "express": "^4"
}, },
"devDependencies": {
"sqlite3": "*"
},
"--add-these-to-devDependencies-for-tests": { "--add-these-to-devDependencies-for-tests": {
"@types/jest": "*", "@types/jest": "*",
"sqlite3": "*",
"jest": "*" "jest": "*"
}, },
"license": "SAP SAMPLE CODE LICENSE" "license": "SAP SAMPLE CODE LICENSE"

View File

@@ -43,7 +43,7 @@
<script src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js" <script src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
data-sap-ui-libs="sap.m, sap.ushell, sap.collaboration, sap.ui.layout" data-sap-ui-libs="sap.m, sap.ushell, sap.collaboration, sap.ui.layout"
data-sap-ui-compatVersion="edge" data-sap-ui-compatVersion="edge"
data-sap-ui-theme="sap_fiori_3" data-sap-ui-theme="sap_belize"
data-sap-ui-frameOptions="allow" data-sap-ui-frameOptions="allow"
></script> ></script>
<script> <script>

View File

@@ -1,3 +1,5 @@
ID;modifiedAt;createdAt;createdBy;modifiedBy;OrderNo;currency_code ID;modifiedAt;createdAt;createdBy;modifiedBy;OrderNo;currency_code;status
7e2f2640-6866-4dcf-8f4d-3027aa831cad;;2019-01-31;john.doe@test.com;;1;EUR da86efd0-4ba1-4078-b7f0-5c9c530297f7;;2019-01-31;ALICE;;1;EUR;processing
64e718c9-ff99-47f1-8ca3-950c850777d4;;2019-01-30;jane.doe@test.com;;2;EUR 2f2f2640-6866-4dcf-8f4d-3027aa831cad;;2019-03-25;ALICE;;10;EUR;completed
64e718c9-ff99-47f1-8ca3-950c850777d4;;2019-01-30;BOB;;2;EUR;processing
1af3322d-3cb1-46be-b312-0ae9ec311537;;2019-03-16;BOB;;9;EUR;completed
1 ID modifiedAt createdAt createdBy modifiedBy OrderNo currency_code status
2 7e2f2640-6866-4dcf-8f4d-3027aa831cad da86efd0-4ba1-4078-b7f0-5c9c530297f7 2019-01-31 john.doe@test.com ALICE 1 EUR processing
3 64e718c9-ff99-47f1-8ca3-950c850777d4 2f2f2640-6866-4dcf-8f4d-3027aa831cad 2019-01-30 2019-03-25 jane.doe@test.com ALICE 2 10 EUR completed
4 64e718c9-ff99-47f1-8ca3-950c850777d4 2019-01-30 BOB 2 EUR processing
5 1af3322d-3cb1-46be-b312-0ae9ec311537 2019-03-16 BOB 9 EUR completed

View File

@@ -1,5 +1,16 @@
namespace sap.capire.bookshop; namespace sap.capire.bookshop;
using { Currency, managed, cuid } from '@sap/cds/common';
using {
Currency,
managed,
cuid
} from '@sap/cds/common';
type Status : String enum {
completed;
processing;
blocked;
}
entity Books : managed { entity Books : managed {
key ID : Integer; key ID : Integer;
@@ -11,7 +22,6 @@ entity Books : managed {
currency : Currency; currency : Currency;
} }
@cds.autoexpose
entity Authors : managed { entity Authors : managed {
key ID : Integer; key ID : Integer;
name : String(111); name : String(111);
@@ -19,15 +29,19 @@ entity Authors : managed {
dateOfDeath : Date; dateOfDeath : Date;
placeOfBirth : String; placeOfBirth : String;
placeOfDeath : String; placeOfDeath : String;
books : Association to many Books on books.author = $self; books : Association to many Books
on books.author = $self;
} }
entity Orders : cuid, managed { entity Orders : cuid, managed {
OrderNo : String @title : 'Order Number'; //> readable key OrderNo : String @title : 'Order Number'; //> readable key
Items : Composition of many OrderItems on Items.parent = $self; status : Status default 'processing';
Items : Composition of many OrderItems
on Items.parent = $self;
total : Decimal(9, 2)@readonly; total : Decimal(9, 2)@readonly;
currency : Currency; currency : Currency;
} }
entity OrderItems : cuid { entity OrderItems : cuid {
parent : Association to Orders; parent : Association to Orders;
book : Association to Books; book : Association to Books;

View File

@@ -5,17 +5,13 @@
"license": "SAP SAMPLE CODE LICENSE", "license": "SAP SAMPLE CODE LICENSE",
"dependencies": { "dependencies": {
"@sap/cds": "^3", "@sap/cds": "^3",
"express": "^4" "express": "^4",
"@sap/xb-msg-amqp-v100": "^0.9.35"
},
"devDependencies": {
"sqlite3": "^4.1.1"
}, },
"scripts": { "scripts": {
"start": "cds run --in-memory?", "start": "npx cds run"
"watch": "cds watch"
},
"cds": {
"requires": {
"db": {
"kind": "sql"
}
}
} }
} }

View File

@@ -1,6 +1,6 @@
using { sap.capire.bookshop as my } from '../db/schema'; using { sap.capire.bookshop as my } from '../db/schema';
service AdminService @(_requires:'authenticated-user',path:'/admin') { service AdminService @(_requires:'authenticated-user') {
entity Books as projection on my.Books; entity Books as projection on my.Books;
entity Authors as projection on my.Authors; entity Authors as projection on my.Authors;
entity Orders as select from my.Orders; entity Orders as select from my.Orders;
@@ -10,7 +10,7 @@ service AdminService @(_requires:'authenticated-user',path:'/admin') {
annotate AdminService.Orders with @odata.draft.enabled; annotate AdminService.Orders with @odata.draft.enabled;
// annotate AdminService.Books with @odata.draft.enabled; // annotate AdminService.Books with @odata.draft.enabled;
// Temporary workaround -> cap/issues#3121 // Temporary workaround -> https://github.wdf.sap.corp/cap/issues/issues/3121
extend service AdminService with { extend service AdminService with {
entity OrderItems as select from my.OrderItems; entity OrderItems as select from my.OrderItems;
} }

View File

@@ -3,7 +3,9 @@ using { sap.capire.bookshop as my } from '../db/schema';
@path:'/browse' @path:'/browse'
service CatalogService { service CatalogService {
@readonly entity Books as SELECT from my.Books { * } excluding { createdBy, modifiedBy }; @readonly entity Books as SELECT from my.Books {*,
author.name as author
} excluding { createdBy, modifiedBy };
@requires_: 'authenticated-user' @requires_: 'authenticated-user'
@insertonly entity Orders as projection on my.Orders; @insertonly entity Orders as projection on my.Orders;

View File

@@ -1,11 +1,10 @@
const cds = require('@sap/cds') const cds = require('@sap/cds')
const { Books } = cds.entities
/** Service implementation for CatalogService */ /** Service implementation for CatalogService */
module.exports = cds.service.impl(function () { module.exports = cds.service.impl(function () {
this.after ('READ', 'Books', each => each.stock > 111 && _addDiscount2(each,11)) const { Books, Orders } = this.entities
this.before ('CREATE', 'Orders', _reduceStock) this.after('READ', Books, each => each.stock > 111 && _addDiscount2(each, 11))
}) this.before('CREATE', Orders, _reduceStock)
/** Add some discount for overstocked books */ /** Add some discount for overstocked books */
function _addDiscount2(each, discount) { function _addDiscount2(each, discount) {
@@ -24,3 +23,4 @@ async function _reduceStock (req) {
) )
})) }))
} }
})

View File

@@ -1,14 +1,18 @@
### Browse Books ### Service Document
GET http://localhost:4004/browse/Books GET http://localhost:4004/browse
### Browse Books with expanded Authors ### Service $metadata document
GET http://localhost:4004/browse/Books?$expand=author GET http://localhost:4004/browse/$metadata
### Try to insert into Books ### Browsing Books
POST http://localhost:4004/browse/Books GET http://localhost:4004/browse/Books?
Content-Type: application/json # &$select=title,author
# &$expand=currency
# &sap-language=de
{ ### Browsing Authors
"title": "Anna Karenina", GET http://localhost:4004/admin/Authors?
"stock": 10 # &$select=name,dateOfBirth,placeOfBirth
} # &$expand=books($select=title;$expand=currency)
# &$filter=ID eq 101
# &sap-language=de

View File

@@ -1,15 +1,18 @@
### List all Orders - deep read
### List Books with their current stocks
GET http://localhost:4004/admin/Books?$select=ID,stock
### List all Orders
GET http://localhost:4004/admin/Orders? GET http://localhost:4004/admin/Orders?
&$expand=Items &$expand=Items
### Submit Orders - deep insert ### Submit Orders
POST http://localhost:4004/browse/Orders POST http://localhost:4004/browse/Orders
Content-Type: application/json Content-Type: application/json
{ "OrderNo":"1234", "Items":[ { "OrderNo":"2019-09...", "Items":[
{ "book_ID":201, "amount":5 }, { "book_ID":201, "amount":5 },
{ "book_ID":207, "amount":3 } { "book_ID":207, "amount":3 }
]} ]}
### Try to get the Orders # Sending this three times should result in a 409: 5 exceeds stock for book #201
GET http://localhost:4004/browse/Orders