sharingBookReview-SERVICE / sharingBookReview-BE

Diver provides collections and reviews of books and users can share them like a social network.
1 stars 1 forks source link

Refactor image uploads #198

Closed kimseungbin closed 3 years ago

kimseungbin commented 3 years ago

기존 두개의 모듈에 각각 함수로 쪼개져 있던 이미지 업로드 관련된 함수들을 image_upload.controller.js 에 하나의 클래스로 모았습니다.

  1. 기존 util 을 이용한 복잡한 코드를 fs/promises 로 대체하여 async/await 으로 처리했습니다.

  2. 불필요한 객체를 없애고 매개변수에 직접 환경변수를 넣었습니다.

  3. 메소드의 이름을 uploadFileToS3 로 구체화하였습니다.