Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
UPHRH-lms-service
Commits
c0facf0e
Unverified
Commit
c0facf0e
authored
2 years ago
by
Reshmi V Nair
Committed by
GitHub
2 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #499 from kumarks1122/release-5.0.1-cloud-storage-signedurlv2
Gloud signed url support changes added
parents
3a769cc3
4d7564ff
master
bootcamp
helmchart
release-5.0.1
release-5.0.2
release-5.1.0
release-5.2.0
release-5.2.1
release-5.3.0
release-5.3.1
release-5.4.0
release-5.3.1_RC1
release-5.3.0_RC1
release-5.2.0_RC2
release-5.2.0_RC1
release-5.1.0_RC2
release-5.1.0_RC1
release-5.0.1_RC3
release-5.0.1_RC2
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
course-mw/sunbird-util/sunbird-platform-core/common-util/pom.xml
+1
-1
...mw/sunbird-util/sunbird-platform-core/common-util/pom.xml
course-mw/sunbird-util/sunbird-platform-core/common-util/src/main/java/org/sunbird/common/util/CloudStorageUtil.java
+2
-10
...c/main/java/org/sunbird/common/util/CloudStorageUtil.java
course-mw/sunbird-util/sunbird-platform-core/common-util/src/test/java/org/sunbird/common/util/CloudStorageUtilTest.java
+16
-2
...st/java/org/sunbird/common/util/CloudStorageUtilTest.java
with
19 additions
and
13 deletions
+19
-13
course-mw/sunbird-util/sunbird-platform-core/common-util/pom.xml
+
1
−
1
View file @
c0facf0e
...
...
@@ -219,7 +219,7 @@
<dependency>
<groupId>
org.sunbird
</groupId>
<artifactId>
cloud-store-sdk
</artifactId>
<version>
1.4.
3
</version>
<version>
1.4.
4
</version>
<exclusions>
<exclusion>
<groupId>
com.sun.jersey
</groupId>
...
...
This diff is collapsed.
Click to expand it.
course-mw/sunbird-util/sunbird-platform-core/common-util/src/main/java/org/sunbird/common/util/CloudStorageUtil.java
+
2
−
10
View file @
c0facf0e
...
...
@@ -41,16 +41,8 @@ public class CloudStorageUtil {
BaseStorageService
storageService
,
String
container
,
String
objectKey
,
String
cloudType
)
{
int
timeoutInSeconds
=
getTimeoutInSeconds
();
String
signUrl
=
""
;
if
(
JsonKey
.
GCP
.
equalsIgnoreCase
(
cloudType
))
{
signUrl
=
storageService
.
getPutSignedURL
(
container
,
objectKey
,
Some
.
apply
(
getTimeoutInSeconds
()),
Some
.
apply
(
"r"
),
Some
.
apply
(
"application/pdf"
));
}
else
{
signUrl
=
storageService
.
getSignedURL
(
container
,
objectKey
,
Some
.
apply
(
timeoutInSeconds
),
Some
.
apply
(
"r"
));
}
return
signUrl
;
return
storageService
.
getSignedURLV2
(
container
,
objectKey
,
Some
.
apply
(
getTimeoutInSeconds
()),
Some
.
apply
(
"r"
),
Some
.
apply
(
"application/pdf"
));
}
private
static
BaseStorageService
getStorageService
(
String
storageType
)
{
...
...
This diff is collapsed.
Click to expand it.
course-mw/sunbird-util/sunbird-platform-core/common-util/src/test/java/org/sunbird/common/util/CloudStorageUtilTest.java
+
16
−
2
View file @
c0facf0e
...
...
@@ -60,6 +60,20 @@ public class CloudStorageUtilTest {
Mockito
.
any
(
Option
.
class
),
Mockito
.
any
(
Option
.
class
)))
.
thenReturn
(
PUT_SIGNED_URL
);
when
(
service
.
getSignedURLV2
(
Mockito
.
eq
(
"azurecontainer"
),
Mockito
.
anyString
(),
Mockito
.
any
(
Option
.
class
),
Mockito
.
any
(
Option
.
class
),
Mockito
.
any
(
Option
.
class
)))
.
thenReturn
(
SIGNED_URL
);
when
(
service
.
getSignedURLV2
(
Mockito
.
eq
(
"gcpcontainer"
),
Mockito
.
anyString
(),
Mockito
.
any
(
Option
.
class
),
Mockito
.
any
(
Option
.
class
),
Mockito
.
any
(
Option
.
class
)))
.
thenReturn
(
PUT_SIGNED_URL
);
}
catch
(
Exception
e
)
{
Assert
.
fail
(
e
.
getMessage
());
...
...
@@ -75,13 +89,13 @@ public class CloudStorageUtilTest {
@Test
public
void
testGetSignedUrlSuccess
()
{
String
signedUrl
=
CloudStorageUtil
.
getSignedUrl
(
"azure"
,
"container"
,
"key"
);
String
signedUrl
=
CloudStorageUtil
.
getSignedUrl
(
"azure"
,
"
azure
container"
,
"key"
);
assertTrue
(
SIGNED_URL
.
equals
(
signedUrl
));
}
@Test
public
void
testGetSignedUrlGCPSuccess
()
{
String
signedUrl
=
CloudStorageUtil
.
getSignedUrl
(
JsonKey
.
GCP
,
"container"
,
"key"
);
String
signedUrl
=
CloudStorageUtil
.
getSignedUrl
(
JsonKey
.
GCP
,
"
gcp
container"
,
"key"
);
assertTrue
(
PUT_SIGNED_URL
.
equals
(
signedUrl
));
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets