mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* refactor(stack): create unique name function * refactor(stack): change stack resource control id * feat(stacks): validate stack unique name in endpoint * feat(stacks): prevent name collision with external stacks * refactor(stacks): move resource id util * refactor(stacks): supply resource id util with name and endpoint * fix(docker): calculate swarm resource id * feat(stack): prevent migration if stack name already exist * feat(authorization): use stackutils
39 lines
741 B
Go
39 lines
741 B
Go
package migrator
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
)
|
|
|
|
func (m *Migrator) updateStackResourceControlToDB27() error {
|
|
resourceControls, err := m.resourceControlService.ResourceControls()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, resource := range resourceControls {
|
|
if resource.Type != portainer.StackResourceControl {
|
|
continue
|
|
}
|
|
|
|
stackName := resource.ResourceID
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
stack, err := m.stackService.StackByName(stackName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resource.ResourceID = fmt.Sprintf("%d_%s", stack.EndpointID, stack.Name)
|
|
|
|
err = m.resourceControlService.UpdateResourceControl(resource.ID, &resource)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|