-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: George J Padayatti <[email protected]>
- Loading branch information
1 parent
38af443
commit a7376de
Showing
15 changed files
with
1,114 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
package handlerv2 | ||
|
||
import ( | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"io" | ||
"net/http" | ||
"strings" | ||
|
||
"github.com/asaskevich/govalidator" | ||
"github.com/bb-consent/api/src/common" | ||
"github.com/bb-consent/api/src/config" | ||
"github.com/bb-consent/api/src/policy" | ||
"github.com/bb-consent/api/src/token" | ||
"go.mongodb.org/mongo-driver/bson/primitive" | ||
) | ||
|
||
type RevisionForSnapshot struct { | ||
policy.Revision | ||
SerializedSnapshot string `json:"-"` | ||
Id string `json:"-"` | ||
SuccessorId string `json:"-"` | ||
PredecessorHash string `json:"-"` | ||
PredecessorSignature string `json:"-"` | ||
SerializedHash string `json:"-"` | ||
} | ||
|
||
type addPolicyReq struct { | ||
Policy policy.Policy `json:"policy" valid:"required"` | ||
} | ||
|
||
type addPolicyResp struct { | ||
Policy policy.Policy `json:"policy"` | ||
Revision interface{} `json:"revision"` | ||
} | ||
|
||
func validateAddPolicyRequestBody(policyReq addPolicyReq) error { | ||
// validating request payload | ||
valid, err := govalidator.ValidateStruct(policyReq) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if !valid { | ||
return errors.New("invalid request payload") | ||
} | ||
|
||
if strings.TrimSpace(policyReq.Policy.Name) == "" { | ||
return errors.New("missing mandatory param - Name") | ||
} | ||
|
||
if strings.TrimSpace(policyReq.Policy.Url) == "" { | ||
return errors.New("missing mandatory param - Url") | ||
|
||
} | ||
|
||
return nil | ||
} | ||
|
||
func updatePolicyFromAddPolicyRequestBody(requestBody addPolicyReq, newPolicy policy.Policy) policy.Policy { | ||
newPolicy.Name = requestBody.Policy.Name | ||
newPolicy.Url = requestBody.Policy.Url | ||
newPolicy.Jurisdiction = requestBody.Policy.Jurisdiction | ||
newPolicy.IndustrySector = requestBody.Policy.IndustrySector | ||
newPolicy.DataRetentionPeriodDays = requestBody.Policy.DataRetentionPeriodDays | ||
newPolicy.GeographicRestriction = requestBody.Policy.GeographicRestriction | ||
newPolicy.StorageLocation = requestBody.Policy.StorageLocation | ||
return newPolicy | ||
} | ||
|
||
// AddGlobalPolicyConfiguration Handler to add global policy configuration | ||
func AddGlobalPolicyConfiguration(w http.ResponseWriter, r *http.Request) { | ||
// Current user | ||
orgAdminId := token.GetUserID(r) | ||
|
||
// Headers | ||
organisationId := r.Header.Get(config.OrganizationId) | ||
organisationId = common.Sanitize(organisationId) | ||
|
||
// Request body | ||
var policyReq addPolicyReq | ||
b, _ := io.ReadAll(r.Body) | ||
defer r.Body.Close() | ||
json.Unmarshal(b, &policyReq) | ||
|
||
// Validate request body | ||
err := validateAddPolicyRequestBody(policyReq) | ||
if err != nil { | ||
common.HandleErrorV2(w, http.StatusBadRequest, err.Error(), err) | ||
return | ||
} | ||
|
||
version := common.IntegerToSemver(1) | ||
|
||
// Initialise policy | ||
var newPolicy policy.Policy | ||
newPolicy.Id = primitive.NewObjectID() | ||
// Update policy from request body | ||
newPolicy = updatePolicyFromAddPolicyRequestBody(policyReq, newPolicy) | ||
newPolicy.OrganisationId = organisationId | ||
newPolicy.IsDeleted = false | ||
newPolicy.Version = version | ||
|
||
// Create new revision | ||
newRevision, err := policy.CreateRevisionForPolicy(newPolicy, orgAdminId) | ||
if err != nil { | ||
m := fmt.Sprintf("Failed to create revision for new policy: %v", newPolicy.Name) | ||
common.HandleErrorV2(w, http.StatusInternalServerError, m, err) | ||
return | ||
} | ||
newPolicy.Revisions = append(newPolicy.Revisions, newRevision) | ||
|
||
// Save the policy to db | ||
savedPolicy, err := policy.Add(newPolicy) | ||
if err != nil { | ||
m := fmt.Sprintf("Failed to create new policy: %v", newPolicy.Name) | ||
common.HandleErrorV2(w, http.StatusInternalServerError, m, err) | ||
return | ||
} | ||
|
||
// Constructing the response | ||
var resp addPolicyResp | ||
resp.Policy = savedPolicy | ||
|
||
var revisionForHTTPResponse policy.RevisionForHTTPResponse | ||
revisionForHTTPResponse.Init(newRevision) | ||
resp.Revision = revisionForHTTPResponse | ||
|
||
response, _ := json.Marshal(resp) | ||
w.Header().Set(config.ContentTypeHeader, config.ContentTypeJSON) | ||
w.WriteHeader(http.StatusOK) | ||
w.Write(response) | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.