2022-08-03 14:55:48 +00:00
|
|
|
package owl
|
2022-07-20 17:17:42 +00:00
|
|
|
|
|
|
|
import (
|
2022-07-24 13:34:52 +00:00
|
|
|
"embed"
|
2022-07-23 07:11:25 +00:00
|
|
|
_ "embed"
|
2022-07-20 17:17:42 +00:00
|
|
|
"fmt"
|
2022-07-24 18:29:31 +00:00
|
|
|
"io/ioutil"
|
2022-07-20 17:17:42 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
2022-07-27 19:53:56 +00:00
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
2022-07-20 17:17:42 +00:00
|
|
|
)
|
|
|
|
|
2022-07-24 13:34:52 +00:00
|
|
|
//go:embed embed/initial/base.html
|
2022-07-23 07:11:25 +00:00
|
|
|
var base_template string
|
2022-07-24 13:34:52 +00:00
|
|
|
|
2022-07-24 18:29:31 +00:00
|
|
|
//go:embed embed/*
|
2022-07-24 13:34:52 +00:00
|
|
|
var static_files embed.FS
|
|
|
|
|
2022-07-23 13:17:14 +00:00
|
|
|
var VERSION = "0.0.1"
|
2022-07-23 07:11:25 +00:00
|
|
|
|
2022-07-20 17:17:42 +00:00
|
|
|
type Repository struct {
|
2022-08-03 18:34:42 +00:00
|
|
|
name string
|
|
|
|
single_user_mode bool
|
|
|
|
active_user string
|
2022-07-20 17:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func CreateRepository(name string) (Repository, error) {
|
2022-07-20 17:33:22 +00:00
|
|
|
newRepo := Repository{name: name}
|
2022-07-20 17:17:42 +00:00
|
|
|
// check if repository already exists
|
2022-07-20 17:33:22 +00:00
|
|
|
if dirExists(newRepo.Dir()) {
|
2022-07-20 17:17:42 +00:00
|
|
|
return Repository{}, fmt.Errorf("Repository already exists")
|
|
|
|
}
|
|
|
|
|
2022-07-24 13:34:52 +00:00
|
|
|
os.Mkdir(newRepo.Dir(), 0755)
|
|
|
|
os.Mkdir(newRepo.UsersDir(), 0755)
|
|
|
|
os.Mkdir(newRepo.StaticDir(), 0755)
|
|
|
|
|
|
|
|
// copy all files from static_files embed.FS to StaticDir
|
|
|
|
staticFiles, _ := static_files.ReadDir("embed/initial/static")
|
|
|
|
for _, file := range staticFiles {
|
|
|
|
if file.IsDir() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
src_data, _ := static_files.ReadFile(file.Name())
|
|
|
|
os.WriteFile(newRepo.StaticDir()+"/"+file.Name(), src_data, 0644)
|
|
|
|
}
|
2022-07-24 18:29:31 +00:00
|
|
|
|
|
|
|
// copy repo_base.html to base.html
|
|
|
|
src_data, _ := static_files.ReadFile("embed/initial/repo_base.html")
|
|
|
|
os.WriteFile(newRepo.Dir()+"/base.html", src_data, 0644)
|
2022-07-20 17:33:22 +00:00
|
|
|
return newRepo, nil
|
2022-07-20 17:17:42 +00:00
|
|
|
}
|
|
|
|
|
2022-07-23 07:00:10 +00:00
|
|
|
func OpenRepository(name string) (Repository, error) {
|
|
|
|
|
|
|
|
repo := Repository{name: name}
|
|
|
|
if !dirExists(repo.Dir()) {
|
2022-07-23 15:19:47 +00:00
|
|
|
return Repository{}, fmt.Errorf("Repository does not exist: " + repo.Dir())
|
2022-07-23 07:00:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return repo, nil
|
2022-08-03 18:34:42 +00:00
|
|
|
}
|
2022-07-23 07:00:10 +00:00
|
|
|
|
2022-08-03 18:34:42 +00:00
|
|
|
func OpenSingleUserRepo(name string, user_name string) (Repository, error) {
|
|
|
|
repo, err := OpenRepository(name)
|
|
|
|
if err != nil {
|
|
|
|
return Repository{}, err
|
|
|
|
}
|
2022-08-05 20:04:03 +00:00
|
|
|
user, err := repo.GetUser(user_name)
|
|
|
|
if err != nil {
|
|
|
|
return Repository{}, err
|
|
|
|
}
|
|
|
|
repo.SetSingleUser(user)
|
2022-08-03 18:34:42 +00:00
|
|
|
return repo, nil
|
2022-07-23 07:00:10 +00:00
|
|
|
}
|
|
|
|
|
2022-08-05 20:04:03 +00:00
|
|
|
func (repo *Repository) SetSingleUser(user User) {
|
|
|
|
repo.single_user_mode = true
|
|
|
|
repo.active_user = user.name
|
|
|
|
}
|
|
|
|
|
2022-08-03 18:48:47 +00:00
|
|
|
func (repo Repository) SingleUserName() string {
|
|
|
|
return repo.active_user
|
|
|
|
}
|
|
|
|
|
2022-07-20 17:17:42 +00:00
|
|
|
func (repo Repository) Dir() string {
|
|
|
|
return repo.name
|
|
|
|
}
|
|
|
|
|
2022-07-24 13:34:52 +00:00
|
|
|
func (repo Repository) StaticDir() string {
|
|
|
|
return path.Join(repo.Dir(), "static")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo Repository) UsersDir() string {
|
|
|
|
return path.Join(repo.Dir(), "users")
|
|
|
|
}
|
|
|
|
|
2022-08-03 18:34:42 +00:00
|
|
|
func (repo Repository) UserUrlPath(user User) string {
|
|
|
|
if repo.single_user_mode {
|
|
|
|
return "/"
|
|
|
|
}
|
|
|
|
return "/user/" + user.name + "/"
|
|
|
|
}
|
|
|
|
|
2022-07-24 18:29:31 +00:00
|
|
|
func (repo Repository) Template() (string, error) {
|
|
|
|
// load base.html
|
|
|
|
path := path.Join(repo.Dir(), "base.html")
|
|
|
|
base_html, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return string(base_html), nil
|
|
|
|
}
|
|
|
|
|
2022-07-20 17:35:31 +00:00
|
|
|
func (repo Repository) Users() ([]User, error) {
|
2022-08-03 18:34:42 +00:00
|
|
|
if repo.single_user_mode {
|
2022-08-05 20:04:03 +00:00
|
|
|
return []User{{repo: &repo, name: repo.active_user}}, nil
|
2022-08-03 18:34:42 +00:00
|
|
|
}
|
|
|
|
|
2022-07-24 14:19:21 +00:00
|
|
|
userNames := listDir(repo.UsersDir())
|
2022-07-20 17:35:31 +00:00
|
|
|
users := make([]User, len(userNames))
|
|
|
|
for i, name := range userNames {
|
2022-08-05 20:04:03 +00:00
|
|
|
users[i] = User{repo: &repo, name: name}
|
2022-07-20 17:35:31 +00:00
|
|
|
}
|
|
|
|
return users, nil
|
2022-07-20 17:17:42 +00:00
|
|
|
}
|
|
|
|
|
2022-08-05 20:04:03 +00:00
|
|
|
func (repo *Repository) CreateUser(name string) (User, error) {
|
2022-07-20 17:17:42 +00:00
|
|
|
new_user := User{repo: repo, name: name}
|
|
|
|
// check if user already exists
|
2022-07-20 17:33:22 +00:00
|
|
|
if dirExists(new_user.Dir()) {
|
2022-07-20 17:17:42 +00:00
|
|
|
return User{}, fmt.Errorf("User already exists")
|
|
|
|
}
|
|
|
|
|
|
|
|
// creates repo/name folder if it doesn't exist
|
|
|
|
user_dir := new_user.Dir()
|
|
|
|
os.Mkdir(user_dir, 0755)
|
|
|
|
os.Mkdir(path.Join(user_dir, "meta"), 0755)
|
|
|
|
// create public folder
|
|
|
|
os.Mkdir(path.Join(user_dir, "public"), 0755)
|
|
|
|
|
|
|
|
// create Meta files
|
2022-07-23 13:17:14 +00:00
|
|
|
os.WriteFile(path.Join(user_dir, "meta", "VERSION"), []byte(VERSION), 0644)
|
2022-07-21 17:44:07 +00:00
|
|
|
os.WriteFile(path.Join(user_dir, "meta", "base.html"), []byte(base_template), 0644)
|
2022-07-20 17:17:42 +00:00
|
|
|
|
2022-07-27 19:53:56 +00:00
|
|
|
meta, _ := yaml.Marshal(UserConfig{
|
|
|
|
Title: name,
|
|
|
|
SubTitle: "",
|
|
|
|
HeaderColor: "#bdd6be",
|
|
|
|
})
|
|
|
|
os.WriteFile(new_user.ConfigFile(), meta, 0644)
|
|
|
|
|
2022-07-20 17:17:42 +00:00
|
|
|
return new_user, nil
|
|
|
|
}
|
2022-07-23 15:19:47 +00:00
|
|
|
|
|
|
|
func (repo Repository) GetUser(name string) (User, error) {
|
2022-08-05 20:04:03 +00:00
|
|
|
user := User{repo: &repo, name: name}
|
2022-07-23 15:19:47 +00:00
|
|
|
if !dirExists(user.Dir()) {
|
|
|
|
return User{}, fmt.Errorf("User does not exist")
|
|
|
|
}
|
|
|
|
return user, nil
|
|
|
|
}
|