mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
146 lines
3.2 KiB
Go
146 lines
3.2 KiB
Go
package file
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/lus/pasty/internal/config"
|
|
"github.com/lus/pasty/internal/shared"
|
|
)
|
|
|
|
// FileDriver represents the file storage driver
|
|
type FileDriver struct {
|
|
filePath string
|
|
}
|
|
|
|
// Initialize initializes the file storage driver
|
|
func (driver *FileDriver) Initialize() error {
|
|
driver.filePath = config.Current.File.Path
|
|
return os.MkdirAll(driver.filePath, os.ModePerm)
|
|
}
|
|
|
|
// Terminate terminates the file storage driver (does nothing, because the file storage driver does not need any termination)
|
|
func (driver *FileDriver) Terminate() error {
|
|
return nil
|
|
}
|
|
|
|
// ListIDs returns a list of all existing paste IDs
|
|
func (driver *FileDriver) ListIDs() ([]string, error) {
|
|
// Define the IDs slice
|
|
var ids []string
|
|
|
|
// Fill the IDs slice
|
|
err := filepath.Walk(driver.filePath, func(path string, info os.FileInfo, err error) error {
|
|
// Check if a walking error occurred
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Only count JSON files
|
|
if !strings.HasSuffix(info.Name(), ".json") {
|
|
return nil
|
|
}
|
|
|
|
// Decode the file name
|
|
decoded, err := base64.StdEncoding.DecodeString(strings.TrimSuffix(info.Name(), ".json"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Append the ID to the IDs slice
|
|
ids = append(ids, string(decoded))
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Return the IDs slice
|
|
return ids, nil
|
|
}
|
|
|
|
// Get loads a paste
|
|
func (driver *FileDriver) Get(id string) (*shared.Paste, error) {
|
|
// Read the file
|
|
id = base64.StdEncoding.EncodeToString([]byte(id))
|
|
data, err := ioutil.ReadFile(filepath.Join(driver.filePath, id+".json"))
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
return nil, nil
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
// Unmarshal the file into a paste
|
|
paste := new(shared.Paste)
|
|
err = json.Unmarshal(data, &paste)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return paste, nil
|
|
}
|
|
|
|
// Save saves a paste
|
|
func (driver *FileDriver) Save(paste *shared.Paste) error {
|
|
// Marshal the paste
|
|
jsonBytes, err := json.Marshal(paste)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Create the file to save the paste to
|
|
id := base64.StdEncoding.EncodeToString([]byte(paste.ID))
|
|
file, err := os.Create(filepath.Join(driver.filePath, id+".json"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
|
|
// Write the JSON data into the file
|
|
_, err = file.Write(jsonBytes)
|
|
return err
|
|
}
|
|
|
|
// Delete deletes a paste
|
|
func (driver *FileDriver) Delete(id string) error {
|
|
id = base64.StdEncoding.EncodeToString([]byte(id))
|
|
return os.Remove(filepath.Join(driver.filePath, id+".json"))
|
|
}
|
|
|
|
// Cleanup cleans up the expired pastes
|
|
func (driver *FileDriver) Cleanup() (int, error) {
|
|
// Retrieve all paste IDs
|
|
ids, err := driver.ListIDs()
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
// Define the amount of deleted items
|
|
deleted := 0
|
|
|
|
// Loop through all pastes
|
|
for _, id := range ids {
|
|
// Retrieve the paste object
|
|
paste, err := driver.Get(id)
|
|
if err != nil {
|
|
return deleted, err
|
|
}
|
|
|
|
// Delete the paste if it is expired
|
|
lifetime := config.Current.AutoDelete.Lifetime
|
|
if paste.Created+int64(lifetime.Seconds()) < time.Now().Unix() {
|
|
err = driver.Delete(id)
|
|
if err != nil {
|
|
return deleted, err
|
|
}
|
|
deleted++
|
|
}
|
|
}
|
|
return deleted, nil
|
|
}
|