@izara_project/izara-market-library-service-schemas 1.0.29 → 1.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. package/package.json +1 -1
  2. package/src/GenerateCodeLibs/src/Consts.js +11 -9
  3. package/src/GenerateCodeLibs/src/GenerateCodeLibs.js +54 -21
  4. package/src/MainLibs/src/Consts.js +43 -20
  5. package/src/reStructure/GenerateCode.js +2 -1
  6. package/src/reStructure/TemplateConfig.js +5 -1
  7. package/src/reStructure/TemplateData/EndpointPerService/generateTemplateData.js +108 -0
  8. package/src/reStructure/TemplateData/EndpointPerService/handler/api/data.js +76 -0
  9. package/src/reStructure/TemplateData/EndpointPerService/handler/api/request.json +7 -0
  10. package/src/reStructure/TemplateData/EndpointPerService/handler/api/template.ejs +73 -0
  11. package/src/reStructure/TemplateData/EndpointPerService/handler/dsq/data.js +81 -0
  12. package/src/reStructure/TemplateData/EndpointPerService/handler/dsq/request.json +7 -0
  13. package/src/reStructure/TemplateData/EndpointPerService/handler/dsq/template.ejs +125 -0
  14. package/src/reStructure/TemplateData/EndpointPerService/handler/inv/data.js +70 -0
  15. package/src/reStructure/TemplateData/EndpointPerService/handler/inv/request.json +7 -0
  16. package/src/reStructure/TemplateData/EndpointPerService/handler/inv/template.ejs +73 -0
  17. package/src/reStructure/TemplateData/EndpointPerService/handler/sqs/data.js +79 -0
  18. package/src/reStructure/TemplateData/EndpointPerService/handler/sqs/request.json +7 -0
  19. package/src/reStructure/TemplateData/EndpointPerService/handler/sqs/template.ejs +126 -0
  20. package/src/reStructure/TemplateData/{flowSchema/components/schema/inProcess/handler → EndpointPerService/mainFunction/create}/data.js +20 -13
  21. package/src/reStructure/TemplateData/EndpointPerService/mainFunction/create/template.ejs +624 -0
  22. package/src/reStructure/TemplateData/{flowSchema/components/schema/inProcess/mainFunction → EndpointPerService/mainFunction/delete}/data.js +18 -11
  23. package/src/reStructure/TemplateData/EndpointPerService/mainFunction/delete/template.ejs +176 -0
  24. package/src/reStructure/TemplateData/EndpointPerService/mainFunction/get/data.js +56 -0
  25. package/src/reStructure/TemplateData/EndpointPerService/mainFunction/get/template.ejs +234 -0
  26. package/src/reStructure/TemplateData/EndpointPerService/mainFunction/update/data.js +56 -0
  27. package/src/reStructure/TemplateData/EndpointPerService/mainFunction/update/template.ejs +330 -0
  28. package/src/reStructure/TemplateData/EndpointPerService/yaml/data.js +177 -0
  29. package/src/reStructure/TemplateData/EndpointPerService/yaml/template.ejs +26 -0
  30. package/src/reStructure/TemplateData/externalService/generateTemplateData.js +1 -1
  31. package/src/reStructure/TemplateData/externalService/lambdaRole/data.js +91 -249
  32. package/src/reStructure/TemplateData/externalService/lambdaRole/template.ejs +1 -1
  33. package/src/reStructure/TemplateData/externalService/snsTopicSubscriptions/data.js +10 -8
  34. package/src/reStructure/TemplateData/externalService/snsTopicSubscriptions/template.ejs +1 -1
  35. package/src/reStructure/TemplateData/findData/findDataYaml/data.js +2 -2
  36. package/src/reStructure/TemplateData/flowSchema/components/upload/confirmReserved/functionYaml/data.js +8 -7
  37. package/src/reStructure/TemplateData/flowSchema/components/upload/confirmReserved/handler/data.js +4 -4
  38. package/src/reStructure/TemplateData/flowSchema/components/upload/confirmReserved/mainFunction/data.js +2 -2
  39. package/src/reStructure/TemplateData/flowSchema/components/upload/createObject/functionYaml/data.js +5 -31
  40. package/src/reStructure/TemplateData/flowSchema/components/upload/createObject/handler/data.js +4 -22
  41. package/src/reStructure/TemplateData/flowSchema/components/upload/createObject/handler/template.ejs +3 -31
  42. package/src/reStructure/TemplateData/flowSchema/components/upload/createObject/mainFunction/data.js +1 -1
  43. package/src/reStructure/TemplateData/flowSchema/components/upload/createObjectComplete/functionYaml/data.js +6 -6
  44. package/src/reStructure/TemplateData/flowSchema/components/upload/createObjectComplete/handler/data.js +4 -4
  45. package/src/reStructure/TemplateData/flowSchema/components/upload/createObjectComplete/mainFunction/data.js +4 -4
  46. package/src/reStructure/TemplateData/flowSchema/components/upload/createObjectComplete/sns-sqs/data.js +1 -1
  47. package/src/reStructure/TemplateData/flowSchema/components/upload/createObjectComplete/sns-sqs/template.ejs +1 -1
  48. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{getSignUrls → createPresignUrl}/functionYaml/data.js +45 -14
  49. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{getSignUrls → createPresignUrl}/functionYaml/template.ejs +3 -0
  50. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{getSignUrls → createPresignUrl}/handler/data.js +6 -6
  51. package/src/reStructure/TemplateData/flowSchema/{legacy/hookCode-old/handler/templateAsyncHandler.ejs → components/upload/preSignUrl/createPresignUrl/handler/template.ejs} +26 -11
  52. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{getSignUrls → createPresignUrl}/mainFunction/data.js +11 -8
  53. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/createPresignUrl/mainFunction/template.ejs +253 -0
  54. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{reservedLimit → createPresignUrl}/queue/data.js +1 -1
  55. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/reservedLimit/functionYaml/data.js +14 -42
  56. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/reservedLimit/functionYaml/template.ejs +0 -3
  57. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/reservedLimit/handler/data.js +6 -6
  58. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/reservedLimit/handler/template.ejs +40 -45
  59. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/reservedLimit/mainFunction/data.js +5 -8
  60. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/reservedLimit/mainFunction/template.ejs +100 -190
  61. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{getSignUrls → reservedLimit}/sqs/data.js +4 -4
  62. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{getSignUrls → reservedLimit}/sqs/template.ejs +2 -2
  63. package/src/reStructure/TemplateData/flowSchema/components/upload/processFile/functionYml/HdrS3/data.js +9 -7
  64. package/src/reStructure/TemplateData/flowSchema/components/upload/processFile/handler/handlerS3/data.js +4 -4
  65. package/src/reStructure/TemplateData/flowSchema/components/upload/processFile/mainFunction/data.js +4 -4
  66. package/src/reStructure/TemplateData/flowSchema/components/upload/processFile/queue/s3Template.ejs +1 -1
  67. package/src/reStructure/TemplateData/flowSchema/components/upload/relate/S3/data.js +5 -2
  68. package/src/reStructure/TemplateData/flowSchema/components/websocket/connect/functionYaml/data.js +3 -3
  69. package/src/reStructure/TemplateData/flowSchema/components/websocket/connect/functionYaml/template.ejs +2 -0
  70. package/src/reStructure/TemplateData/flowSchema/components/websocket/connect/handler/data.js +3 -2
  71. package/src/reStructure/TemplateData/flowSchema/components/websocket/connect/handler/template.ejs +4 -16
  72. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchema/functionYaml/data.js +115 -0
  73. package/src/reStructure/TemplateData/flowSchema/{components/schema/inProcess → flowSchemaOwnTopic/flowSchema}/functionYaml/template.ejs +1 -20
  74. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchema/handler/data.js +70 -0
  75. package/src/reStructure/TemplateData/flowSchema/{components/schema/inProcess → flowSchemaOwnTopic/flowSchema}/handler/template.ejs +14 -32
  76. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchema/mainFunction/data.js +64 -0
  77. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchema/mainFunction/template.ejs +104 -0
  78. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchemaComplete/functionYaml/data.js +115 -0
  79. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchemaComplete/functionYaml/template.ejs +20 -0
  80. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchemaComplete/handler/data.js +71 -0
  81. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchemaComplete/handler/template.ejs +85 -0
  82. package/src/reStructure/TemplateData/flowSchema/{components/upload/hook/hookLogic → flowSchemaOwnTopic/flowSchemaComplete/mainFunction}/data.js +30 -10
  83. package/src/reStructure/TemplateData/flowSchema/flowSchemaOwnTopic/flowSchemaComplete/mainFunction/template.ejs +105 -0
  84. package/src/reStructure/TemplateData/flowSchema/generateTemplateData.js +78 -55
  85. package/src/reStructure/TemplateData/generateRole/createSharedResource.js +21 -1
  86. package/src/reStructure/TemplateData/perActionComplete/create/mainFunction/template.ejs +35 -44
  87. package/src/reStructure/TemplateData/perActionComplete/create/sns-out/template.ejs +1 -1
  88. package/src/reStructure/TemplateData/perActionComplete/create/yaml/data.js +4 -5
  89. package/src/reStructure/TemplateData/perActionComplete/delete/yaml/data.js +5 -4
  90. package/src/reStructure/TemplateData/perActionComplete/generateTemplateData.js +15 -2
  91. package/src/reStructure/TemplateData/perActionComplete/get/yaml/data.js +7 -4
  92. package/src/reStructure/TemplateData/perActionComplete/update/sns-out/data.js +1 -1
  93. package/src/reStructure/TemplateData/perActionComplete/update/yaml/data.js +5 -4
  94. package/src/reStructure/TemplateData/processLogical/yaml/data.js +3 -3
  95. package/src/reStructure/TemplateData/processLogicalPagination/yaml/dsq/data.js +1 -1
  96. package/src/reStructure/TemplateData/processLogicalPagination/yaml/sqs/data.js +2 -2
  97. package/src/reStructure/TemplateData/relationshipPerAction/create/action/functionYaml/api/data.js +1 -1
  98. package/src/reStructure/TemplateData/relationshipPerAction/create/action/functionYaml/dsq/data.js +1 -1
  99. package/src/reStructure/TemplateData/relationshipPerAction/create/action/functionYaml/inv/data.js +1 -1
  100. package/src/reStructure/TemplateData/relationshipPerAction/create/action/functionYaml/sqs/data.js +3 -3
  101. package/src/reStructure/TemplateData/relationshipPerAction/create/action/sns-in-sqs/snsTemplate.ejs +1 -1
  102. package/src/reStructure/TemplateData/relationshipPerAction/create/complete/functionYaml/data.js +2 -2
  103. package/src/reStructure/TemplateData/relationshipPerAction/create/complete/mainFunction/data.js +1 -1
  104. package/src/reStructure/TemplateData/relationshipPerAction/create/complete/sns-in-sqs/template.ejs +0 -1
  105. package/src/reStructure/TemplateData/relationshipPerAction/create/complete/sns-out/template.ejs +1 -1
  106. package/src/reStructure/TemplateData/relationshipPerAction/delete/action/functionYaml/api/data.js +1 -1
  107. package/src/reStructure/TemplateData/relationshipPerAction/delete/action/functionYaml/dsq/data.js +1 -1
  108. package/src/reStructure/TemplateData/relationshipPerAction/delete/action/functionYaml/inv/data.js +1 -1
  109. package/src/reStructure/TemplateData/relationshipPerAction/delete/action/functionYaml/sqs/data.js +3 -3
  110. package/src/reStructure/TemplateData/relationshipPerAction/delete/action/sns-in-sqs/snsTemplate.ejs +1 -1
  111. package/src/reStructure/TemplateData/relationshipPerAction/delete/complete/functionYaml/data.js +2 -2
  112. package/src/reStructure/TemplateData/relationshipPerAction/delete/complete/sns-out/template.ejs +1 -1
  113. package/src/reStructure/TemplateData/relationshipPerAction/get/action/functionYaml/api/data.js +1 -1
  114. package/src/reStructure/TemplateData/relationshipPerAction/get/action/functionYaml/dsq/data.js +1 -1
  115. package/src/reStructure/TemplateData/relationshipPerAction/get/action/functionYaml/inv/data.js +1 -1
  116. package/src/reStructure/TemplateData/relationshipPerAction/get/action/functionYaml/sqs/data.js +4 -4
  117. package/src/reStructure/TemplateData/relationshipPerAction/get/action/sns-in-sqs/snsTemplate.ejs +1 -1
  118. package/src/reStructure/TemplateData/relationshipPerAction/get/complete/functionYaml/data.js +2 -2
  119. package/src/reStructure/TemplateData/relationshipPerAction/get/complete/sns-out/template.ejs +1 -1
  120. package/src/reStructure/TemplateData/relationshipPerAction/update/action/functionYaml/api/data.js +1 -1
  121. package/src/reStructure/TemplateData/relationshipPerAction/update/action/functionYaml/dsq/data.js +1 -1
  122. package/src/reStructure/TemplateData/relationshipPerAction/update/action/functionYaml/inv/data.js +1 -1
  123. package/src/reStructure/TemplateData/relationshipPerAction/update/action/functionYaml/sqs/data.js +4 -4
  124. package/src/reStructure/TemplateData/relationshipPerAction/update/action/sns-in-sqs/snsTemplate.ejs +1 -1
  125. package/src/reStructure/TemplateData/relationshipPerAction/update/complete/functionYaml/data.js +2 -2
  126. package/src/reStructure/TemplateData/relationshipPerAction/update/complete/sns-out/template.ejs +1 -1
  127. package/src/reStructure/TemplateData/resourceYaml/dynamodb/defaultDynamoDbTable.js +1 -1
  128. package/src/reStructure/TemplateData/resourceYaml/dynamodb/generateDynamoPerLink.js +1 -1
  129. package/src/reStructure/TemplateData/resourceYaml/dynamodb/mainResourcePerObjectSchemaData.js +1 -1
  130. package/src/reStructure/TemplateData/resourceYaml/generateTemplateData.js +6 -12
  131. package/src/reStructure/TemplateData/resourceYaml/sns-in-sqs/defaultSnsInSqsForFindDataAndProcessLogical.js +1 -1
  132. package/src/reStructure/TemplateData/resourceYaml/sns-in-sqs/snsAndSqsPerActionData.js +22 -49
  133. package/src/reStructure/TemplateData/resourceYaml/sns-in-sqs/snsTemplate.ejs +1 -1
  134. package/src/reStructure/TemplateData/resourceYaml/sns-out/data.js +8 -24
  135. package/src/reStructure/TemplateData/resourceYaml/sns-out/template.ejs +1 -1
  136. package/src/reStructure/TemplateData/testTemplate/template.ejs +0 -5
  137. package/src/reStructure/TemplateData/flowSchema/components/schema/inProcess/functionYaml/data.js +0 -76
  138. package/src/reStructure/TemplateData/flowSchema/components/schema/inProcess/sns-sqs/data.js +0 -35
  139. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/functionYaml/data.js +0 -34
  140. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/functionYaml/template.ejs +0 -0
  141. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/handler/data.js +0 -34
  142. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/handler/template.ejs +0 -0
  143. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/mainFunction/data.js +0 -34
  144. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/mainFunction/template.ejs +0 -0
  145. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/sns-sqs/data.js +0 -34
  146. package/src/reStructure/TemplateData/flowSchema/components/schema/outComplete/sns-sqs/template.ejs +0 -0
  147. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/handler/data.js +0 -93
  148. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/handler/templateAsyncHandler.ejs +0 -110
  149. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/handler/templateSyncHandler.ejs +0 -49
  150. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/mainFunction/data.js +0 -65
  151. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/mainFunction/template.ejs +0 -7
  152. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/queue/data.js +0 -72
  153. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/queue/snsTemplate.ejs +0 -59
  154. package/src/reStructure/TemplateData/flowSchema/components/upload/hook/queue/sqsTemplate.ejs +0 -43
  155. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/getSignUrls/handler/template.ejs +0 -120
  156. package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/getSignUrls/mainFunction/template.ejs +0 -163
  157. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/functionYaml/data.js +0 -101
  158. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/functionYaml/template.ejs +0 -43
  159. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/handler/data.js +0 -93
  160. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/handler/templateSyncHandler.ejs +0 -49
  161. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/hookLogic/data.js +0 -64
  162. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/mainFunction/data.js +0 -66
  163. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/mainFunction/template.ejs +0 -30
  164. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/queue/data.js +0 -124
  165. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/queue/snsTemplate.ejs +0 -59
  166. package/src/reStructure/TemplateData/flowSchema/legacy/hookCode-old/queue/sqsTemplate.ejs +0 -43
  167. package/src/reStructure/TemplateData/relationshipPerAction.zip +0 -0
  168. /package/src/reStructure/TemplateData/flowSchema/components/upload/preSignUrl/{reservedLimit → createPresignUrl}/queue/template.ejs +0 -0
  169. /package/src/reStructure/TemplateData/flowSchema/{components/schema/inProcess/mainFunction/template.ejs → flowSchemaOwnTopic/sns-in/data.js} +0 -0
  170. /package/src/reStructure/TemplateData/flowSchema/{components/schema/inProcess/sns-sqs/template.ejs → flowSchemaOwnTopic/sns-out/data.js} +0 -0
@@ -1,43 +0,0 @@
1
- <%_ const join = require('path').join; _%>
2
- <%_ const { HANDLER } = require('@izara_project/izara-core-library-service-schemas/src/Consts'); _%>
3
- <%- firstLetterUpperCase(functionNameConfig) %>:
4
- handler: <%- join(resourceLocation, `${functionName}_${firstLetterUpperCase(handlerType)}.main`)%>
5
- name: ${self:custom.iz_resourcePrefix}<%- functionName %><%- firstLetterUpperCase(handlerType) %>
6
- <%_ if (handlerType === firstLetterUpperCase(HANDLER.hdrDsq) || handlerType === firstLetterUpperCase(HANDLER.hdrSqs)) { _%>
7
- events:
8
- - sqs:
9
- arn: arn:aws:sqs:${self:custom.iz_region}:${self:custom.iz_accountId}:${self:custom.iz_resourcePrefix}<%- queueName %><%- firstLetterUpperCase(handlerType) %>
10
- batchSize: 10
11
- <%_ if (filterPattern) { _%>
12
- filterPatterns: #**** need to update serverless framwork upper v.2.69.1
13
- - body: {"MessageAttributes":{"callingFlow":{"Value":["${self:custom.iz_resourcePrefix}<%- filterPattern %>"]}}} # functionName of callingFlow
14
- - body: {"MessageAttributes":{"callingFlow":{"Value":[{"exists":false}]}}}
15
- <%_ } _%>
16
- <%_ } else if (handlerType === firstLetterUpperCase(HANDLER.hdrApi)) { _%>
17
- events:
18
- - http:
19
- path: <%- objectType %>/<%- firstLetterUpperCase(action) %>
20
- method: <%- event %>
21
- cors: true
22
- #<#<%- firstLetterUpperCase(functionName) %><%- firstLetterUpperCase(handlerType) %>Authorizer#>
23
- #<#/<%- firstLetterUpperCase(functionName) %><%- firstLetterUpperCase(handlerType) %>Authorizer#>
24
- <%_ } _%>
25
- iamRoleStatements:
26
- <%_ additionalResourcePermission.forEach(resourcePermission => { _%>
27
- - Effect: <%- resourcePermission.effect %>
28
- Action:
29
- <%_ Object.keys(resourcePermission.action).forEach(resourcePerAction => { _%>
30
- <%_ resourcePermission.action[resourcePerAction].forEach(permission => { _%>
31
- - <%- resourcePerAction %>:<%- permission %>
32
- <%_ }) _%>
33
- <%_ }) _%>
34
- Resource:
35
- <%_ resourcePermission.resource.forEach(resource => { _%>
36
- - "<%- resource %>"
37
- <%_ }) _%>
38
- <%_}) _%>
39
- #<#<%- functionName %><%- handlerType %>IamRole#>
40
- #<#/<%- functionName %><%- handlerType %>IamRole#>
41
- <%_ function firstLetterUpperCase(text){
42
- return text.charAt(0).toUpperCase() + text.slice(1)
43
- } _%>
@@ -1,93 +0,0 @@
1
- /*
2
- Copyright (C) 2020 Sven Mason <http://izara.io>
3
-
4
- This program is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU Affero General Public License as
6
- published by the Free Software Foundation, either version 3 of the
7
- License, or (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU Affero General Public License for more details.
13
-
14
- You should have received a copy of the GNU Affero General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
- */
17
-
18
- 'use strict';
19
- const path = require('path');
20
- const { HANDLER } = require('@izara_project/izara-core-library-service-schemas/src/Consts')
21
- const { createHookFunction } = require('../../../../../../SourceManager/src/Utils')
22
- const { FLOW_SCHEMA_HOOK_STATE } = require('@izara_project/izara-core-library-service-schemas/src/Consts')
23
- const { firstLetterUpperCase: upperCase } = require('../../../../../../MainLibs/src/Utils')
24
- const { SOURCE_PATH, defaultIamRolePerAction, createIamRole, RESOURCE_CLASSES, SNS_RESOURCE, resourceNames, DYNAMO_RESOURCE, SAVE_FILE_NAME, FUNCTION_NAME, shortNameHandler, SQS_RESOURCE } = require("../../../../libs/Consts");
25
- const asyncTemplatePath = path.join(__dirname, "templateAsyncHandler.ejs")
26
- const syncTemplatePath = path.join(__dirname, "templateSyncHandler.ejs")
27
- /**
28
- * receive objectSchema
29
- * create data for WebScoket handler template
30
- *
31
- * @param {Object} objectSchema
32
- * @return {{templatePath, templateData,setting}}
33
- */
34
-
35
- function data(_izContext, flowSchema, srcPath) {
36
- return [createSourceParams(_izContext, flowSchema, srcPath)]
37
- }
38
-
39
- function createSourceParams(_izContext, flowSchema, srcPath) {
40
- let hook;
41
- let hookFunctionName
42
- let handlerType;
43
- let queueName;
44
- if (flowSchema?.hook) {
45
- for (const [hookName, hookProperties] of Object.entries(flowSchema.hook)) {
46
- for (const hookFunction of hookProperties.functionList) {
47
- if (hookName === FLOW_SCHEMA_HOOK_STATE.beforeCreate) {
48
- if (hookFunction.event.continueFlow === true && hookFunction.event.initialEvent === false) {
49
- hook = true
50
- hookFunctionName = upperCase(hookFunction.name)
51
- handlerType = upperCase(hookFunction.event.handlerType);
52
- if (upperCase(handlerType) === upperCase(HANDLER.hdrDsq)) {
53
- queueName = hookFunction.event.queueName;
54
- } else if (upperCase(handlerType) === upperCase(HANDLER.hdrSqs)) {
55
- queueName = hookFunction.event.topicName;
56
- }
57
- }
58
- }
59
- }
60
- }
61
- }
62
-
63
- if (upperCase(handlerType) === upperCase(HANDLER.hdrSqs) || upperCase(handlerType) === upperCase(HANDLER.hdrDsq)) {
64
- return {
65
- templatePath: asyncTemplatePath,
66
- templateData: {
67
- hookFunctionName,
68
- queueName
69
- },
70
- setting: {
71
- savePath: path.join(srcPath, SOURCE_PATH.generatedCodeHookFunction),
72
- saveFileName: `${upperCase(hookFunctionName)}_${upperCase(handlerType)}`,
73
- fileExtension: ".js",
74
- isAppend: false
75
- }
76
- }
77
- } else if (upperCase(handlerType) === upperCase(HANDLER.hdrApi) || upperCase(handlerType) === upperCase(HANDLER.hdrInv)) {
78
- return {
79
- templatePath: syncTemplatePath,
80
- templateData: {
81
- hookFunctionName,
82
- },
83
- setting: {
84
- savePath: path.join(srcPath, SOURCE_PATH.generatedCodeHookFunction),
85
- saveFileName: `${upperCase(hookFunctionName)}_${upperCase(handlerType)}`,
86
- fileExtension: ".js",
87
- isAppend: false
88
- }
89
- }
90
- }
91
- }
92
-
93
- module.exports = data;
@@ -1,49 +0,0 @@
1
- /*
2
- Copyright (C) 2020 Sven Mason <http://izara.io>
3
-
4
- This program is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU Affero General Public License as
6
- published by the Free Software Foundation, either version 3 of the
7
- License, or (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU Affero General Public License for more details.
13
-
14
- You should have received a copy of the GNU Affero General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
- */
17
-
18
- 'use strict';
19
-
20
- const izara = require("@izara_project/izara-middleware");
21
- const middleware = izara.middlewareHandler;
22
-
23
- // const CorrelationIds = require('@izara_project/izara-core-library-correlation-ids')
24
- // const Logger = require('@izara_project/izara-core-library-logger');
25
- // const IntegrationTestDetail = require('@izara_project/izara-core-library-integration-tests')
26
-
27
- const <%- hookFunctionName %> = require('./<%- hookFunctionName %>_Main');
28
-
29
- // validate event params in middlewware before into function.
30
- const validatorSchema = {};
31
- middleware.setValidatorSchema(validatorSchema);
32
-
33
- module.exports.main = middleware.wrap(async (event, context, callback) => {
34
- event._izContext.logger.debug('Event:', event);
35
- event._izContext.logger.debug('context:', context);
36
-
37
- try {
38
-
39
- // invoke LambdaFunction
40
- return await <%- hookFunctionName %>(
41
- event._izContext, // correlationId/logger/integrationTestDetail/uniqueRequestId
42
- event
43
- );
44
-
45
- } catch (err) {
46
- event._izContext.logger.error('Error, <%- hookFunctionName %>: ', err);
47
- throw (err);
48
- }
49
- });
@@ -1,64 +0,0 @@
1
- /*
2
- Copyright (C) 2020 Sven Mason <http://izara.io>
3
-
4
- This program is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU Affero General Public License as
6
- published by the Free Software Foundation, either version 3 of the
7
- License, or (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU Affero General Public License for more details.
13
-
14
- You should have received a copy of the GNU Affero General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
- */
17
-
18
- 'use strict';
19
- const path = require('path');
20
- const { HANDLER } = require('@izara_project/izara-core-library-service-schemas/src/Consts')
21
- const { createHookFunction } = require('../../../../../../SourceManager/src/Utils')
22
- const { FLOW_SCHEMA_HOOK_STATE } = require('@izara_project/izara-core-library-service-schemas/src/Consts')
23
- const { firstLetterUpperCase: upperCase } = require('../../../../../../MainLibs/src/Utils')
24
- const { SOURCE_PATH, defaultIamRolePerAction, createIamRole, RESOURCE_CLASSES, SNS_RESOURCE, resourceNames, DYNAMO_RESOURCE, SAVE_FILE_NAME, FUNCTION_NAME, shortNameHandler, SQS_RESOURCE } = require("../../../../libs/Consts");
25
- const asyncTemplatePath = path.join(__dirname, "templateAsyncHandler.ejs")
26
- const syncTemplatePath = path.join(__dirname, "templateSyncHandler.ejs")
27
- /**
28
- * receive objectSchema
29
- * create data for WebScoket handler template
30
- *
31
- * @param {Object} objectSchema
32
- * @return {{templatePath, templateData,setting}}
33
- */
34
-
35
- async function data(_izContext, flowSchema, srcPath) {
36
- return [await createSourceParams(_izContext, flowSchema, srcPath)]
37
- }
38
-
39
- async function createSourceParams(_izContext, flowSchema, srcPath) {
40
- if (flowSchema?.hook) {
41
- await Promise.all(
42
- Object.values(flowSchema.hook).map(hookProperties =>
43
- Promise.all(
44
- hookProperties.functionList.map(hookFunction =>
45
- createHookFunction(
46
- _izContext,
47
- hookFunction.logicFunction,
48
- {
49
- fileExtension: ".js",
50
- isAppend: false,
51
- saveFileName: `${hookFunction.name}`,
52
- destinationPath: path.join(srcPath, SOURCE_PATH.logicalFunctionHook),
53
- }
54
- )
55
- )
56
- )
57
- )
58
- );
59
- }
60
- }
61
-
62
-
63
-
64
- module.exports = data
@@ -1,66 +0,0 @@
1
- /*
2
- Copyright (C) 2020 Sven Mason <http://izara.io>
3
-
4
- This program is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU Affero General Public License as
6
- published by the Free Software Foundation, either version 3 of the
7
- License, or (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU Affero General Public License for more details.
13
-
14
- You should have received a copy of the GNU Affero General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
- */
17
-
18
- 'use strict';
19
- const path = require('path');
20
- const { createHookFunction } = require('../../../../../../GenerateCodeLibs/src/GenerateCodeLibs')
21
- const { FLOW_SCHEMA_HOOK_STATE } = require('@izara_project/izara-core-library-service-schemas/src/Consts')
22
- const { firstLetterUpperCase: upperCase } = require('../../../../../../MainLibs/src/Utils')
23
- const { SOURCE_PATH, defaultIamRolePerAction, createIamRole, RESOURCE_CLASSES, SNS_RESOURCE, resourceNames, DYNAMO_RESOURCE, SAVE_FILE_NAME, FUNCTION_NAME, shortNameHandler } = require("../../../../libs/Consts");
24
- const templatePath = path.join(__dirname, "template.ejs")
25
- /**
26
- * receive objectSchema
27
- * create data for WebScoket handler template
28
- *
29
- * @param {Object} objectSchema
30
- * @return {{templatePath, templateData,setting}}
31
- */
32
-
33
- function data(_izContext, flowSchema, srcPath) {
34
- return [createSourceParams(_izContext, flowSchema, srcPath)]
35
- }
36
-
37
- function createSourceParams(_izContext, flowSchema, srcPath) {
38
- let hook;
39
- let hookFunctionName;
40
- if (flowSchema?.hook) {
41
- for (const [hookName, hookProperties] of Object.entries(flowSchema.hook)) {
42
- for (const hookFunction of hookProperties.functionList) {
43
- if (hookName === FLOW_SCHEMA_HOOK_STATE.beforeCreate) {
44
- if (hookFunction.event.continueFlow === true) {
45
- hook = true
46
- hookFunctionName = hookFunction.name
47
- }
48
- }
49
- }
50
- }
51
- }
52
- return {
53
- templatePath: templatePath,
54
- templateData: {
55
- hookFunctionName
56
- },
57
- setting: {
58
- savePath: path.join(srcPath, SOURCE_PATH.generatedCodeHookFunction),
59
- saveFileName: `${upperCase(hookFunctionName)}_Main`,
60
- fileExtension: ".js",
61
- isAppend: false
62
- }
63
- }
64
- }
65
-
66
- module.exports = data;
@@ -1,30 +0,0 @@
1
- /*
2
- Copyright (C) 2020 Sven Mason <http://izara.io>
3
-
4
- This program is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU Affero General Public License as
6
- published by the Free Software Foundation, either version 3 of the
7
- License, or (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU Affero General Public License for more details.
13
-
14
- You should have received a copy of the GNU Affero General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
- */
17
-
18
- 'use strict';
19
-
20
- const <%- hookFunctionName %> = require("../../HookLogicFunction/source/<%- upperCase(hookFunctionName) %>");
21
- const createObjectMain = require("../../../CreateObjectS3_Main")
22
-
23
- module.exports.main = async (event, callingFlow) => {
24
- const result = await <%- hookFunctionName %>(event);
25
- await createObjectMain(...result, callingFlow);
26
- }
27
-
28
- <%_ function upperCase(string) {
29
- return string.charAt(0).toUpperCase() + string.slice(1);
30
- } _%>
@@ -1,124 +0,0 @@
1
- /*
2
- Copyright (C) 2020 Sven Mason <http://izara.io>
3
-
4
- This program is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU Affero General Public License as
6
- published by the Free Software Foundation, either version 3 of the
7
- License, or (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU Affero General Public License for more details.
13
-
14
- You should have received a copy of the GNU Affero General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
- */
17
-
18
- 'use strict';
19
- const path = require('path');
20
- const { HANDLER } = require('@izara_project/izara-core-library-service-schemas/src/Consts')
21
- const { firstLetterUpperCase: upperCase } = require('../../../../../../MainLibs/src/Utils')
22
- const { SOURCE_PATH, defaultIamRolePerAction, createIamRole, RESOURCE_CLASSES, SNS_RESOURCE, resourceNames, DYNAMO_RESOURCE, SAVE_FILE_NAME, FUNCTION_NAME, shortNameHandler, SQS_RESOURCE } = require("../../../../libs/Consts");
23
- const snsTemplatePath = path.join(__dirname, "./snsTemplate.ejs");
24
- const sqsTemplatePath = path.join(__dirname, "./sqsTemplate.ejs");
25
- /**
26
- * receive objectSchema
27
- * create data for WebScoket handler template
28
- *
29
- * @param {Object} objectSchema
30
- * @return {{templatePath, templateData,setting}}
31
- */
32
-
33
- function createSourceParams(_izContext, flowSchema, srcPath) {
34
- let queueNames = [];
35
- let resultForCreateQueueHook = []
36
- const settings = {
37
- saveFileName: SAVE_FILE_NAME.snsInSqsYaml,
38
- savePath: path.join(srcPath, SOURCE_PATH.resourceYaml),
39
- fileExtension: ".yml",
40
- isAppend: true
41
- }
42
- if (flowSchema?.hook) {
43
- for (const hookProperties of Object.values(flowSchema.hook)) {
44
- for (const hookFunction of hookProperties.functionList) {
45
- if (hookFunction.event.continueFlow === true) {
46
- if (hookFunction.event.handlerType === HANDLER.hdrSqs) {
47
- queueNames.push(
48
- {
49
- queueName: "In" + createResourceSqsAndSns(
50
- hookFunction.event.handlerType,
51
- upperCase(hookProperties.name)
52
- )
53
- }
54
- )
55
- } else if (hookFunction.event.handlerType === HANDLER.hdrDsq) {
56
- queueNames.push(
57
- {
58
- queueName: createResourceSqsAndSns(
59
- hookFunction.event.handlerType,
60
- upperCase(hookFunction.name)
61
- )
62
- }
63
- )
64
- }
65
- if (hookFunction.event.createNewTopic === true) {
66
- if (hookFunction.event.handlerType === HANDLER.hdrSqs) {
67
- queueNames.push(
68
- {
69
- queueName: createResourceSqsAndSns(
70
- hookFunction.event.handlerType,
71
- upperCase(hookFunction.event.topicName)
72
- )
73
- }
74
- )
75
- } else if (hookFunction.event.handlerType === HANDLER.hdrDsq) {
76
- queueNames.push(
77
- {
78
- queueName: createResourceSqsAndSns(
79
- hookFunction.event.handlerType,
80
- upperCase(hookFunction.event.queueName)
81
-
82
- )
83
- }
84
- )
85
- }
86
- }
87
- }
88
- }
89
- }
90
- }
91
-
92
-
93
- for (const queueName of queueNames) {
94
- if (queueName.queueName.includes(upperCase(HANDLER.hdrDsq))) {
95
- resultForCreateQueueHook.push({
96
- templatePath: sqsTemplatePath,
97
- templateData: queueName.queueName,
98
- setting: settings
99
- })
100
- } else {
101
- resultForCreateQueueHook.push({
102
- templatePath: snsTemplatePath,
103
- templateData: queueName,
104
- setting: settings
105
- })
106
- }
107
- }
108
- console.log("resultForCreateQueueHook: ", resultForCreateQueueHook);
109
- return resultForCreateQueueHook;
110
- }
111
-
112
- function createResourceSqsAndSns(handlerType, resourceName) {
113
- let queueName
114
- if (handlerType === HANDLER.hdrDsq) {
115
- queueName = upperCase(resourceName) + handlerType
116
- } else if (handlerType === HANDLER.hdrSqs) {
117
- if (resourceName.includes("In")) {
118
- resourceName.slice(2)
119
- }
120
- queueName = resourceName
121
- }
122
- return queueName
123
- }
124
- module.exports = createSourceParams;
@@ -1,59 +0,0 @@
1
- ##===== [Create topic in]
2
- In<%- queueName %>:
3
- Type: AWS::SNS::Topic
4
- Properties:
5
- DisplayName: "SNS Message in"
6
- TopicName: ${self:custom.iz_resourcePrefix}In<%- queueName %>
7
- ##===== SNS Subscription
8
- ##===== [Topic In]
9
- SubscriptionIn<%- queueName %>:
10
- Type: AWS::SNS::Subscription
11
- Properties:
12
- TopicArn: !Ref In<%- queueName %>
13
- Endpoint: "arn:aws:sqs:${self:custom.iz_region}:${self:custom.iz_accountId}:${self:custom.iz_resourcePrefix}<%- queueName %>HdrSqs"
14
- Protocol: "sqs"
15
- ##===== [Queue]
16
- <%- queueName %>HdrSqs:
17
- Type: "AWS::SQS::Queue"
18
- Properties:
19
- QueueName: ${self:custom.iz_resourcePrefix}<%- queueName %>HdrSqs
20
- RedrivePolicy:
21
- deadLetterTargetArn:
22
- # !GetAtt
23
- Fn::GetAtt:
24
- - <%- queueName %>HdrSqsDLQ
25
- - Arn
26
- maxReceiveCount: 3
27
- VisibilityTimeout: 120
28
- ##==== [QueueDLQ]
29
- <%- queueName %>HdrSqsDLQ:
30
- Type: AWS::SQS::Queue
31
- Properties:
32
- QueueName: ${self:custom.iz_resourcePrefix}<%- queueName %>HdrSqsDLQ
33
- ##==== [QueuePolicy]
34
- <%- queueName %>HdrSqsPolicy:
35
- Type: AWS::SQS::QueuePolicy
36
- Properties:
37
- PolicyDocument:
38
- Version: "2012-10-17"
39
- Statement:
40
- - Sid: "allow-sns-messages"
41
- Effect: Allow
42
- Principal: "*"
43
- Resource:
44
- # !GetAtt
45
- Fn::GetAtt:
46
- - <%- queueName %>HdrSqs
47
- - Arn
48
- Action: "SQS:SendMessage"
49
- Queues:
50
- - Ref: <%- queueName %>HdrSqs
51
- #<#<%- firstLetterUpperCase(queueName) %>QueueSetting#>
52
- #<#/<%- firstLetterUpperCase(queueName) %>QueueSetting#>
53
-
54
- <%_ function firstLetterUpperCase(text){
55
- return text.charAt(0).toUpperCase() + text.slice(1)
56
- } _%>
57
- <%_ function firstLetterLowerCase(str) {
58
- return str.charAt(0).toLowerCase() + str.slice(1)
59
- } _%>
@@ -1,43 +0,0 @@
1
- #------- queue ---------
2
- <%- queueName %>:
3
- Type: "AWS::SQS::Queue"
4
- Properties:
5
- QueueName: ${self:custom.iz_resourcePrefix}<%- queueName %>
6
- RedrivePolicy:
7
- deadLetterTargetArn: #!GetAtt
8
- Fn::GetAtt:
9
- - <%- queueName %>DLQ
10
- - Arn
11
- maxReceiveCount: 3
12
- VisibilityTimeout: 120
13
-
14
- <%- queueName %>DLQ:
15
- Type: AWS::SQS::Queue
16
- Properties:
17
- QueueName: ${self:custom.iz_resourcePrefix}<%- queueName %>DLQ
18
-
19
- <%- queueName %>Policy:
20
- Type: AWS::SQS::QueuePolicy
21
- Properties:
22
- PolicyDocument:
23
- Version: "2012-10-17"
24
- Statement:
25
- - Sid: "allow-sns-messages"
26
- Effect: Allow
27
- Principal: "*"
28
- Resource: #!GetAtt
29
- Fn::GetAtt:
30
- - <%- queueName %>
31
- - Arn
32
- Action: "SQS:SendMessage"
33
- Queues:
34
- - Ref: <%- queueName %>
35
- #<#<%- firstLetterUpperCase(queueName) %>QueueSetting#>
36
- #<#/<%- firstLetterUpperCase(queueName) %>QueueSetting#>
37
-
38
- <%_ function firstLetterUpperCase(text){
39
- return text.charAt(0).toUpperCase() + text.slice(1)
40
- } _%>
41
- <%_ function firstLetterLowerCase(str) {
42
- return str.charAt(0).toLowerCase() + str.slice(1)
43
- } _%>