2023-04-26 05:46:48 +01:00
|
|
|
// Copyright (C) 2023 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package satellitedb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"storj.io/common/uuid"
|
|
|
|
"storj.io/storj/satellite/console"
|
|
|
|
"storj.io/storj/satellite/satellitedb/dbx"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Ensure that projectInvitations implements console.ProjectInvitations.
|
|
|
|
var _ console.ProjectInvitations = (*projectInvitations)(nil)
|
|
|
|
|
|
|
|
// projectInvitations is an implementation of console.ProjectInvitations.
|
|
|
|
type projectInvitations struct {
|
2023-06-20 20:28:12 +01:00
|
|
|
db dbx.Methods
|
2023-04-26 05:46:48 +01:00
|
|
|
}
|
|
|
|
|
2023-06-23 17:34:44 +01:00
|
|
|
// Upsert updates a project member invitation if it exists and inserts it otherwise.
|
|
|
|
func (invites *projectInvitations) Upsert(ctx context.Context, invite *console.ProjectInvitation) (_ *console.ProjectInvitation, err error) {
|
2023-04-26 05:46:48 +01:00
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
2023-05-09 20:18:07 +01:00
|
|
|
if invite == nil {
|
|
|
|
return nil, Error.New("invitation is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
createFields := dbx.ProjectInvitation_Create_Fields{}
|
|
|
|
if invite.InviterID != nil {
|
|
|
|
id := invite.InviterID[:]
|
|
|
|
createFields.InviterId = dbx.ProjectInvitation_InviterId(id)
|
|
|
|
}
|
|
|
|
|
2023-06-23 17:34:44 +01:00
|
|
|
dbxInvite, err := invites.db.Replace_ProjectInvitation(ctx,
|
2023-05-09 20:18:07 +01:00
|
|
|
dbx.ProjectInvitation_ProjectId(invite.ProjectID[:]),
|
|
|
|
dbx.ProjectInvitation_Email(normalizeEmail(invite.Email)),
|
|
|
|
createFields,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return projectInvitationFromDBX(dbxInvite)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get returns a project member invitation from the database.
|
|
|
|
func (invites *projectInvitations) Get(ctx context.Context, projectID uuid.UUID, email string) (_ *console.ProjectInvitation, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
dbxInvite, err := invites.db.Get_ProjectInvitation_By_ProjectId_And_Email(ctx,
|
2023-04-26 05:46:48 +01:00
|
|
|
dbx.ProjectInvitation_ProjectId(projectID[:]),
|
|
|
|
dbx.ProjectInvitation_Email(normalizeEmail(email)),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return projectInvitationFromDBX(dbxInvite)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetByProjectID returns all of the project member invitations for the project specified by the given ID.
|
|
|
|
func (invites *projectInvitations) GetByProjectID(ctx context.Context, projectID uuid.UUID) (_ []console.ProjectInvitation, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
dbxInvites, err := invites.db.All_ProjectInvitation_By_ProjectId(ctx, dbx.ProjectInvitation_ProjectId(projectID[:]))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return projectInvitationSliceFromDBX(dbxInvites)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetByEmail returns all of the project member invitations for the specified email address.
|
|
|
|
func (invites *projectInvitations) GetByEmail(ctx context.Context, email string) (_ []console.ProjectInvitation, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
dbxInvites, err := invites.db.All_ProjectInvitation_By_Email(ctx, dbx.ProjectInvitation_Email(normalizeEmail(email)))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return projectInvitationSliceFromDBX(dbxInvites)
|
|
|
|
}
|
|
|
|
|
2023-05-09 20:18:07 +01:00
|
|
|
// Delete removes a project member invitation from the database.
|
2023-04-26 05:46:48 +01:00
|
|
|
func (invites *projectInvitations) Delete(ctx context.Context, projectID uuid.UUID, email string) (err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
_, err = invites.db.Delete_ProjectInvitation_By_ProjectId_And_Email(ctx,
|
|
|
|
dbx.ProjectInvitation_ProjectId(projectID[:]),
|
|
|
|
dbx.ProjectInvitation_Email(normalizeEmail(email)),
|
|
|
|
)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// projectInvitationFromDBX converts a project member invitation from the database to a *console.ProjectInvitation.
|
|
|
|
func projectInvitationFromDBX(dbxInvite *dbx.ProjectInvitation) (_ *console.ProjectInvitation, err error) {
|
|
|
|
if dbxInvite == nil {
|
|
|
|
return nil, Error.New("dbx invitation is nil")
|
|
|
|
}
|
|
|
|
|
2023-05-09 20:18:07 +01:00
|
|
|
invite := &console.ProjectInvitation{
|
|
|
|
Email: dbxInvite.Email,
|
|
|
|
CreatedAt: dbxInvite.CreatedAt,
|
|
|
|
}
|
|
|
|
|
2023-04-26 05:46:48 +01:00
|
|
|
projectID, err := uuid.FromBytes(dbxInvite.ProjectId)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-05-09 20:18:07 +01:00
|
|
|
invite.ProjectID = projectID
|
2023-04-26 05:46:48 +01:00
|
|
|
|
2023-05-09 20:18:07 +01:00
|
|
|
if dbxInvite.InviterId != nil {
|
|
|
|
inviterID, err := uuid.FromBytes(dbxInvite.InviterId)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
invite.InviterID = &inviterID
|
|
|
|
}
|
|
|
|
|
|
|
|
return invite, nil
|
2023-04-26 05:46:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// projectInvitationSliceFromDBX converts a project member invitation slice from the database to a
|
|
|
|
// slice of console.ProjectInvitation.
|
|
|
|
func projectInvitationSliceFromDBX(dbxInvites []*dbx.ProjectInvitation) (invites []console.ProjectInvitation, err error) {
|
2023-06-01 13:32:11 +01:00
|
|
|
return convertSlice(dbxInvites,
|
|
|
|
func(i *dbx.ProjectInvitation) (console.ProjectInvitation, error) {
|
|
|
|
r, err := projectInvitationFromDBX(i)
|
|
|
|
return *r, err
|
|
|
|
})
|
2023-04-26 05:46:48 +01:00
|
|
|
}
|