mirror of
https://github.com/Threnklyn/zeit.git
synced 2026-06-07 06:03:31 +02:00
Implemented SetIDFromDatabaseKey
This commit is contained in:
+12
@@ -2,6 +2,7 @@ package z
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/gookit/color"
|
"github.com/gookit/color"
|
||||||
@@ -49,6 +50,17 @@ func NewEntry(
|
|||||||
return newEntry, nil
|
return newEntry, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (entry *Entry) SetIDFromDatabaseKey(key string) (error) {
|
||||||
|
splitKey := strings.Split(key, ":")
|
||||||
|
|
||||||
|
if len(splitKey) < 3 || len(splitKey) > 3 {
|
||||||
|
return errors.New("not a valid database key")
|
||||||
|
}
|
||||||
|
|
||||||
|
entry.ID = splitKey[2]
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (entry *Entry) SetBeginFromString(begin string) (time.Time, error) {
|
func (entry *Entry) SetBeginFromString(begin string) (time.Time, error) {
|
||||||
var beginTime time.Time
|
var beginTime time.Time
|
||||||
var err error
|
var err error
|
||||||
|
|||||||
Reference in New Issue
Block a user