Documentation ¶
Index ¶
- Constants
- Variables
- func Register(name string, driver Driver)
- func Validate(v any) error
- type AuthClient
- type DB
- type Deployment
- type DeploymentStatus
- type DeploymentsCount
- type DeviceAuthCode
- type DeviceAuthCodeState
- type Driver
- type InsertDeploymentOptions
- type InsertOrganizationOptions
- type InsertProjectOptions
- type InsertUserAuthTokenOptions
- type InsertUserOptions
- type InsertUsergroupOptions
- type Invite
- type Member
- type Organization
- type OrganizationInvite
- type OrganizationRole
- type Project
- type ProjectInvite
- type ProjectRole
- type RuntimeSlotsUsed
- type Tx
- type UpdateOrganizationOptions
- type UpdateProjectOptions
- type UpdateUserOptions
- type User
- type UserAuthToken
- type Usergroup
- type Variables
Constants ¶
const ( AuthClientIDRillWeb = "12345678-0000-0000-0000-000000000001" AuthClientIDRillCLI = "12345678-0000-0000-0000-000000000002" )
Hard-coded auth client IDs (created in the migrations).
const ( OrganizationRoleNameAdmin = "admin" OrganizationRoleNameCollaborator = "collaborator" OrganizationRoleNameViewer = "viewer" ProjectRoleNameAdmin = "admin" ProjectRoleNameCollaborator = "collaborator" ProjectRoleNameViewer = "viewer" )
Constants for known role names (created in migrations).
const ( DefaultQuotaProjects = 5 DefaultQuotaDeployments = 10 DefaultQuotaSlotsTotal = 20 DefaultQuotaSlotsPerDeployment = 5 DefaultQuotaOutstandingInvites = 200 DefaultQuotaSingleuserOrgs = 3 )
Variables ¶
var Drivers = make(map[string]Driver)
Drivers is a registry of drivers
var ErrNotFound = errors.New("database: not found")
ErrNotFound is returned for single row queries that return no values.
var ErrNotUnique = errors.New("database: violates unique constraint")
ErrNotUnique is returned when a unique constraint is violated
Functions ¶
Types ¶
type AuthClient ¶ added in v0.23.0
type AuthClient struct { ID string DisplayName string CreatedOn time.Time `db:"created_on"` UpdatedOn time.Time `db:"updated_on"` }
AuthClient is a client that requests and consumes auth tokens.
type DB ¶
type DB interface { Close() error NewTx(ctx context.Context) (context.Context, Tx, error) Migrate(ctx context.Context) error FindMigrationVersion(ctx context.Context) (int, error) FindOrganizations(ctx context.Context) ([]*Organization, error) FindOrganizationsForUser(ctx context.Context, userID string) ([]*Organization, error) FindOrganization(ctx context.Context, id string) (*Organization, error) FindOrganizationByName(ctx context.Context, name string) (*Organization, error) CheckOrganizationHasOutsideUser(ctx context.Context, orgID, userID string) (bool, error) CheckOrganizationHasPublicProjects(ctx context.Context, orgID string) (bool, error) InsertOrganization(ctx context.Context, opts *InsertOrganizationOptions) (*Organization, error) DeleteOrganization(ctx context.Context, name string) error UpdateOrganization(ctx context.Context, id string, opts *UpdateOrganizationOptions) (*Organization, error) UpdateOrganizationAllUsergroup(ctx context.Context, orgID, groupID string) (*Organization, error) FindProjects(ctx context.Context, orgName string) ([]*Project, error) FindProjectsForUser(ctx context.Context, userID string) ([]*Project, error) FindProjectsForOrganization(ctx context.Context, orgID string) ([]*Project, error) FindProjectsForOrgAndUser(ctx context.Context, orgID, userID string) ([]*Project, error) FindPublicProjectsInOrganization(ctx context.Context, orgID string) ([]*Project, error) FindProjectsByGithubURL(ctx context.Context, githubURL string) ([]*Project, error) FindProjectsByOrgAndGithubURL(ctx context.Context, orgID string, githubURL string) ([]*Project, error) FindProject(ctx context.Context, id string) (*Project, error) FindProjectByName(ctx context.Context, orgName string, name string) (*Project, error) InsertProject(ctx context.Context, opts *InsertProjectOptions) (*Project, error) DeleteProject(ctx context.Context, id string) error UpdateProject(ctx context.Context, id string, opts *UpdateProjectOptions) (*Project, error) CountProjectsForOrganization(ctx context.Context, orgID string) (int, error) FindDeployments(ctx context.Context, projectID string) ([]*Deployment, error) FindDeployment(ctx context.Context, id string) (*Deployment, error) InsertDeployment(ctx context.Context, opts *InsertDeploymentOptions) (*Deployment, error) DeleteDeployment(ctx context.Context, id string) error UpdateDeploymentStatus(ctx context.Context, id string, status DeploymentStatus, logs string) (*Deployment, error) UpdateDeploymentBranch(ctx context.Context, id, branch string) (*Deployment, error) CountDeploymentsForOrganization(ctx context.Context, orgID string) (*DeploymentsCount, error) ResolveRuntimeSlotsUsed(ctx context.Context) ([]*RuntimeSlotsUsed, error) FindUsers(ctx context.Context) ([]*User, error) FindUser(ctx context.Context, id string) (*User, error) FindUserByEmail(ctx context.Context, email string) (*User, error) InsertUser(ctx context.Context, opts *InsertUserOptions) (*User, error) DeleteUser(ctx context.Context, id string) error UpdateUser(ctx context.Context, id string, opts *UpdateUserOptions) (*User, error) InsertUsergroup(ctx context.Context, opts *InsertUsergroupOptions) (*Usergroup, error) InsertUsergroupMember(ctx context.Context, groupID, userID string) error DeleteUsergroupMember(ctx context.Context, groupID, userID string) error FindUserAuthTokens(ctx context.Context, userID string) ([]*UserAuthToken, error) FindUserAuthToken(ctx context.Context, id string) (*UserAuthToken, error) InsertUserAuthToken(ctx context.Context, opts *InsertUserAuthTokenOptions) (*UserAuthToken, error) DeleteUserAuthToken(ctx context.Context, id string) error FindDeviceAuthCodeByDeviceCode(ctx context.Context, deviceCode string) (*DeviceAuthCode, error) FindPendingDeviceAuthCodeByUserCode(ctx context.Context, userCode string) (*DeviceAuthCode, error) InsertDeviceAuthCode(ctx context.Context, deviceCode, userCode, clientID string, expiresOn time.Time) (*DeviceAuthCode, error) DeleteDeviceAuthCode(ctx context.Context, deviceCode string) error UpdateDeviceAuthCode(ctx context.Context, id, userID string, state DeviceAuthCodeState) error FindOrganizationRole(ctx context.Context, name string) (*OrganizationRole, error) FindProjectRole(ctx context.Context, name string) (*ProjectRole, error) ResolveOrganizationRolesForUser(ctx context.Context, userID, orgID string) ([]*OrganizationRole, error) ResolveProjectRolesForUser(ctx context.Context, userID, projectID string) ([]*ProjectRole, error) FindOrganizationMemberUsers(ctx context.Context, orgID string) ([]*Member, error) FindOrganizationMemberUsersByRole(ctx context.Context, orgID, roleID string) ([]*User, error) InsertOrganizationMemberUser(ctx context.Context, orgID, userID, roleID string) error DeleteOrganizationMemberUser(ctx context.Context, orgID, userID string) error UpdateOrganizationMemberUserRole(ctx context.Context, orgID, userID, roleID string) error CountSingleuserOrganizationsForMemberUser(ctx context.Context, userID string) (int, error) FindProjectMemberUsers(ctx context.Context, projectID string) ([]*Member, error) InsertProjectMemberUser(ctx context.Context, projectID, userID, roleID string) error InsertProjectMemberUsergroup(ctx context.Context, groupID, projectID, roleID string) error DeleteProjectMemberUser(ctx context.Context, projectID, userID string) error DeleteAllProjectMemberUserForOrganization(ctx context.Context, orgID, userID string) error UpdateProjectMemberUserRole(ctx context.Context, projectID, userID, roleID string) error FindOrganizationInvites(ctx context.Context, orgID string) ([]*Invite, error) FindOrganizationInvitesByEmail(ctx context.Context, userEmail string) ([]*OrganizationInvite, error) FindOrganizationInvite(ctx context.Context, orgID, userEmail string) (*OrganizationInvite, error) InsertOrganizationInvite(ctx context.Context, email, orgID, roleID, invitedByID string) error DeleteOrganizationInvite(ctx context.Context, id string) error CountInvitesForOrganization(ctx context.Context, orgID string) (int, error) UpdateOrganizationInviteRole(ctx context.Context, id, roleID string) error FindProjectInvites(ctx context.Context, projectID string) ([]*Invite, error) FindProjectInvitesByEmail(ctx context.Context, userEmail string) ([]*ProjectInvite, error) FindProjectInvite(ctx context.Context, projectID, userEmail string) (*ProjectInvite, error) InsertProjectInvite(ctx context.Context, email, projectID, roleID, invitedByID string) error DeleteProjectInvite(ctx context.Context, id string) error UpdateProjectInviteRole(ctx context.Context, id, roleID string) error }
DB is the interface for a database connection.
type Deployment ¶ added in v0.23.0
type Deployment struct { ID string `db:"id"` ProjectID string `db:"project_id"` Slots int `db:"slots"` Branch string `db:"branch"` RuntimeHost string `db:"runtime_host"` RuntimeInstanceID string `db:"runtime_instance_id"` RuntimeAudience string `db:"runtime_audience"` Status DeploymentStatus `db:"status"` Logs string `db:"logs"` CreatedOn time.Time `db:"created_on"` UpdatedOn time.Time `db:"updated_on"` }
Deployment is a single deployment of a git branch. Deployments belong to a project.
type DeploymentStatus ¶ added in v0.23.0
type DeploymentStatus int
DeploymentStatus is an enum representing the state of a deployment
const ( DeploymentStatusUnspecified DeploymentStatus = 0 DeploymentStatusPending DeploymentStatus = 1 DeploymentStatusOK DeploymentStatus = 2 DeploymentStatusReconciling DeploymentStatus = 3 DeploymentStatusError DeploymentStatus = 4 )
type DeploymentsCount ¶ added in v0.24.1
type DeviceAuthCode ¶ added in v0.24.0
type DeviceAuthCode struct { ID string `db:"id"` DeviceCode string `db:"device_code"` UserCode string `db:"user_code"` Expiry time.Time `db:"expires_on"` ApprovalState DeviceAuthCodeState `db:"approval_state"` ClientID string `db:"client_id"` UserID *string `db:"user_id"` CreatedOn time.Time `db:"created_on"` UpdatedOn time.Time `db:"updated_on"` }
DeviceAuthCode represents a user authentication code as part of the OAuth2 Device Authorization flow. They're currently used for authenticating users in the CLI.
type DeviceAuthCodeState ¶ added in v0.24.0
type DeviceAuthCodeState int
DeviceAuthCodeState is an enum representing the approval state of a DeviceAuthCode
const ( DeviceAuthCodeStatePending DeviceAuthCodeState = 0 DeviceAuthCodeStateApproved DeviceAuthCodeState = 1 DeviceAuthCodeStateRejected DeviceAuthCodeState = 2 )
type InsertDeploymentOptions ¶ added in v0.23.1
type InsertDeploymentOptions struct { ProjectID string Slots int Branch string `validate:"required"` RuntimeHost string `validate:"required"` RuntimeInstanceID string `validate:"required"` RuntimeAudience string Status DeploymentStatus Logs string }
InsertDeploymentOptions defines options for inserting a new Deployment.
type InsertOrganizationOptions ¶ added in v0.24.0
type InsertOrganizationOptions struct { Name string `validate:"slug"` Description string QuotaProjects int QuotaDeployments int QuotaSlotsTotal int QuotaSlotsPerDeployment int QuotaOutstandingInvites int }
InsertOrganizationOptions defines options for inserting a new org
type InsertProjectOptions ¶ added in v0.23.1
type InsertProjectOptions struct { OrganizationID string `validate:"required"` Name string `validate:"slug"` Description string Public bool Region string GithubURL *string `validate:"omitempty,http_url"` GithubInstallationID *int64 `validate:"omitempty,ne=0"` ProdBranch string ProdVariables map[string]string ProdOLAPDriver string ProdOLAPDSN string ProdSlots int }
InsertProjectOptions defines options for inserting a new Project.
type InsertUserAuthTokenOptions ¶ added in v0.23.1
type InsertUserAuthTokenOptions struct { ID string SecretHash []byte UserID string DisplayName string AuthClientID *string }
InsertUserAuthTokenOptions defines options for creating a UserAuthToken.
type InsertUserOptions ¶ added in v0.24.0
type InsertUserOptions struct { Email string `validate:"email"` DisplayName string PhotoURL string QuotaSingleuserOrgs int }
InsertUserOptions defines options for inserting a new user
type InsertUsergroupOptions ¶ added in v0.24.0
InsertUsergroupOptions defines options for inserting a new usergroup
type Invite ¶ added in v0.24.0
Invite is a convenience type used for display-friendly representation of an OrganizationInvite or ProjectInvite.
type Member ¶ added in v0.24.0
type Member struct { ID string Email string DisplayName string `db:"display_name"` RoleName string `db:"name"` CreatedOn time.Time `db:"created_on"` UpdatedOn time.Time `db:"updated_on"` }
Member is a convenience type used for display-friendly representation of an org or project member.
type Organization ¶
type Organization struct { ID string Name string Description string AllUsergroupID *string `db:"all_usergroup_id"` CreatedOn time.Time `db:"created_on"` UpdatedOn time.Time `db:"updated_on"` QuotaProjects int `db:"quota_projects"` QuotaDeployments int `db:"quota_deployments"` QuotaSlotsTotal int `db:"quota_slots_total"` QuotaSlotsPerDeployment int `db:"quota_slots_per_deployment"` QuotaOutstandingInvites int `db:"quota_outstanding_invites"` }
Organization represents a tenant.
type OrganizationInvite ¶ added in v0.24.0
type OrganizationInvite struct { ID string Email string OrgID string `db:"org_id"` OrgRoleID string `db:"org_role_id"` InvitedByUserID string `db:"invited_by_user_id"` CreatedOn time.Time `db:"created_on"` }
OrganizationInvite represents an outstanding invitation to join an org.
type OrganizationRole ¶ added in v0.24.0
type OrganizationRole struct { ID string Name string ReadOrg bool `db:"read_org"` ManageOrg bool `db:"manage_org"` ReadProjects bool `db:"read_projects"` CreateProjects bool `db:"create_projects"` ManageProjects bool `db:"manage_projects"` ReadOrgMembers bool `db:"read_org_members"` ManageOrgMembers bool `db:"manage_org_members"` }
OrganizationRole represents roles for orgs.
type Project ¶
type Project struct { ID string OrganizationID string `db:"org_id"` Name string Description string Public bool Region string GithubURL *string `db:"github_url"` GithubInstallationID *int64 `db:"github_installation_id"` ProdBranch string `db:"prod_branch"` ProdVariables Variables `db:"prod_variables"` ProdOLAPDriver string `db:"prod_olap_driver"` ProdOLAPDSN string `db:"prod_olap_dsn"` ProdSlots int `db:"prod_slots"` ProdDeploymentID *string `db:"prod_deployment_id"` CreatedOn time.Time `db:"created_on"` UpdatedOn time.Time `db:"updated_on"` }
Project represents one Git connection. Projects belong to an organization.
type ProjectInvite ¶ added in v0.24.0
type ProjectInvite struct { ID string Email string ProjectID string `db:"project_id"` ProjectRoleID string `db:"project_role_id"` InvitedByUserID string `db:"invited_by_user_id"` CreatedOn time.Time `db:"created_on"` }
ProjectInvite represents an outstanding invitation to join a project.
type ProjectRole ¶ added in v0.24.0
type ProjectRole struct { ID string Name string ReadProject bool `db:"read_project"` ManageProject bool `db:"manage_project"` ReadProd bool `db:"read_prod"` ReadProdStatus bool `db:"read_prod_status"` ManageProd bool `db:"manage_prod"` ReadDev bool `db:"read_dev"` ReadDevStatus bool `db:"read_dev_status"` ManageDev bool `db:"manage_dev"` ReadProjectMembers bool `db:"read_project_members"` ManageProjectMembers bool `db:"manage_project_members"` }
ProjectRole represents roles for projects.
type RuntimeSlotsUsed ¶ added in v0.23.0
type RuntimeSlotsUsed struct { RuntimeHost string `db:"runtime_host"` SlotsUsed int `db:"slots_used"` }
RuntimeSlotsUsed is the result of a ResolveRuntimeSlotsUsed query.
type Tx ¶ added in v0.23.0
type Tx interface { // Commit commits the transaction Commit() error // Rollback discards the transaction *unless* it has already been committed. // It does nothing if Commit has already been called. // This means that a call to Rollback should almost always be defer'ed right after a call to NewTx. Rollback() error }
Tx represents a database transaction. It can only be used to commit and rollback transactions. Actual database calls should be made by passing the ctx returned from DB.NewTx to functions on the DB.
type UpdateOrganizationOptions ¶ added in v0.24.0
UpdateOrganizationOptions defines options for updating an existing org
type UpdateProjectOptions ¶ added in v0.23.1
type UpdateProjectOptions struct { Name string `validate:"slug"` Description string Public bool GithubURL *string `validate:"omitempty,http_url"` GithubInstallationID *int64 `validate:"omitempty,ne=0"` ProdBranch string ProdVariables map[string]string ProdDeploymentID *string }
UpdateProjectOptions defines options for updating a Project.
type UpdateUserOptions ¶ added in v0.24.0
UpdateUserOptions defines options for updating an existing user
type User ¶ added in v0.23.0
type User struct { ID string Email string DisplayName string `db:"display_name"` PhotoURL string `db:"photo_url"` GithubUsername string `db:"github_username"` CreatedOn time.Time `db:"created_on"` UpdatedOn time.Time `db:"updated_on"` QuotaSingleuserOrgs int `db:"quota_singleuser_orgs"` }
User is a person registered in Rill. Users may belong to multiple organizations and projects.
type UserAuthToken ¶ added in v0.23.0
type UserAuthToken struct { ID string SecretHash []byte `db:"secret_hash"` UserID string `db:"user_id"` DisplayName string `db:"display_name"` AuthClientID *string `db:"auth_client_id"` CreatedOn time.Time `db:"created_on"` }
UserAuthToken is a persistent API token for a user.