mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-22 08:14:02 +01:00
87 lines
2.6 KiB
Go
87 lines
2.6 KiB
Go
package shared
|
|
|
|
import (
|
|
"database/sql/driver"
|
|
"encoding/json"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
type EncHistoryEntry struct {
|
|
EncryptedData []byte `json:"enc_data"`
|
|
Nonce []byte `json:"nonce"`
|
|
DeviceId string `json:"device_id"`
|
|
UserId string `json:"user_id"`
|
|
Date time.Time `json:"time"`
|
|
EncryptedId string `json:"id"`
|
|
ReadCount int `json:"read_count"`
|
|
}
|
|
|
|
type Device struct {
|
|
UserId string `json:"user_id"`
|
|
DeviceId string `json:"device_id"`
|
|
// The IP address that was used to register the device. Recorded so
|
|
// that I can count how many people are using hishtory and roughly
|
|
// from where. If you would like this deleted, please email me at
|
|
// david@daviddworken.com and I can clear it from your device entries.
|
|
RegistrationIp string `json:"registration_ip"`
|
|
RegistrationDate time.Time `json:"registration_date"`
|
|
}
|
|
|
|
type DumpRequest struct {
|
|
UserId string `json:"user_id"`
|
|
RequestingDeviceId string `json:"requesting_device_id"`
|
|
RequestTime time.Time `json:"request_time"`
|
|
}
|
|
|
|
type UpdateInfo struct {
|
|
LinuxAmd64Url string `json:"linux_amd_64_url"`
|
|
LinuxAmd64AttestationUrl string `json:"linux_amd_64_attestation_url"`
|
|
DarwinAmd64Url string `json:"darwin_amd_64_url"`
|
|
DarwinAmd64UnsignedUrl string `json:"darwin_amd_64_unsigned_url"`
|
|
DarwinAmd64AttestationUrl string `json:"darwin_amd_64_attestation_url"`
|
|
DarwinArm64Url string `json:"darwin_arm_64_url"`
|
|
DarwinArm64UnsignedUrl string `json:"darwin_arm_64_unsigned_url"`
|
|
DarwinArm64AttestationUrl string `json:"darwin_arm_64_attestation_url"`
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
type DeletionRequest struct {
|
|
UserId string `json:"user_id"`
|
|
DestinationDeviceId string `json:"destination_device_id"`
|
|
SendTime time.Time `json:"send_time"`
|
|
Messages MessageIdentifiers `json:"messages"`
|
|
ReadCount int `json:"read_count"`
|
|
}
|
|
|
|
type MessageIdentifiers struct {
|
|
Ids []MessageIdentifier `json:"message_ids"`
|
|
}
|
|
|
|
type MessageIdentifier struct {
|
|
DeviceId string `json:"device_id"`
|
|
Date time.Time `json:"date"`
|
|
}
|
|
|
|
func (m *MessageIdentifiers) Scan(value interface{}) error {
|
|
bytes, ok := value.([]byte)
|
|
if !ok {
|
|
return fmt.Errorf("failed to unmarshal JSONB value: %v", value)
|
|
}
|
|
|
|
result := MessageIdentifiers{}
|
|
err := json.Unmarshal(bytes, &result)
|
|
*m = result
|
|
return err
|
|
}
|
|
|
|
func (m MessageIdentifiers) Value() (driver.Value, error) {
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
const (
|
|
CONFIG_PATH = ".hishtory.config"
|
|
HISHTORY_PATH = ".hishtory"
|
|
DB_PATH = ".hishtory.db"
|
|
)
|