-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplsql_lab_110521.sql
129 lines (127 loc) · 3.53 KB
/
plsql_lab_110521.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
rem
rem Run this as admin, if WEB or ORDS is note enabled with database actions usermanagement
rem
DECLARE
PRAGMA AUTONOMOUS_TRANSACTION;
BEGIN
ORDS.ENABLE_SCHEMA(p_enabled => TRUE,
p_schema => 'SENSORDATA',
p_url_mapping_type => 'BASE_PATH',
p_url_mapping_pattern => 'sensorapi',
p_auto_rest_auth => FALSE);
commit;
END;
/
rem
rem to be run as schema owner
rem
reem if needed get rid of old stuff
remdrop table sensors;
rem create table to hold non json sensor database
rem
create table sensors (id NUMBER GENERATED ALWAYS as IDENTITY(START with 1 INCREMENT by 1) primary key,
create_time timestamp default systimestamp,
objectname varchar2(40),
sensorname varchar2(20),
sensorvalue varchar2(20));
rem
rem add some dummy data to verify the GET request
rem
begin
insert into sensors (objectname,sensorname,sensorvalue) values('test','temp','22.0');
insert into sensors (objectname,sensorname,sensorvalue) values('test','temp','23.0');
insert into sensors (objectname,sensorname,sensorvalue) values('test','temp','24.0');
commit;
end;
/
rem
rem define the template
rem
begin
ORDS.DEFINE_MODULE(
p_module_name => 'sensors',
p_base_path => 'sensors',
p_items_per_page => 0,
p_status => 'PUBLISHED',
p_comments => NULL);
ORDS.DEFINE_TEMPLATE(
p_module_name => 'sensors',
p_pattern => 'iotapi/',
p_priority => 0,
p_etag_type => 'HASH',
p_etag_query => NULL,
p_comments => NULL);
ORDS.DEFINE_TEMPLATE(
p_module_name => 'sensors',
p_pattern => 'iotapi/:objectname',
p_priority => 0,
p_etag_type => 'HASH',
p_etag_query => NULL,
p_comments => NULL);
commit;
end;
/
rem
rem define handlers
rem
begin
ORDS.DEFINE_HANDLER(
p_module_name => 'sensors',
p_pattern => 'iotapi/',
p_method => 'GET',
p_source_type => 'json/collection',
p_items_per_page => 0,
p_mimes_allowed => '',
p_comments => NULL,
p_source =>
'select create_time,sensorname, sensorvalue from sensors'
);
commit;
end;
/
rem
rem define handlers
rem
begin
ORDS.DEFINE_HANDLER(
p_module_name => 'sensors',
p_pattern => 'iotapi/:objectname',
p_method => 'GET',
p_source_type => 'json/collection',
p_items_per_page => 0,
p_mimes_allowed => '',
p_comments => NULL,
p_source =>
'select objectname,create_time,sensorname, sensorvalue from sensors where objectname=:objectname'
);
commit;
end;
/
rem
rem define handlers
rem
begin
ORDS.DEFINE_HANDLER(
p_module_name => 'sensors',
p_pattern => 'iotapi/',
p_method => 'POST',
p_source_type => 'plsql/block',
p_items_per_page => 0,
p_mimes_allowed => 'application/json',
p_comments => NULL,
p_source =>
'declare
id sensors.id%type;
BEGIN
INSERT INTO sensors(objectname, sensorname, sensorvalue)
VALUES (:objectname,:sensorname,:sensorvalue)
RETURNING ID INTO id;
:status := 201;
END;'
);
COMMIT;
END;
/
rem
rem test with postman GET on https://<cloud tenant url>/ords/<schema name>/sensorapi/iotapi/
rem