add db query for listing gemlog enteries
This commit is contained in:
parent
09fb974bd2
commit
59b46d4902
5 changed files with 85 additions and 3 deletions
20
bruno/Gemlog/List Gemlogs for CLI.bru
Normal file
20
bruno/Gemlog/List Gemlogs for CLI.bru
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
meta {
|
||||||
|
name: List Gemlogs for CLI
|
||||||
|
type: http
|
||||||
|
seq: 3
|
||||||
|
}
|
||||||
|
|
||||||
|
get {
|
||||||
|
url: http://eisenhorn:5023/gemlog/_design/gemlog-cli/_view/list
|
||||||
|
body: json
|
||||||
|
auth: basic
|
||||||
|
}
|
||||||
|
|
||||||
|
auth:basic {
|
||||||
|
username: gemlog-cli
|
||||||
|
password: {{pw}}
|
||||||
|
}
|
||||||
|
|
||||||
|
settings {
|
||||||
|
encodeUrl: true
|
||||||
|
}
|
||||||
|
|
@ -16,6 +16,13 @@ type GemlogEntry struct {
|
||||||
Gemtxt string `json:"gemtxt"`
|
Gemtxt string `json:"gemtxt"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GemlogListEntry struct {
|
||||||
|
Title string `json:"title"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
Date time.Time `json:"date"`
|
||||||
|
ID string `json:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
// NewUUID generates a new UUID v4 using crypto/rand
|
// NewUUID generates a new UUID v4 using crypto/rand
|
||||||
func NewUUID() (string, error) {
|
func NewUUID() (string, error) {
|
||||||
uuid := make([]byte, 16)
|
uuid := make([]byte, 16)
|
||||||
|
|
|
||||||
60
gemlog/db.go
60
gemlog/db.go
|
|
@ -9,6 +9,62 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func genBasicAuthHeader(user, password string) string {
|
||||||
|
auth := base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%s:%s", user, password)))
|
||||||
|
return fmt.Sprintf("Basic %s", auth)
|
||||||
|
}
|
||||||
|
|
||||||
|
func ListGemLogs(config *Config) ([]GemlogListEntry, error) {
|
||||||
|
url := fmt.Sprintf("%s:%d/gemlog/_design/gemlog-cli/_view/list", config.CouchDB.Host, config.CouchDB.Port)
|
||||||
|
req, err := http.NewRequest("GET", url, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to create request: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
req.Header.Add("authorization", genBasicAuthHeader(config.CouchDB.User, config.CouchDB.Password))
|
||||||
|
|
||||||
|
res, err := http.DefaultClient.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to send request: %w", err)
|
||||||
|
}
|
||||||
|
defer res.Body.Close()
|
||||||
|
|
||||||
|
body, err := io.ReadAll(res.Body)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to read response body: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if res.StatusCode < 200 || res.StatusCode >= 300 {
|
||||||
|
return nil, fmt.Errorf("unexpected status code %d: %s", res.StatusCode, string(body))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse CouchDB response
|
||||||
|
var couchResponse struct {
|
||||||
|
TotalRows int `json:"total_rows"`
|
||||||
|
Offset int `json:"offset"`
|
||||||
|
Rows []struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
Key string `json:"key"`
|
||||||
|
Value struct {
|
||||||
|
Rev string `json:"rev"`
|
||||||
|
} `json:"value"`
|
||||||
|
Doc GemlogListEntry `json:"doc"`
|
||||||
|
} `json:"rows"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := json.Unmarshal(body, &couchResponse); err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to parse response: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract entries from response
|
||||||
|
entries := make([]GemlogListEntry, 0, len(couchResponse.Rows))
|
||||||
|
for _, row := range couchResponse.Rows {
|
||||||
|
entries = append(entries, row.Doc)
|
||||||
|
}
|
||||||
|
|
||||||
|
return entries, nil
|
||||||
|
}
|
||||||
|
|
||||||
func SaveGemlogEntry(config *Config, entry *GemlogEntry) error {
|
func SaveGemlogEntry(config *Config, entry *GemlogEntry) error {
|
||||||
url := fmt.Sprintf("%s:%d/gemlog/", config.CouchDB.Host, config.CouchDB.Port)
|
url := fmt.Sprintf("%s:%d/gemlog/", config.CouchDB.Host, config.CouchDB.Port)
|
||||||
|
|
||||||
|
|
@ -23,9 +79,7 @@ func SaveGemlogEntry(config *Config, entry *GemlogEntry) error {
|
||||||
return fmt.Errorf("failed to create request: %w", err)
|
return fmt.Errorf("failed to create request: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Encode username:password for Basic Auth
|
req.Header.Add("authorization", genBasicAuthHeader(config.CouchDB.User, config.CouchDB.Password))
|
||||||
auth := base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%s:%s", config.CouchDB.User, config.CouchDB.Password)))
|
|
||||||
req.Header.Add("authorization", fmt.Sprintf("Basic %s", auth))
|
|
||||||
req.Header.Add("content-type", "application/json")
|
req.Header.Add("content-type", "application/json")
|
||||||
|
|
||||||
res, err := http.DefaultClient.Do(req)
|
res, err := http.DefaultClient.Do(req)
|
||||||
|
|
|
||||||
0
gemlog/read.go
Normal file
0
gemlog/read.go
Normal file
1
main.go
1
main.go
|
|
@ -120,6 +120,7 @@ func main() {
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: check if we can reach db before starting program
|
||||||
p := tea.NewProgram(initialModel(config))
|
p := tea.NewProgram(initialModel(config))
|
||||||
if _, err := p.Run(); err != nil {
|
if _, err := p.Run(); err != nil {
|
||||||
fmt.Printf("Alas, there's been an error: %v", err)
|
fmt.Printf("Alas, there's been an error: %v", err)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue