internal/repo/activity/review_repo.go (91 lines of code) (raw):
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package activity
import (
"context"
"fmt"
"github.com/apache/answer/internal/schema"
"github.com/apache/answer/pkg/converter"
"xorm.io/builder"
"github.com/apache/answer/internal/base/data"
"github.com/apache/answer/internal/base/reason"
"github.com/apache/answer/internal/entity"
"github.com/apache/answer/internal/service/activity"
"github.com/apache/answer/internal/service/activity_common"
"github.com/apache/answer/internal/service/config"
"github.com/apache/answer/internal/service/rank"
"github.com/segmentfault/pacman/errors"
"xorm.io/xorm"
)
// ReviewActivityRepo answer accepted
type ReviewActivityRepo struct {
data *data.Data
activityRepo activity_common.ActivityRepo
userRankRepo rank.UserRankRepo
configService *config.ConfigService
}
const (
EditAccepted = "edit.accepted"
)
// NewReviewActivityRepo new repository
func NewReviewActivityRepo(
data *data.Data,
activityRepo activity_common.ActivityRepo,
userRankRepo rank.UserRankRepo,
configService *config.ConfigService,
) activity.ReviewActivityRepo {
return &ReviewActivityRepo{
data: data,
activityRepo: activityRepo,
userRankRepo: userRankRepo,
configService: configService,
}
}
// Review user active
func (ar *ReviewActivityRepo) Review(ctx context.Context, act *schema.PassReviewActivity) (err error) {
cfg, err := ar.configService.GetConfigByKey(ctx, EditAccepted)
if err != nil {
return err
}
addActivity := &entity.Activity{
UserID: act.UserID,
TriggerUserID: converter.StringToInt64(act.TriggerUserID),
ObjectID: act.ObjectID,
OriginalObjectID: act.OriginalObjectID,
ActivityType: cfg.ID,
Rank: cfg.GetIntValue(),
HasRank: 1,
RevisionID: converter.StringToInt64(act.RevisionID),
}
_, err = ar.data.DB.Transaction(func(session *xorm.Session) (result any, err error) {
session = session.Context(ctx)
user := &entity.User{}
exist, err := session.ID(addActivity.UserID).ForUpdate().Get(user)
if err != nil {
return nil, err
}
if !exist {
return nil, fmt.Errorf("user not exist")
}
existsActivity := &entity.Activity{}
exist, err = session.
And(builder.Eq{"user_id": addActivity.UserID}).
And(builder.Eq{"activity_type": addActivity.ActivityType}).
And(builder.Eq{"revision_id": addActivity.RevisionID}).
Get(existsActivity)
if err != nil {
return nil, err
}
if exist {
return nil, nil
}
err = ar.userRankRepo.ChangeUserRank(ctx, session, addActivity.UserID, user.Rank, addActivity.Rank)
if err != nil {
return nil, err
}
_, err = session.Insert(addActivity)
if err != nil {
return nil, err
}
return nil, nil
})
if err != nil {
return errors.InternalServer(reason.DatabaseError).WithError(err).WithStack()
}
return nil
}