diff options
author | Daniel Baumann <daniel@debian.org> | 2024-10-18 20:33:49 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-12-12 23:57:56 +0100 |
commit | e68b9d00a6e05b3a941f63ffb696f91e554ac5ec (patch) | |
tree | 97775d6c13b0f416af55314eb6a89ef792474615 /modules/system/db.go | |
parent | Initial commit. (diff) | |
download | forgejo-e68b9d00a6e05b3a941f63ffb696f91e554ac5ec.tar.xz forgejo-e68b9d00a6e05b3a941f63ffb696f91e554ac5ec.zip |
Adding upstream version 9.0.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'modules/system/db.go')
-rw-r--r-- | modules/system/db.go | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/modules/system/db.go b/modules/system/db.go new file mode 100644 index 0000000..1717828 --- /dev/null +++ b/modules/system/db.go @@ -0,0 +1,36 @@ +// Copyright 2021 The Gitea Authors. All rights reserved. +// SPDX-License-Identifier: MIT + +package system + +import ( + "context" + + "code.gitea.io/gitea/models/system" + "code.gitea.io/gitea/modules/json" + "code.gitea.io/gitea/modules/util" +) + +// DBStore can be used to store app state items in local filesystem +type DBStore struct{} + +// Get reads the state item +func (f *DBStore) Get(ctx context.Context, item StateItem) error { + content, err := system.GetAppStateContent(ctx, item.Name()) + if err != nil { + return err + } + if content == "" { + return nil + } + return json.Unmarshal(util.UnsafeStringToBytes(content), item) +} + +// Set saves the state item +func (f *DBStore) Set(ctx context.Context, item StateItem) error { + b, err := json.Marshal(item) + if err != nil { + return err + } + return system.SaveAppStateContent(ctx, item.Name(), util.UnsafeBytesToString(b)) +} |