1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 13:30:26 +00:00
mycorrhiza/migration/rockets.go

52 lines
1.3 KiB
Go
Raw Normal View History

package migration
import (
"git.sr.ht/~bouncepaw/mycomarkup/v5/tools"
2022-05-20 10:17:53 +00:00
"github.com/bouncepaw/mycorrhiza/files"
"io/ioutil"
"log"
"os"
)
var rocketMarkerPath string
// MigrateRocketsMaybe checks if the rocket link migration marker exists. If it exists, nothing is done. If it does not, the migration takes place.
//
// This function writes logs and might terminate the program. Tons of side-effects, stay safe.
func MigrateRocketsMaybe() {
rocketMarkerPath = files.FileInRoot(".mycomarkup-rocket-link-migration-marker.txt")
if !shouldMigrateRockets() {
return
}
2022-05-20 10:17:53 +00:00
genericLineMigrator(
"Migrate rocket links to the new syntax",
tools.MigrateRocketLinks,
"Something went wrong when commiting rocket link migration: ",
)
createRocketLinkMarker()
}
func shouldMigrateRockets() bool {
file, err := os.Open(rocketMarkerPath)
if os.IsNotExist(err) {
return true
}
if err != nil {
log.Fatalln("When checking if rocket migration is needed:", err.Error())
}
_ = file.Close()
return false
}
func createRocketLinkMarker() {
err := ioutil.WriteFile(
rocketMarkerPath,
[]byte(`This file is used to mark that the rocket link migration was made successfully. If this file is deleted, the migration might happen again depending on the version. You should probably not touch this file at all and let it be.`),
0766,
)
if err != nil {
log.Fatalln(err)
}
}