2
0
mirror of https://github.com/carlostrub/sisyphus synced 2024-10-31 09:20:15 +00:00
sisyphus/database.go

66 lines
1.4 KiB
Go
Raw Normal View History

2017-03-11 20:02:17 +00:00
package main
import (
"github.com/boltdb/bolt"
)
// openDB creates and opens a new database and its respective buckets (if required)
2017-03-12 22:50:43 +00:00
func openDB(maildir string) (db *bolt.DB, err error) {
2017-03-11 20:02:17 +00:00
// Open the sisyphus.db data file in your current directory.
// It will be created if it doesn't exist.
2017-03-12 22:50:43 +00:00
db, err = bolt.Open(maildir+"/sisyphus.db", 0600, nil)
2017-03-11 20:02:17 +00:00
if err != nil {
return db, err
}
// Create DB bucket for the map of processed e-mail IDs
err = db.Update(func(tx *bolt.Tx) error {
_, err := tx.CreateBucketIfNotExists([]byte("Processed"))
if err != nil {
return err
}
return nil
})
if err != nil {
return db, err
}
// Create DB bucket for word lists
err = db.Update(func(tx *bolt.Tx) error {
_, err := tx.CreateBucketIfNotExists([]byte("Wordlists"))
if err != nil {
return err
}
return nil
})
if err != nil {
return db, err
}
// Create DB bucket for Junk inside bucket Wordlists
err = db.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte("Wordlists"))
_, err := b.CreateBucketIfNotExists([]byte("Junk"))
if err != nil {
return err
}
return nil
})
if err != nil {
return db, err
}
// Create DB bucket for Good inside bucket Wordlists
2017-03-11 20:02:17 +00:00
err = db.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte("Wordlists"))
_, err := b.CreateBucketIfNotExists([]byte("Good"))
if err != nil {
return err
}
return nil
})
2017-03-14 20:27:05 +00:00
return db, err
2017-03-11 20:02:17 +00:00
}