Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 12 additions & 33 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*",
"dist/**/*"
],
"ignorePatterns": ["projects/**/*", "dist/**/*"],
"overrides": [
{
"files": [
"*.ts"
],
"files": ["*.ts"],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"project": ["tsconfig.json", "e2e/tsconfig.json"],
"createDefaultProgram": true
},
"extends": [
Expand All @@ -40,39 +32,26 @@
"style": "camelCase"
}
],
"rxjs/no-subject-value": [
0
]
"rxjs/no-subject-value": [0],
"@typescript-eslint/no-var-requires": "off", // << ADD THIS
"@typescript-eslint/no-explicit-any": "off"
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended",
"prettier"
],
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended", "prettier"],
"rules": {}
},
{
"files": [
"*.spec.ts"
],
"plugins": [
"jasmine"
],
"extends": [
"plugin:jasmine/recommended"
],
"files": ["*.spec.ts"],
"plugins": ["jasmine"],
"extends": ["plugin:jasmine/recommended"],
"env": {
"jasmine": true
}
},
{
"files": [
"*.js"
],
"files": ["*.js"],
"env": {
"es6": true
}
Expand Down
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@
}
},
"cli": {
"schematicCollections": ["@angular-eslint/schematics"]
"schematicCollections": ["@angular-eslint/schematics"],
"analytics": "c34ef750-69eb-4b43-aa08-7a7b02d5b772"
},
"schematics": {
"@angular-eslint/schematics:application": {
Expand Down
8 changes: 8 additions & 0 deletions aws-user-product/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.js
!jest.config.js
*.d.ts
node_modules

# CDK asset staging directory
.cdk.staging
cdk.out
6 changes: 6 additions & 0 deletions aws-user-product/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.ts
!*.d.ts

# CDK asset staging directory
.cdk.staging
cdk.out
17 changes: 17 additions & 0 deletions aws-user-product/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Welcome to your CDK TypeScript project

This is a blank project for CDK development with TypeScript.

The `cdk.json` file tells the CDK Toolkit how to execute your app.

## Useful commands

- `npm run build` compile typescript to js
- `npm run watch` watch for changes and compile
- `npm run test` perform the jest unit tests
- `npx cdk deploy` deploy this stack to your default AWS account/region
- `npx cdk diff` compare deployed stack with current state
- `npx cdk synth` emits the synthesized CloudFormation template


## Added the lambda function with APIGateway to make products with serveless implementaion
17 changes: 17 additions & 0 deletions aws-user-product/bin/aws-user-product.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env node
import * as cdk from 'aws-cdk-lib';
import { AwsUserProductStack } from '../lib/aws-user-product-stack';

const app = new cdk.App();
new AwsUserProductStack(app, 'AwsUserProductStack', {
/* If you don't specify 'env', this stack will be environment-agnostic.
* Account/Region-dependent features and context lookups will not work,
* but a single synthesized template can be deployed anywhere. */
/* Uncomment the next line to specialize this stack for the AWS Account
* and Region that are implied by the current CLI configuration. */
// env: { account: process.env.CDK_DEFAULT_ACCOUNT, region: process.env.CDK_DEFAULT_REGION },
/* Uncomment the next line if you know exactly what Account and Region you
* want to deploy the stack to. */
// env: { account: '123456789012', region: 'us-east-1' },
/* For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html */
});
96 changes: 96 additions & 0 deletions aws-user-product/cdk.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"app": "npx ts-node --prefer-ts-exts bin/aws-user-product.ts",
"watch": {
"include": ["**"],
"exclude": [
"README.md",
"cdk*.json",
"**/*.d.ts",
"**/*.js",
"tsconfig.json",
"package*.json",
"yarn.lock",
"node_modules",
"test"
]
},
"context": {
"@aws-cdk/aws-signer:signingProfileNamePassedToCfn": true,
"@aws-cdk/aws-ecs-patterns:secGroupsDisablesImplicitOpenListener": true,
"@aws-cdk/aws-lambda:recognizeLayerVersion": true,
"@aws-cdk/core:checkSecretUsage": true,
"@aws-cdk/core:target-partitions": ["aws", "aws-cn"],
"@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true,
"@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true,
"@aws-cdk/aws-ecs:arnFormatIncludesClusterName": true,
"@aws-cdk/aws-iam:minimizePolicies": true,
"@aws-cdk/core:validateSnapshotRemovalPolicy": true,
"@aws-cdk/aws-codepipeline:crossAccountKeyAliasStackSafeResourceName": true,
"@aws-cdk/aws-s3:createDefaultLoggingPolicy": true,
"@aws-cdk/aws-sns-subscriptions:restrictSqsDescryption": true,
"@aws-cdk/aws-apigateway:disableCloudWatchRole": true,
"@aws-cdk/core:enablePartitionLiterals": true,
"@aws-cdk/aws-events:eventsTargetQueueSameAccount": true,
"@aws-cdk/aws-ecs:disableExplicitDeploymentControllerForCircuitBreaker": true,
"@aws-cdk/aws-iam:importedRoleStackSafeDefaultPolicyName": true,
"@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true,
"@aws-cdk/aws-route53-patters:useCertificate": true,
"@aws-cdk/customresources:installLatestAwsSdkDefault": false,
"@aws-cdk/aws-rds:databaseProxyUniqueResourceName": true,
"@aws-cdk/aws-codedeploy:removeAlarmsFromDeploymentGroup": true,
"@aws-cdk/aws-apigateway:authorizerChangeDeploymentLogicalId": true,
"@aws-cdk/aws-ec2:launchTemplateDefaultUserData": true,
"@aws-cdk/aws-secretsmanager:useAttachedSecretResourcePolicyForSecretTargetAttachments": true,
"@aws-cdk/aws-redshift:columnId": true,
"@aws-cdk/aws-stepfunctions-tasks:enableEmrServicePolicyV2": true,
"@aws-cdk/aws-ec2:restrictDefaultSecurityGroup": true,
"@aws-cdk/aws-apigateway:requestValidatorUniqueId": true,
"@aws-cdk/aws-kms:aliasNameRef": true,
"@aws-cdk/aws-kms:applyImportedAliasPermissionsToPrincipal": true,
"@aws-cdk/aws-autoscaling:generateLaunchTemplateInsteadOfLaunchConfig": true,
"@aws-cdk/core:includePrefixInUniqueNameGeneration": true,
"@aws-cdk/aws-efs:denyAnonymousAccess": true,
"@aws-cdk/aws-opensearchservice:enableOpensearchMultiAzWithStandby": true,
"@aws-cdk/aws-lambda-nodejs:useLatestRuntimeVersion": true,
"@aws-cdk/aws-efs:mountTargetOrderInsensitiveLogicalId": true,
"@aws-cdk/aws-rds:auroraClusterChangeScopeOfInstanceParameterGroupWithEachParameters": true,
"@aws-cdk/aws-appsync:useArnForSourceApiAssociationIdentifier": true,
"@aws-cdk/aws-rds:preventRenderingDeprecatedCredentials": true,
"@aws-cdk/aws-codepipeline-actions:useNewDefaultBranchForCodeCommitSource": true,
"@aws-cdk/aws-cloudwatch-actions:changeLambdaPermissionLogicalIdForLambdaAction": true,
"@aws-cdk/aws-codepipeline:crossAccountKeysDefaultValueToFalse": true,
"@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2": true,
"@aws-cdk/aws-kms:reduceCrossAccountRegionPolicyScope": true,
"@aws-cdk/aws-eks:nodegroupNameAttribute": true,
"@aws-cdk/aws-ec2:ebsDefaultGp3Volume": true,
"@aws-cdk/aws-ecs:removeDefaultDeploymentAlarm": true,
"@aws-cdk/custom-resources:logApiResponseDataPropertyTrueDefault": false,
"@aws-cdk/aws-s3:keepNotificationInImportedBucket": false,
"@aws-cdk/core:explicitStackTags": true,
"@aws-cdk/aws-ecs:enableImdsBlockingDeprecatedFeature": false,
"@aws-cdk/aws-ecs:disableEcsImdsBlocking": true,
"@aws-cdk/aws-ecs:reduceEc2FargateCloudWatchPermissions": true,
"@aws-cdk/aws-dynamodb:resourcePolicyPerReplica": true,
"@aws-cdk/aws-ec2:ec2SumTImeoutEnabled": true,
"@aws-cdk/aws-appsync:appSyncGraphQLAPIScopeLambdaPermission": true,
"@aws-cdk/aws-rds:setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId": true,
"@aws-cdk/core:cfnIncludeRejectComplexResourceUpdateCreatePolicyIntrinsics": true,
"@aws-cdk/aws-lambda-nodejs:sdkV3ExcludeSmithyPackages": true,
"@aws-cdk/aws-stepfunctions-tasks:fixRunEcsTaskPolicy": true,
"@aws-cdk/aws-ec2:bastionHostUseAmazonLinux2023ByDefault": true,
"@aws-cdk/aws-route53-targets:userPoolDomainNameMethodWithoutCustomResource": true,
"@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault": true,
"@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true,
"@aws-cdk/core:enableAdditionalMetadataCollection": true,
"@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": false,
"@aws-cdk/aws-s3:setUniqueReplicationRoleName": true,
"@aws-cdk/aws-events:requireEventBusPolicySid": true,
"@aws-cdk/core:aspectPrioritiesMutating": true,
"@aws-cdk/aws-dynamodb:retainTableReplica": true,
"@aws-cdk/aws-stepfunctions:useDistributedMapResultWriterV2": true,
"@aws-cdk/s3-notifications:addS3TrustKeyPolicyForSnsSubscriptions": true,
"@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true,
"@aws-cdk/aws-s3:publicAccessBlockedByDefault": true,
"@aws-cdk/aws-lambda:useCdkManagedLogGroup": true
}
}
8 changes: 8 additions & 0 deletions aws-user-product/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
testEnvironment: "node",
roots: ["<rootDir>/test"],
testMatch: ["**/*.test.ts"],
transform: {
"^.+\\.tsx?$": "ts-jest",
},
};
15 changes: 15 additions & 0 deletions aws-user-product/lib/aws-user-product-stack.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import * as cdk from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { ProductServiceStack } from './product-service/product-service-stack';
// import * as sqs from 'aws-cdk-lib/aws-sqs';

export class AwsUserProductStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);

const app = new cdk.App();
new ProductServiceStack(app, 'ProductServiceStack', {
env: { account: '901792596833', region: 'eu-north-1' },
});
}
}
43 changes: 43 additions & 0 deletions aws-user-product/lib/lambda/products/products-handler.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import * as products from './products.json';

interface Product {
count: number;
description: string;
id: string;
price: number;
title: string;
}

export async function getProductsList() {
return {
statusCode: 200,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(products),
};
}

export async function getProductsById(event: {
pathParameters: { id: string };
}) {
console.log('EVENT:', JSON.stringify(event));
const productId = event?.pathParameters?.id;
console.log(productId, 'productId');

const product = products.find((p: Product) => p.id === productId);
console.log(product, 'product');
if (!product) {
console.log(productId, 'productId');

return {
statusCode: 404,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Product not found' }),
};
}

return {
statusCode: 200,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(product),
};
}
58 changes: 58 additions & 0 deletions aws-user-product/lib/lambda/products/products.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
[
{
"count": 4,
"description": "Short Product Description1",
"id": "7567ec4b-b10c-48c5-9345-fc73c48a80aa",
"price": 2.4,
"title": "ProductOne"
},
{
"count": 6,
"description": "Short Product Description3",
"id": "7567ec4b-b10c-48c5-9345-fc73c48a80a0",
"price": 10,
"title": "ProductNew"
},
{
"count": 7,
"description": "Short Product Description2",
"id": "7567ec4b-b10c-48c5-9345-fc73c48a80a2",
"price": 23,
"title": "ProductTop"
},
{
"count": 12,
"description": "Short Product Description7",
"id": "7567ec4b-b10c-48c5-9345-fc73c48a80a1",
"price": 15,
"title": "ProductTitle"
},
{
"count": 7,
"description": "Short Product Description2",
"id": "7567ec4b-b10c-48c5-9345-fc73c48a80a3",
"price": 23,
"title": "Product"
},
{
"count": 8,
"description": "Short Product Description4",
"id": "7567ec4b-b10c-48c5-9345-fc73348a80a1",
"price": 15,
"title": "ProductTest"
},
{
"count": 2,
"description": "Short Product Descriptio1",
"id": "7567ec4b-b10c-48c5-9445-fc73c48a80a2",
"price": 23,
"title": "Product2"
},
{
"count": 3,
"description": "Short Product Description7",
"id": "7567ec4b-b10c-45c5-9345-fc73c48a80a1",
"price": 15,
"title": "ProductName"
}
]
Loading