App represents a Vanilla OS application
WithCLI adds a command line interface to the application
app.WithCLI(&cli.CLIOptions{
Use: "batsignal",
Short: "A simple CLI to call Batman",
Long: "A simple CLI to call Batman using the BatSignal",
})
{
app.CLI = cli.NewCLI(options)
}
NewApp creates a new Vanilla OS application, which can be used to
interact with the system. The application is created with the
default configuration if no options are provided.
app, err := app.NewApp({
RDNN: "com.vanilla-os.batsignal",
Name: "BatSignal",
Version: "1.0.0",
LocalesFS: localesFS,
DefaultLocale: "en",
CLIOptions: &cli.CLIOptions{
Use: "batsignal",
Short: "A simple CLI to call Batman",
Long: "A simple CLI to call Batman using the BatSignal",
},
})
if err != nil {
fmt.Printf("Error: %v\n", err)
return
}
fmt.Printf("App Sign: %s\n", app.Sign)
If the project does not provide a FS for the locales, the
localizer will not be created. If the localizer fails to be created
in any way, the application will continue to work without it but
translation keys will be returned as they are (in English).
The logger, instead, is mandatory for each application. So if the
logger fails to be created, the application will return an error and
will not work.
{
app := App{
RDNN: options.RDNN,
Name: options.Name,
Version: options.Version,
LocalesFS: options.LocalesFS,
}
app.Sign = generateAppSign(&app)
// here we prepare a logger for the application
logger, err := logs.NewLogger(string(app.Sign))
if err != nil {
return &app, err // logger is mandatory for each application
}
app.Log = logger
// here we prepare a localizer for the application
localizer, err := i18n.NewLocalizer(options.LocalesFS, app.RDNN, options.DefaultLocale)
if err == nil {
app.LC = *localizer
} // something went wrong, perhaps the FS is not provided
return &app, nil
}
generateAppSign generates a unique signature for the application
based on the RDNN, name and version. The signature is used to
identify the application.
{
sign := fmt.Sprintf("%s-%s-%s", app.RDNN, app.Name, app.Version)
h := sha1.New()
h.Write([]byte(sign))
return types.Sign(base64.URLEncoding.EncodeToString(h.Sum(nil)))
}
import "crypto/sha1"
import "embed"
import "encoding/base64"
import "fmt"
import "github.com/vanilla-os/sdk/pkg/v1/app/types"
import "github.com/vanilla-os/sdk/pkg/v1/cli"
import "github.com/vanilla-os/sdk/pkg/v1/cli/types"
cliTypes
import "github.com/vanilla-os/sdk/pkg/v1/i18n"
import "github.com/vanilla-os/sdk/pkg/v1/logs"
import "github.com/vanilla-os/sdk/pkg/v1/logs/types"
logsTypes
import "github.com/vorlif/spreak"