You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/iam/role.go

97 lines
2.4 KiB

package iam
import (
"context"
"errors"
"fmt"
"github.com/hashicorp/watchtower/internal/db"
"github.com/hashicorp/watchtower/internal/iam/store"
"google.golang.org/protobuf/proto"
)
// Roles are granted permissions and assignable to Users and Groups.
type Role struct {
*store.Role
tableName string `gorm:"-"`
}
// ensure that Role implements the interfaces of: Resource, Clonable, and db.VetForWriter.
var _ Resource = (*Role)(nil)
var _ Clonable = (*Role)(nil)
var _ db.VetForWriter = (*Role)(nil)
// NewRole creates a new in memory role with a scope (project/organization)
// allowed options include: withDescripion, WithName.
func NewRole(scopeId string, opt ...Option) (*Role, error) {
if scopeId == "" {
return nil, fmt.Errorf("new role: missing scope id %w", db.ErrInvalidParameter)
}
opts := getOpts(opt...)
r := &Role{
Role: &store.Role{
ScopeId: scopeId,
Name: opts.withName,
Description: opts.withDescription,
},
}
return r, nil
}
func allocRole() Role {
return Role{
Role: &store.Role{},
}
}
// Clone creates a clone of the Role.
func (r *Role) Clone() interface{} {
cp := proto.Clone(r.Role)
return &Role{
Role: cp.(*store.Role),
}
}
// VetForWrite implements db.VetForWrite() interface.
func (role *Role) VetForWrite(ctx context.Context, r db.Reader, opType db.OpType, opt ...db.Option) error {
if role.PublicId == "" {
return errors.New("error public id is empty string for role write")
}
if err := validateScopeForWrite(ctx, r, role, opType, opt...); err != nil {
return err
}
return nil
}
func (u *Role) validScopeTypes() []ScopeType {
return []ScopeType{OrganizationScope, ProjectScope}
}
// Getscope returns the scope for the Role.
func (role *Role) GetScope(ctx context.Context, r db.Reader) (*Scope, error) {
return LookupScope(ctx, r, role)
}
// ResourceType returns the type of the Role.
func (*Role) ResourceType() ResourceType { return ResourceTypeRole }
// Actions returns the available actions for Role.
func (*Role) Actions() map[string]Action {
return CrudActions()
}
// TableName returns the tablename to override the default gorm table name.
func (r *Role) TableName() string {
if r.tableName != "" {
return r.tableName
}
return "iam_role"
}
// SetTableName sets the tablename and satisfies the ReplayableMessage interface.
func (r *Role) SetTableName(n string) {
if n != "" {
r.tableName = n
}
}