Skip to content

Commit

Permalink
resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-babylonlabs committed Dec 3, 2024
1 parent 0b8e3a2 commit db71897
Show file tree
Hide file tree
Showing 11 changed files with 94 additions and 26 deletions.
6 changes: 3 additions & 3 deletions internal/v1/db/client/delegation.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ func (v1dbclient *V1Database) ScanDelegationsPaginated(
)
}

// MarkDelegationAsTransformed marks an existing delegation as transformed
func (v1dbclient *V1Database) MarkDelegationAsTransformed(ctx context.Context, stakingTxHashHex string) error {
// MarkDelegationAsTransitioned marks an existing delegation as transitioned
func (v1dbclient *V1Database) MarkDelegationAsTransitioned(ctx context.Context, stakingTxHashHex string) error {
client := v1dbclient.Client.Database(v1dbclient.DbName).Collection(dbmodel.V1DelegationCollection)
update := bson.M{"$set": bson.M{"transformed": true}}
update := bson.M{"$set": bson.M{"transitioned": true}}
result, err := client.UpdateOne(ctx, bson.M{"_id": stakingTxHashHex}, update)
if err != nil {
return err
Expand Down
2 changes: 1 addition & 1 deletion internal/v1/db/client/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type V1DBClient interface {
ctx context.Context, stakingTxHashHex, unbondingTxHashHex, txHex, signatureHex string,
) error
FindDelegationByTxHashHex(ctx context.Context, txHashHex string) (*v1dbmodel.DelegationDocument, error)
MarkDelegationAsTransformed(ctx context.Context, stakingTxHashHex string) error
MarkDelegationAsTransitioned(ctx context.Context, stakingTxHashHex string) error
SaveTimeLockExpireCheck(ctx context.Context, stakingTxHashHex string, expireHeight uint64, txType string) error
TransitionToUnbondedState(
ctx context.Context, stakingTxHashHex string, eligiblePreviousState []types.DelegationState,
Expand Down
2 changes: 1 addition & 1 deletion internal/v1/db/model/delegation.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type DelegationDocument struct {
StakingTx *TimelockTransaction `bson:"staking_tx"` // Always exist
UnbondingTx *TimelockTransaction `bson:"unbonding_tx,omitempty"`
IsOverflow bool `bson:"is_overflow"`
Transformed bool `bson:"transformed"`
IsTransitioned bool `bson:"is_transitioned"`
}

type DelegationByStakerPagination struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/v1/service/delegation.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type DelegationPublic struct {
IsOverflow bool `json:"is_overflow"`
IsEligibleForTransition bool `json:"is_eligible_for_transition"`
IsSlashed bool `json:"is_slashed"`
Transformed bool `json:"transformed"`
IsTransitioned bool `json:"is_transitioned"`
}

func (s *V1Service) DelegationsByStakerPk(
Expand Down Expand Up @@ -213,7 +213,7 @@ func (s *V1Service) FromDelegationDocument(
IsOverflow: d.IsOverflow,
IsEligibleForTransition: isFpTransitioned && !isSlashed && s.isEligibleForTransition(d, bbnHeight),
IsSlashed: isSlashed,
Transformed: d.Transformed,
IsTransitioned: d.IsTransitioned,
}

// Add unbonding transaction if it exists
Expand Down
55 changes: 55 additions & 0 deletions internal/v2/db/client/deelgation.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
package v2dbclient

import (
"context"
"errors"

"github.com/babylonlabs-io/staking-api-service/internal/shared/db"
dbmodel "github.com/babylonlabs-io/staking-api-service/internal/shared/db/model"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
)

func (v2dbclient *V2Database) MarkV1DelegationAsTransitioned(ctx context.Context, stakingTxHashHex string) error {
session, err := v2dbclient.Client.StartSession()
if err != nil {
return err
}
defer session.EndSession(ctx)

transactionWork := func(sessCtx mongo.SessionContext) (interface{}, error) {
client := v2dbclient.Client.Database(v2dbclient.DbName).Collection(dbmodel.V1DelegationCollection)
filter := bson.M{"_id": stakingTxHashHex}

var delegation interface{}
err := client.FindOne(sessCtx, filter).Decode(&delegation)
if err != nil {
if errors.Is(err, mongo.ErrNoDocuments) {
return nil, &db.NotFoundError{
Key: stakingTxHashHex,
Message: "Delegation not found",
}
}
return nil, err
}

update := bson.M{"$set": bson.M{"transitioned": true}}
result, err := client.UpdateOne(sessCtx, filter, update)
if err != nil {
return nil, err
}

if result.MatchedCount == 0 {
return nil, &db.NotFoundError{
Key: stakingTxHashHex,
Message: "Delegation not found",
}
}

return nil, nil
}

_, err = session.WithTransaction(ctx, transactionWork)
return err
}

1 change: 1 addition & 0 deletions internal/v2/db/client/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ type V2DBClient interface {
SubtractStakerStats(
ctx context.Context, stakingTxHashHex, stakerPkHex string, amount uint64,
) error
MarkV1DelegationAsTransitioned(ctx context.Context, stakingTxHashHex string) error
}
7 changes: 4 additions & 3 deletions internal/v2/queue/handler/staking.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ func (h *V2QueueHandler) ActiveStakingHandler(ctx context.Context, messageBody s
return types.NewError(http.StatusBadRequest, types.BadRequest, err)
}

// Mark as v1 delegation as transformed if it exists
if err := h.Service.MarkV1DelegationAsTransformed(ctx, activeStakingEvent.StakingTxHashHex); err != nil {
log.Ctx(ctx).Error().Err(err).Msg("Failed to mark v1 delegation as transformed")
// Mark as v1 delegation as transitioned if it exists
if err := h.Service.MarkV1DelegationAsTransitioned(ctx, activeStakingEvent.StakingTxHashHex); err != nil {
log.Ctx(ctx).Error().Err(err).Msg("Failed to mark v1 delegation as transitioned")
return err
}

// Perform the address lookup conversion
Expand Down
17 changes: 5 additions & 12 deletions internal/v2/service/delegation.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,19 +171,12 @@ func (s *V2Service) SaveUnprocessableMessages(ctx context.Context, messageBody,
return nil
}

func (s *V2Service) MarkV1DelegationAsTransformed(ctx context.Context, stakingTxHashHex string) *types.Error {
// check if v1 delegation exists
delegation, err := s.DbClients.V1DBClient.FindDelegationByTxHashHex(ctx, stakingTxHashHex)
if err != nil {
return types.NewInternalServiceError(err)
}
if delegation == nil {
return nil
}

// mark as transformed
err = s.DbClients.V1DBClient.MarkDelegationAsTransformed(ctx, stakingTxHashHex)
func (s *V2Service) MarkV1DelegationAsTransitioned(ctx context.Context, stakingTxHashHex string) *types.Error {
err := s.DbClients.V2DBClient.MarkV1DelegationAsTransitioned(ctx, stakingTxHashHex)
if err != nil {
if db.IsNotFoundError(err) {
return nil
}
return types.NewInternalServiceError(err)
}
return nil
Expand Down
2 changes: 1 addition & 1 deletion internal/v2/service/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type V2ServiceProvider interface {
IsDelegationPresent(ctx context.Context, txHashHex string) (bool, *types.Error)
GetDelegation(ctx context.Context, stakingTxHashHex string) (*StakerDelegationPublic, *types.Error)
GetDelegations(ctx context.Context, stakerPKHex string, paginationKey string) ([]*StakerDelegationPublic, string, *types.Error)
MarkV1DelegationAsTransformed(ctx context.Context, stakingTxHashHex string) *types.Error
MarkV1DelegationAsTransitioned(ctx context.Context, stakingTxHashHex string) *types.Error
GetOverallStats(ctx context.Context) (*OverallStatsPublic, *types.Error)
GetStakerStats(ctx context.Context, stakerPKHex string) (*StakerStatsPublic, *types.Error)
ProcessAndSaveBtcAddresses(ctx context.Context, stakerPkHex string) *types.Error
Expand Down
6 changes: 3 additions & 3 deletions tests/mocks/mock_v1_db_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions tests/mocks/mock_v2_db_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit db71897

Please sign in to comment.