forked from temporalio/temporal
-
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.
Implement Nexus incoming service operator APIs (temporalio#5621)
## What changed? <!-- Describe what has changed in this PR --> Added implementations for Operator service CRUD APIs for Nexus incoming services Some details: * Create, Update, and Delete requests are forwarded to matching * Read (Get and List) requests are sent directly to persistence * Frontend does not do any caching of services Depends on temporalio#5616 ## Why? <!-- Tell your future self why have you made these changes --> So users can interact with Nexus incoming services ## How did you test it? <!-- How have you verified this change? Tested locally? Added a unit test? Checked in staging env? --> New functional tests
- Loading branch information
Showing
11 changed files
with
1,042 additions
and
108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// The MIT License | ||
// | ||
// Copyright (c) 2024 Temporal Technologies Inc. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package nexus | ||
|
||
import ( | ||
"go.temporal.io/api/nexus/v1" | ||
"google.golang.org/protobuf/types/known/timestamppb" | ||
|
||
persistencepb "go.temporal.io/server/api/persistence/v1" | ||
hlc "go.temporal.io/server/common/clock/hybrid_logical_clock" | ||
) | ||
|
||
func IncomingServicePersistedEntryToExternalAPI(entry *persistencepb.NexusIncomingServiceEntry) *nexus.IncomingService { | ||
var lastModifiedTime *timestamppb.Timestamp | ||
// Only set last modified if there were modifications as stated in the UI contract. | ||
if entry.Version > 1 { | ||
lastModifiedTime = timestamppb.New(hlc.UTC(entry.Service.Clock)) | ||
} | ||
|
||
return &nexus.IncomingService{ | ||
Version: entry.Version, | ||
Id: entry.Id, | ||
Spec: entry.Service.Spec, | ||
CreatedTime: entry.Service.CreatedTime, | ||
LastModifiedTime: lastModifiedTime, | ||
UrlPrefix: "/" + Routes().DispatchNexusTaskByService.Path(entry.Id), | ||
} | ||
} |
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.