Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
begenieus-jobs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ramdayal Munda
begenieus-jobs
Commits
d602e394
Commit
d602e394
authored
Jul 27, 2024
by
Pragati Upadhyay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conTentType
parent
792d8a31
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
33 deletions
+3
-33
tutor-shot.js
controller/tutor-shot.js
+2
-2
upload.js
helper/upload.js
+1
-31
No files found.
controller/tutor-shot.js
View file @
d602e394
...
...
@@ -129,8 +129,8 @@ module.exports.generateVideo = async function (req, res) {
let
remotePath
=
path
.
join
(
CONFIG
.
S3_TUTOR_SHOT
,
fileName
)
let
remoteThumbnailPath
=
path
.
join
(
CONFIG
.
S3_TUTOR_SHOT
,
thumbnailName
)
let
url
=
await
uploadToAwsS3
(
videoPath
,
remotePath
,{
contentType
:
'video/mp4'
}
)
await
uploadT
humbnailT
oAwsS3
(
thumbnailPath
,
remoteThumbnailPath
)
let
url
=
await
uploadToAwsS3
(
videoPath
,
remotePath
)
await
uploadToAwsS3
(
thumbnailPath
,
remoteThumbnailPath
)
tutorShotData
.
thumbnailUrl
=
remoteThumbnailPath
tutorShotData
.
signedVideoUrl
=
await
generatePreSignedGetUrl
(
remotePath
)
tutorShotData
.
signedThumbnailUrl
=
await
generatePreSignedGetUrl
(
remoteThumbnailPath
)
...
...
helper/upload.js
View file @
d602e394
...
...
@@ -13,7 +13,7 @@ const s3 = new AWS.S3({
region
:
CONFIG
.
S3_REGION
,
})
module
.
exports
.
uploadToAwsS3
=
async
function
(
localPath
,
remotePath
,
contentType
,
options
)
{
module
.
exports
.
uploadToAwsS3
=
async
function
(
localPath
,
remotePath
,
options
)
{
const
buffer
=
Fs
.
readFileSync
(
localPath
);
...
...
@@ -24,9 +24,6 @@ module.exports.uploadToAwsS3 = async function (localPath, remotePath,contentType
Bucket
:
CONFIG
.
S3_BUCKET_NAME
,
Key
:
remotePath
,
};
if
(
contentType
?.
contentType
){
params
.
ContentType
=
contentType
.
contentType
}
s3
.
putObject
(
params
,
function
(
err
,
data
)
{
if
(
err
)
{
console
.
log
(
err
);
...
...
@@ -44,34 +41,7 @@ module.exports.uploadToAwsS3 = async function (localPath, remotePath,contentType
return
{
status
:
httpStatus
.
NETWORK_ERROR
,
path
:
remotePath
}
}
}
module
.
exports
.
uploadThumbnailToAwsS3
=
async
function
(
localPath
,
remotePath
,
options
)
{
const
buffer
=
Fs
.
readFileSync
(
localPath
);
try
{
var
params
=
{
Body
:
buffer
,
Bucket
:
CONFIG
.
S3_BUCKET_NAME
,
Key
:
remotePath
,
};
s3
.
putObject
(
params
,
function
(
err
,
data
)
{
if
(
err
)
{
console
.
log
(
err
);
}
// successful response
});
if
(
options
&&
!
options
.
preventUnlink
)
{
try
{
Fs
.
unlinkSync
(
localPath
)
}
catch
(
err
)
{
console
.
log
(
err
)
}
}
return
}
catch
(
error
)
{
console
.
log
(
error
);
return
{
status
:
httpStatus
.
NETWORK_ERROR
,
path
:
remotePath
}
}
}
module
.
exports
.
generatePreSignedGetUrl
=
async
function
(
fileName
)
{
return
await
new
Promise
((
resolve
,
reject
)
=>
{
s3
.
getSignedUrl
(
'getObject'
,
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment