mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 06:49:40 +02:00
* feat(custom-templates): introduce types * feat(custom-templates): introduce data layer service * feat(custom-templates): introduce http handler * feat(custom-templates): create routes and view stubs * feat(custom-templates): add create custom template ui * feat(custom-templates): add json keys * feat(custom-templates): introduce custom templates list page * feat(custom-templates): introduce update page * feat(stack): create template from stack * feat(stacks): create stack from custom template * feat(custom-templates): disable edit/delete of templates * fix(custom-templates): fail update on non admin/owner * fix(custom-templates): add ng-inject decorator * chore(plop): revert template * feat(stacks): remove actions column * feat(stack): add button to create template from stack * feat(stacks): add empty state for templates * feat(custom-templates): show templates in a list * feat(custom-template): replace table with list * feat(custom-templates): move create template button * refactor(custom-templates): introduce more fields * feat(custom-templates): use stack type when creating template * feat(custom-templates): use same type as stack * feat(custom-templates): add edit and delete buttons to template item * feat(custom-templates): customize stack before deploy * feat(stack): show template details * feat(custom-templates): move customize * feat(custom-templates): create description required * fix(template): show platform icon * fix(custom-templates): show spinner when creating stack * feat(custom-templates): prevent user from edit templates * feat(custom-templates): use resource control for custom templates * feat(custom-templates): show created templates * feat(custom-templates): filter templates by stack type * fix(custom-templates): create swarm or standalone stack * feat(stacks): filter templates by type * feat(resource-control): disable resource control on public * feat(custom-template): apply access control on edit * feat(custom-template): add form validation * feat(stack): disable create custom template from external task * refactor(custom-templates): create template from file and type * feat(templates): introduce a file handler that returns template docker file * feat(template): introduce template duplication * feat(custom-template): enforce unique template name * fix(template): rename copy button * fix(custom-template): clear access control selection between templates * fix(custom-templates): show required fields * refactor(filesystem): use a constant for temp path
96 lines
2.8 KiB
Go
96 lines
2.8 KiB
Go
package customtemplate
|
|
|
|
import (
|
|
"github.com/boltdb/bolt"
|
|
"github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/bolt/internal"
|
|
)
|
|
|
|
const (
|
|
// BucketName represents the name of the bucket where this service stores data.
|
|
BucketName = "customtemplates"
|
|
)
|
|
|
|
// Service represents a service for managing custom template data.
|
|
type Service struct {
|
|
db *bolt.DB
|
|
}
|
|
|
|
// NewService creates a new instance of a service.
|
|
func NewService(db *bolt.DB) (*Service, error) {
|
|
err := internal.CreateBucket(db, BucketName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &Service{
|
|
db: db,
|
|
}, nil
|
|
}
|
|
|
|
// CustomTemplates return an array containing all the custom templates.
|
|
func (service *Service) CustomTemplates() ([]portainer.CustomTemplate, error) {
|
|
var customTemplates = make([]portainer.CustomTemplate, 0)
|
|
|
|
err := service.db.View(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket([]byte(BucketName))
|
|
|
|
cursor := bucket.Cursor()
|
|
for k, v := cursor.First(); k != nil; k, v = cursor.Next() {
|
|
var customTemplate portainer.CustomTemplate
|
|
err := internal.UnmarshalObjectWithJsoniter(v, &customTemplate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
customTemplates = append(customTemplates, customTemplate)
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
return customTemplates, err
|
|
}
|
|
|
|
// CustomTemplate returns an custom template by ID.
|
|
func (service *Service) CustomTemplate(ID portainer.CustomTemplateID) (*portainer.CustomTemplate, error) {
|
|
var customTemplate portainer.CustomTemplate
|
|
identifier := internal.Itob(int(ID))
|
|
|
|
err := internal.GetObject(service.db, BucketName, identifier, &customTemplate)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &customTemplate, nil
|
|
}
|
|
|
|
// UpdateCustomTemplate updates an custom template.
|
|
func (service *Service) UpdateCustomTemplate(ID portainer.CustomTemplateID, customTemplate *portainer.CustomTemplate) error {
|
|
identifier := internal.Itob(int(ID))
|
|
return internal.UpdateObject(service.db, BucketName, identifier, customTemplate)
|
|
}
|
|
|
|
// DeleteCustomTemplate deletes an custom template.
|
|
func (service *Service) DeleteCustomTemplate(ID portainer.CustomTemplateID) error {
|
|
identifier := internal.Itob(int(ID))
|
|
return internal.DeleteObject(service.db, BucketName, identifier)
|
|
}
|
|
|
|
// CreateCustomTemplate assign an ID to a new custom template and saves it.
|
|
func (service *Service) CreateCustomTemplate(customTemplate *portainer.CustomTemplate) error {
|
|
return service.db.Update(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket([]byte(BucketName))
|
|
|
|
data, err := internal.MarshalObject(customTemplate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return bucket.Put(internal.Itob(int(customTemplate.ID)), data)
|
|
})
|
|
}
|
|
|
|
// GetNextIdentifier returns the next identifier for a custom template.
|
|
func (service *Service) GetNextIdentifier() int {
|
|
return internal.GetNextIdentifier(service.db, BucketName)
|
|
}
|