2018-11-13 08:27:42 +00:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package satellite
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/skyrings/skyring-common/tools/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Projects exposes methods to manage Project table in database.
|
|
|
|
type Projects interface {
|
|
|
|
// GetAll is a method for querying all projects from the database.
|
|
|
|
GetAll(ctx context.Context) ([]Project, error)
|
2018-11-14 12:45:49 +00:00
|
|
|
// GetByOwnerID is a method for querying projects from the database by ownerID.
|
|
|
|
GetByOwnerID(ctx context.Context, ownerID uuid.UUID) ([]Project, error)
|
2018-11-13 08:27:42 +00:00
|
|
|
// Get is a method for querying project from the database by id.
|
|
|
|
Get(ctx context.Context, id uuid.UUID) (*Project, error)
|
|
|
|
// Insert is a method for inserting project into the database.
|
2018-11-14 12:45:49 +00:00
|
|
|
Insert(ctx context.Context, project *Project) (*Project, error)
|
2018-11-13 08:27:42 +00:00
|
|
|
// Delete is a method for deleting project by Id from the database.
|
|
|
|
Delete(ctx context.Context, id uuid.UUID) error
|
|
|
|
// Update is a method for updating project entity.
|
2018-11-14 12:45:49 +00:00
|
|
|
Update(ctx context.Context, project *Project) error
|
2018-11-13 08:27:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Project is a database object that describes Project entity
|
|
|
|
type Project struct {
|
|
|
|
ID uuid.UUID
|
|
|
|
// FK on Users table. ID of project creator.
|
2018-11-14 12:45:49 +00:00
|
|
|
OwnerID *uuid.UUID
|
2018-11-13 08:27:42 +00:00
|
|
|
|
|
|
|
Name string
|
|
|
|
Description string
|
|
|
|
// Indicates if user accepted terms and conditions during project creation.
|
|
|
|
IsAgreedWithTerms bool
|
|
|
|
|
|
|
|
CreatedAt time.Time
|
|
|
|
}
|