70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"path"
|
|
"time"
|
|
"fmt"
|
|
)
|
|
|
|
func CreateNewUser(repo string, name string) {
|
|
// creates repo folder if it doesn't exist
|
|
os.Mkdir(repo, 0755)
|
|
|
|
// creates repo/name folder if it doesn't exist
|
|
user_dir := path.Join(repo, name)
|
|
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
|
|
os.WriteFile(path.Join(user_dir, "meta", "VERSION"), []byte("0.0.1"), 0644)
|
|
os.WriteFile(path.Join(user_dir, "meta", "base.html"), []byte("<html><body><{{content}}/body></html>"), 0644)
|
|
}
|
|
|
|
func CreateNewPost(repo string, user string, title string) {
|
|
timestamp := time.Now().UTC().Unix()
|
|
folder_name := fmt.Sprintf("%d-%s", timestamp, title)
|
|
post_dir := path.Join(repo, user, "public", folder_name)
|
|
|
|
// if post already exists, add -n to the end of the name
|
|
i := 0
|
|
for {
|
|
if _, err := os.Stat(post_dir); err == nil {
|
|
i++
|
|
folder_name = fmt.Sprintf("%d-%s-%d", timestamp, title, i)
|
|
post_dir = path.Join(repo, user, "public", folder_name)
|
|
} else {
|
|
break
|
|
}
|
|
}
|
|
|
|
initial_content := "# " + title
|
|
// create post file
|
|
os.Mkdir(post_dir, 0755)
|
|
os.WriteFile(path.Join(post_dir, "index.md"), []byte(initial_content), 0644)
|
|
}
|
|
|
|
func main() {
|
|
println("KISS Social")
|
|
println("Commands")
|
|
println("new <name> - Creates a new user")
|
|
|
|
args := os.Args[1:]
|
|
if len(args) == 0 {
|
|
println("No command given")
|
|
return
|
|
}
|
|
|
|
switch args[0] {
|
|
case "new":
|
|
if len(args) != 2 {
|
|
println("Invalid number of arguments")
|
|
return
|
|
}
|
|
CreateNewUser("users", args[1])
|
|
default:
|
|
println("Invalid command")
|
|
}
|
|
} |