Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
Partition
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Partition
Commits
d31ff1ad
Commit
d31ff1ad
authored
2 years ago
by
Bhushan Rade
Committed by
Anuj Gupta
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
added automatic deployment logic for new serverless app
parent
858efb03
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!229
Merge branch 'dependency-upgrade' into 'master'
,
!197
added automatic deployment logic for new serverless app
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
provider/partition-ibm/src/main/java/org/opengroup/osdu/partition/provider/ibm/service/PartitionServiceImpl.java
+51
-9
51 additions, 9 deletions
.../partition/provider/ibm/service/PartitionServiceImpl.java
with
51 additions
and
9 deletions
provider/partition-ibm/src/main/java/org/opengroup/osdu/partition/provider/ibm/service/PartitionServiceImpl.java
+
51
−
9
View file @
d31ff1ad
...
...
@@ -3,13 +3,20 @@
package
org.opengroup.osdu.partition.provider.ibm.service
;
import
com.cloudant.client.api.Database
;
import
com.cloudant.client.api.model.Response
;
import
com.cloudant.client.org.lightcouch.DocumentConflictException
;
import
com.cloudant.client.org.lightcouch.NoDocumentException
;
import
lombok.extern.slf4j.Slf4j
;
import
java.io.IOException
;
import
java.net.MalformedURLException
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
javax.annotation.PostConstruct
;
import
org.apache.http.HttpStatus
;
import
org.opengroup.osdu.core.common.cache.ICache
;
import
org.opengroup.osdu.core.common.http.HttpClient
;
import
org.opengroup.osdu.core.common.http.HttpRequest
;
import
org.opengroup.osdu.core.common.http.HttpResponse
;
import
org.opengroup.osdu.core.common.http.IHttpClient
;
import
org.opengroup.osdu.core.common.logging.JaxRsDpsLog
;
import
org.opengroup.osdu.core.common.model.http.AppException
;
import
org.opengroup.osdu.core.ibm.auth.ServiceCredentials
;
...
...
@@ -22,10 +29,13 @@ import org.springframework.beans.factory.annotation.Qualifier;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.PostConstruct
;
import
java.io.IOException
;
import
java.net.MalformedURLException
;
import
java.util.List
;
import
com.cloudant.client.api.Database
;
import
com.cloudant.client.api.model.Response
;
import
com.cloudant.client.org.lightcouch.DocumentConflictException
;
import
com.cloudant.client.org.lightcouch.NoDocumentException
;
import
com.google.gson.JsonObject
;
import
lombok.extern.slf4j.Slf4j
;
@Service
@Slf4j
...
...
@@ -44,6 +54,11 @@ public class PartitionServiceImpl implements IPartitionService {
@Autowired
@Qualifier
(
"partitionListCache"
)
private
ICache
<
String
,
List
<
String
>>
partitionListCache
;
@Value
(
"${pipline.trigger.url}"
)
String
pipelineURL
;
private
final
IHttpClient
httpClient
=
new
HttpClient
();
Database
db
;
...
...
@@ -84,6 +99,10 @@ public class PartitionServiceImpl implements IPartitionService {
PartitionInfo
pi
;
PartitionDoc
partitionDoc
=
new
PartitionDoc
(
partitionId
,
partitionInfo
);
try
{
HttpResponse
response
=
runPipeline
(
partitionId
);
if
(
response
.
getResponseCode
()
!=
HttpStatus
.
SC_ACCEPTED
||
response
.
getResponseCode
()
!=
HttpStatus
.
SC_CREATED
)
{
log
.
error
(
"Response Recieved : "
+
response
.
getResponseCode
()+
"Error occured while triggering pipeline for record-changed-topic-listener [tenant-specific] deployment"
);
}
db
.
save
(
partitionDoc
);
pi
=
partitionInfo
;
}
catch
(
DocumentConflictException
e
)
{
...
...
@@ -103,6 +122,29 @@ public class PartitionServiceImpl implements IPartitionService {
return
pi
;
}
private
HttpResponse
runPipeline
(
String
partitionID
)
{
JsonObject
buildPostJsonData
=
buildPostJsonData
(
partitionID
);
Map
<
String
,
String
>
httpHeaders
=
new
HashMap
<>();
httpHeaders
.
put
(
"X-GitHub-Event"
,
"push"
);
httpHeaders
.
put
(
"Content-Type"
,
"application/json"
);
//System.out.println("buildPostJsonData.getAsString() "+buildPostJsonData.getAsString());
HttpResponse
result
=
this
.
httpClient
.
send
(
HttpRequest
.
post
(
buildPostJsonData
).
url
(
pipelineURL
).
headers
(
httpHeaders
).
build
());
//this.getResult(result, Members.class);
log
.
info
(
"Pipeline trigger Response {}, Response Body : {}"
,
result
.
getResponseCode
(),
result
.
getBody
());
return
result
;
}
private
JsonObject
buildPostJsonData
(
String
partitionId
)
{
JsonObject
repositoryJson
=
new
JsonObject
();
repositoryJson
.
addProperty
(
"url"
,
"https://unused-url-parameter-but-mandatory"
);
repositoryJson
.
addProperty
(
"name"
,
partitionId
);
JsonObject
postData
=
new
JsonObject
();
postData
.
add
(
"repository"
,
repositoryJson
);
return
postData
;
}
@Override
public
PartitionInfo
updatePartition
(
String
partitionId
,
PartitionInfo
partitionInfo
)
{
PartitionInfo
pi
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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