mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
0354945502
Featuring own fork of go-localize! It's not in dependencies though.
42 lines
1.0 KiB
Go
42 lines
1.0 KiB
Go
package shroom
|
||
|
||
import (
|
||
"fmt"
|
||
|
||
"github.com/bouncepaw/mycorrhiza/history"
|
||
"github.com/bouncepaw/mycorrhiza/hyphae"
|
||
"github.com/bouncepaw/mycorrhiza/l18n"
|
||
"github.com/bouncepaw/mycorrhiza/user"
|
||
)
|
||
|
||
// UnattachHypha unattaches hypha and makes a history record about that.
|
||
func UnattachHypha(u *user.User, h *hyphae.Hypha, lc *l18n.Localizer) (hop *history.Op, errtitle string) {
|
||
hop = history.Operation(history.TypeUnattachHypha)
|
||
|
||
if errtitle, err := CanUnattach(u, h, lc); errtitle != "" {
|
||
hop.WithErrAbort(err)
|
||
return hop, errtitle
|
||
}
|
||
|
||
hop.
|
||
WithFilesRemoved(h.BinaryPath).
|
||
WithMsg(fmt.Sprintf("Unattach ‘%s’", h.Name)).
|
||
WithUser(u).
|
||
Apply()
|
||
|
||
if len(hop.Errs) > 0 {
|
||
rejectUnattachLog(h, u, "fail")
|
||
// FIXME: something may be wrong here
|
||
return hop.WithErrAbort(fmt.Errorf("Could not unattach this hypha due to internal server errors: <code>%v</code>", hop.Errs)), "Error"
|
||
}
|
||
|
||
if h.BinaryPath != "" {
|
||
h.BinaryPath = ""
|
||
}
|
||
// If nothing is left of the hypha
|
||
if h.TextPath == "" {
|
||
h.Delete()
|
||
}
|
||
return hop, ""
|
||
}
|