drone/types/space.go
Enver Bisevac 00647d7d1b [MAINT] golangci-lint config changed (#31)
* goheader linter added

* file header consistency
2022-10-13 14:39:15 +02:00

44 lines
1.7 KiB
Go

// Copyright 2022 Harness Inc. All rights reserved.
// Use of this source code is governed by the Polyform Free Trial License
// that can be found in the LICENSE.md file for this repository.
package types
import (
"github.com/harness/gitness/types/enum"
)
/*
Space represents a space.
There isn't a one-solves-all hierarchical data structure for DBs,
so for now we are using a mix of materialized paths and adjacency list.
Every space stores its parent, and a space's path is stored in a separate table.
PRO: Quick lookup of childs, quick lookup based on fqdn (apis)
CON: Changing a space name requires changing all its ancestors' Paths.
Interesting reads:
https://stackoverflow.com/questions/4048151/what-are-the-options-for-storing-hierarchical-data-in-a-relational-database
https://www.slideshare.net/billkarwin/models-for-hierarchical-data
*/
type Space struct {
// TODO: int64 ID doesn't match DB
ID int64 `db:"space_id" json:"id"`
ParentID int64 `db:"space_parentId" json:"parentId"`
PathName string `db:"space_pathName" json:"pathName"`
Path string `db:"space_path" json:"path"`
Name string `db:"space_name" json:"name"`
Description string `db:"space_description" json:"description"`
IsPublic bool `db:"space_isPublic" json:"isPublic"`
CreatedBy int64 `db:"space_createdBy" json:"createdBy"`
Created int64 `db:"space_created" json:"created"`
Updated int64 `db:"space_updated" json:"updated"`
}
// Stores spaces query parameters.
type SpaceFilter struct {
Page int `json:"page"`
Size int `json:"size"`
Sort enum.SpaceAttr `json:"sort"`
Order enum.Order `json:"direction"`
}