Skip to content

Commit cf5e866

Browse files
author
Rick Lancee
committed
Initial commit
0 parents  commit cf5e866

23 files changed

+7524
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dist/
2+
node_modules/
3+
storage/
4+
5+
.DS_STORE

.idea/.gitignore

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/chat.iml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/prettier.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18.18

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": true,
3+
"tabWidth": 4
4+
}

README.md

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Upload Attachment Service - Coding challenge.
2+
3+
This repository serves as a challenge on how to create an
4+
effective upload attachment service.
5+
6+
## Using this repository
7+
8+
#### Prerequisites:
9+
10+
```shell
11+
node: 18.18.*
12+
docker
13+
```
14+
15+
#### Install and run:
16+
17+
```shell
18+
npm install # Before running any other commands install the dependencies
19+
npm run start-services # Starts the containers: s3 and sftp containers
20+
npm run test # To run the test suite
21+
npm run stop-services # Stops the running containers
22+
```
23+
24+
## Task
25+
For a given tenant Implement an AttachmentService that uploads an attachment
26+
to storage given a tenants configuration file. The code should be typed.
27+
28+
#### Attachment Flow:
29+
1. Each file should be optimised.
30+
2. Each file must have a thumbnail generated and stored on storage.
31+
3. Each file must be uploaded to the tenant's chosen storage method.
32+
33+
#### Storage methods:
34+
- Tenant A: LocalDisk
35+
- storage/ directory is relative to the project root
36+
- Tenant B: S3
37+
- Running inside a mock server inside the docker container
38+
- Tenant C: SFTP
39+
- Running inside a mock server inside the docker container
40+
41+
#### Suggested Workflow:
42+
43+
Run the test suite `npm run test` to see if the solution is working. Tests are skipped in `test/upload-to-storage.spec.ts` except for
44+
the first one. Work from there and implement each case, testing and verifying on your way. Only the `createAttachmentService()` function
45+
should be changed in the test file.
46+
47+
Start with images upload first, then optimize and after thumbnail generation. Lastly videos uploads, they are more difficult and can be skipped.
48+
49+
There is a `src/tenant-config.ts` that controls where the file needs to be uploaded and the configuration for the given
50+
storage method (this file should not be changed but the types can be used in your files). The connection parameters for s3 and sftp are in this file for tenantB and tenantC.
51+
52+
You can create new files in `src/` as needed. Inside `src/AttachmentService.ts` the `upload()` method's signature cannot be changed. You can add private methods, constructor, fields to the `AttachmentService` class as you need.
53+
54+
**Work Flow:**
55+
56+
1. First for tenantA implement the local file upload.
57+
- Files should be saved in the `storage/` direction
58+
- You probably need to create this directory in code if it doesn't exist
59+
2. Then for the second test: Optimise the image.
60+
3. For the third test: Generate the image thumbnail.
61+
4. Then implement the uploads for S3 and SFTP uploads.
62+
5. Implement different image types, if not done already.
63+
6. Implement video upload, optimisation and thumbnail generation.
64+
65+
**You can use the packages included in the package.json:**
66+
67+
- @aws-sdk/client-s3: for connecting and uploading to s3
68+
- sharp: for optimizing images
69+
- ssh2-sftp-client: for connecting and uploading to sftp
70+
- fluent-ffmpeg: for videos
71+
72+
73+
<details>
74+
<summary><b>What this will hopefully teach you:</b></summary>
75+
76+
- How to swap implementations based on configuration.
77+
- How to separate your code efficiently and easily modified it.
78+
- How to easily test code and without integration with real services.
79+
</details>
80+
81+
82+
<details>
83+
<summary><b>Hints:</b></summary>
84+
85+
- Dependency Injection
86+
- Inversion of control (Dependency Inversion)
87+
- Strategy Pattern
88+
- Factories
89+
</details>
90+

docker-compose.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
services:
2+
s3mock:
3+
image: adobe/s3mock:3.1.0
4+
environment:
5+
- initialBuckets=bucket1
6+
ports:
7+
- 9090:9090
8+
sftp:
9+
image: atmoz/sftp
10+
volumes:
11+
- ./storage:/home/foo/upload
12+
ports:
13+
- "2222:22"
14+
command: foo:pass:1001

0 commit comments

Comments
 (0)