2022-04-17 18:11:33 +00:00
|
|
|
package history
|
2021-12-31 08:50:50 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2022-04-11 11:57:40 +00:00
|
|
|
"os"
|
2021-12-31 08:50:50 +00:00
|
|
|
"sort"
|
2022-04-17 18:11:33 +00:00
|
|
|
"time"
|
2021-12-31 08:50:50 +00:00
|
|
|
|
2022-08-14 13:22:34 +00:00
|
|
|
// import sqlite3 driver
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
2023-03-10 06:52:26 +00:00
|
|
|
|
2023-06-04 05:47:43 +00:00
|
|
|
"github.com/moond4rk/hackbrowserdata/item"
|
|
|
|
"github.com/moond4rk/hackbrowserdata/log"
|
|
|
|
"github.com/moond4rk/hackbrowserdata/utils/typeutil"
|
2021-12-31 08:50:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ChromiumHistory []history
|
|
|
|
|
2022-04-17 18:11:33 +00:00
|
|
|
type history struct {
|
|
|
|
Title string
|
2022-08-14 13:22:34 +00:00
|
|
|
URL string
|
2022-04-17 18:11:33 +00:00
|
|
|
VisitCount int
|
|
|
|
LastVisitTime time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
queryChromiumHistory = `SELECT url, title, visit_count, last_visit_time FROM urls`
|
|
|
|
)
|
|
|
|
|
2023-04-04 12:05:32 +00:00
|
|
|
func (c *ChromiumHistory) Parse(_ []byte) error {
|
2024-01-13 07:58:53 +00:00
|
|
|
db, err := sql.Open("sqlite3", item.ChromiumHistory.TempFilename())
|
2021-12-31 08:50:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-01-13 07:58:53 +00:00
|
|
|
defer os.Remove(item.ChromiumHistory.TempFilename())
|
2023-03-12 06:23:54 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
rows, err := db.Query(queryChromiumHistory)
|
2021-12-31 08:50:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
for rows.Next() {
|
|
|
|
var (
|
|
|
|
url, title string
|
|
|
|
visitCount int
|
|
|
|
lastVisitTime int64
|
|
|
|
)
|
|
|
|
if err := rows.Scan(&url, &title, &visitCount, &lastVisitTime); err != nil {
|
2022-04-12 03:29:01 +00:00
|
|
|
log.Warn(err)
|
2021-12-31 08:50:50 +00:00
|
|
|
}
|
|
|
|
data := history{
|
2022-08-14 13:22:34 +00:00
|
|
|
URL: url,
|
2021-12-31 08:50:50 +00:00
|
|
|
Title: title,
|
|
|
|
VisitCount: visitCount,
|
2022-04-17 08:35:40 +00:00
|
|
|
LastVisitTime: typeutil.TimeEpoch(lastVisitTime),
|
2021-12-31 08:50:50 +00:00
|
|
|
}
|
|
|
|
*c = append(*c, data)
|
|
|
|
}
|
|
|
|
sort.Slice(*c, func(i, j int) bool {
|
|
|
|
return (*c)[i].VisitCount > (*c)[j].VisitCount
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ChromiumHistory) Name() string {
|
|
|
|
return "history"
|
|
|
|
}
|
2022-01-11 10:19:17 +00:00
|
|
|
|
2023-03-12 06:23:54 +00:00
|
|
|
func (c *ChromiumHistory) Len() int {
|
2022-06-05 07:27:14 +00:00
|
|
|
return len(*c)
|
|
|
|
}
|
|
|
|
|
2022-01-11 10:19:17 +00:00
|
|
|
type FirefoxHistory []history
|
|
|
|
|
2022-04-17 18:11:33 +00:00
|
|
|
const (
|
2022-12-28 06:52:22 +00:00
|
|
|
queryFirefoxHistory = `SELECT id, url, COALESCE(last_visit_date, 0), COALESCE(title, ''), visit_count FROM moz_places`
|
2022-04-17 18:11:33 +00:00
|
|
|
closeJournalMode = `PRAGMA journal_mode=off`
|
|
|
|
)
|
|
|
|
|
2023-04-04 12:05:32 +00:00
|
|
|
func (f *FirefoxHistory) Parse(_ []byte) error {
|
2024-01-13 07:58:53 +00:00
|
|
|
db, err := sql.Open("sqlite3", item.FirefoxHistory.TempFilename())
|
2022-01-11 10:19:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-01-13 07:58:53 +00:00
|
|
|
defer os.Remove(item.FirefoxHistory.TempFilename())
|
2023-03-12 06:23:54 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
_, err = db.Exec(closeJournalMode)
|
2022-01-11 10:19:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-12 06:23:54 +00:00
|
|
|
defer db.Close()
|
|
|
|
rows, err := db.Query(queryFirefoxHistory)
|
2022-01-11 10:19:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-12 06:23:54 +00:00
|
|
|
defer rows.Close()
|
|
|
|
for rows.Next() {
|
2022-01-11 10:19:17 +00:00
|
|
|
var (
|
|
|
|
id, visitDate int64
|
|
|
|
url, title string
|
|
|
|
visitCount int
|
|
|
|
)
|
2023-03-12 06:23:54 +00:00
|
|
|
if err = rows.Scan(&id, &url, &visitDate, &title, &visitCount); err != nil {
|
2022-04-12 03:29:01 +00:00
|
|
|
log.Warn(err)
|
2022-01-11 10:19:17 +00:00
|
|
|
}
|
|
|
|
*f = append(*f, history{
|
|
|
|
Title: title,
|
2022-08-14 13:22:34 +00:00
|
|
|
URL: url,
|
2022-01-11 10:19:17 +00:00
|
|
|
VisitCount: visitCount,
|
2022-04-17 08:35:40 +00:00
|
|
|
LastVisitTime: typeutil.TimeStamp(visitDate / 1000000),
|
2022-01-11 10:19:17 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
sort.Slice(*f, func(i, j int) bool {
|
|
|
|
return (*f)[i].VisitCount < (*f)[j].VisitCount
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FirefoxHistory) Name() string {
|
|
|
|
return "history"
|
|
|
|
}
|
2022-06-05 07:27:14 +00:00
|
|
|
|
2023-03-12 06:23:54 +00:00
|
|
|
func (f *FirefoxHistory) Len() int {
|
2022-06-05 07:27:14 +00:00
|
|
|
return len(*f)
|
|
|
|
}
|