parent
77545627e3
commit
dfa095eecc
@ -1,116 +1,125 @@ |
|||||||
package firefox |
package firefox |
||||||
|
|
||||||
// type firefox struct {
|
import ( |
||||||
// name string
|
"fmt" |
||||||
// storage string
|
"io/fs" |
||||||
// profilePath string
|
"io/ioutil" |
||||||
// masterKey []byte
|
"path/filepath" |
||||||
// items []item.Item
|
"strings" |
||||||
// itemPaths map[item.Item]string
|
|
||||||
// multiItemPaths map[string]map[item.Item]string
|
"hack-browser-data/internal/browingdata" |
||||||
// }
|
"hack-browser-data/internal/item" |
||||||
//
|
"hack-browser-data/internal/utils/fileutil" |
||||||
// // New
|
"hack-browser-data/internal/utils/typeutil" |
||||||
// func New(info *browserInfo, items []item.Item) ([]*firefox, error) {
|
) |
||||||
// f := &firefox{
|
|
||||||
// browserInfo: info,
|
type firefox struct { |
||||||
// items: items,
|
name string |
||||||
// }
|
storage string |
||||||
// multiItemPaths, err := getFirefoxItemAbsPath(f.browserInfo.profilePath, f.items)
|
profilePath string |
||||||
// if err != nil {
|
masterKey []byte |
||||||
// if strings.Contains(err.Error(), "profile path is not exist") {
|
items []item.Item |
||||||
// fmt.Println(err)
|
itemPaths map[item.Item]string |
||||||
// return nil, nil
|
} |
||||||
// }
|
|
||||||
// panic(err)
|
// New returns a new firefox instance.
|
||||||
// }
|
func New(name, storage, profilePath string, items []item.Item) ([]*firefox, error) { |
||||||
// var firefoxList []*firefox
|
f := &firefox{ |
||||||
// for name, value := range multiItemPaths {
|
name: name, |
||||||
// firefoxList = append(firefoxList, &firefox{
|
storage: storage, |
||||||
// browserInfo: &browserInfo{
|
profilePath: profilePath, |
||||||
// name: name,
|
items: items, |
||||||
// masterKey: nil,
|
} |
||||||
// },
|
if !fileutil.FolderExists(profilePath) { |
||||||
// items: items,
|
return nil, fmt.Errorf("%s profile path is not exist: %s", name, profilePath) |
||||||
// itemPaths: value,
|
} |
||||||
// })
|
|
||||||
// }
|
multiItemPaths, err := f.getMultiItemPath(f.profilePath, f.items) |
||||||
// return firefoxList, nil
|
if err != nil { |
||||||
// }
|
if strings.Contains(err.Error(), "profile path is not exist") { |
||||||
//
|
fmt.Println(err) |
||||||
// func getFirefoxItemAbsPath(profilePath string, items []item.Item) (map[string]map[item.Item]string, error) {
|
return nil, nil |
||||||
// var multiItemPaths = make(map[string]map[item.Item]string)
|
} |
||||||
// absProfilePath := path.Join(homeDir, filepath.Clean(profilePath))
|
return nil, err |
||||||
// // TODO: Handle read file error
|
} |
||||||
// if !isFileExist(absProfilePath) {
|
var firefoxList []*firefox |
||||||
// return nil, fmt.Errorf("%s profile path is not exist", absProfilePath)
|
for name, itemPaths := range multiItemPaths { |
||||||
// }
|
firefoxList = append(firefoxList, &firefox{ |
||||||
// err := filepath.Walk(absProfilePath, firefoxWalkFunc(items, multiItemPaths))
|
name: name, |
||||||
// return multiItemPaths, err
|
items: typeutil.Keys(itemPaths), |
||||||
// }
|
itemPaths: itemPaths, |
||||||
//
|
}) |
||||||
// func (f *firefox) CopyItemFileToLocal() error {
|
} |
||||||
// for item, sourcePath := range f.itemPaths {
|
return firefoxList, nil |
||||||
|
} |
||||||
|
|
||||||
|
func (f *firefox) getMultiItemPath(profilePath string, items []item.Item) (map[string]map[item.Item]string, error) { |
||||||
|
var multiItemPaths = make(map[string]map[item.Item]string) |
||||||
|
|
||||||
|
err := filepath.Walk(profilePath, firefoxWalkFunc(items, multiItemPaths)) |
||||||
|
return multiItemPaths, err |
||||||
|
} |
||||||
|
|
||||||
|
func (f *firefox) copyItemToLocal() error { |
||||||
|
for i, path := range f.itemPaths { |
||||||
// var dstFilename = item.TempName()
|
// var dstFilename = item.TempName()
|
||||||
// locals, _ := filepath.Glob("*")
|
var filename = i.String() |
||||||
// for _, v := range locals {
|
// TODO: Handle read file error
|
||||||
// if v == dstFilename {
|
d, err := ioutil.ReadFile(path) |
||||||
// err := os.Remove(dstFilename)
|
if err != nil { |
||||||
// // TODO: Should Continue all iteration error
|
fmt.Println(err.Error()) |
||||||
// if err != nil {
|
} |
||||||
// return err
|
err = ioutil.WriteFile(filename, d, 0777) |
||||||
// }
|
if err != nil { |
||||||
// }
|
return err |
||||||
// }
|
} |
||||||
//
|
} |
||||||
// // TODO: Handle read file name error
|
return nil |
||||||
// sourceFile, err := ioutil.ReadFile(sourcePath)
|
} |
||||||
// if err != nil {
|
|
||||||
// fmt.Println(err.Error())
|
func firefoxWalkFunc(items []item.Item, multiItemPaths map[string]map[item.Item]string) filepath.WalkFunc { |
||||||
// }
|
return func(path string, info fs.FileInfo, err error) error { |
||||||
// err = ioutil.WriteFile(dstFilename, sourceFile, 0777)
|
for _, v := range items { |
||||||
// if err != nil {
|
if info.Name() == v.FileName() { |
||||||
// return err
|
parentDir := getParentDir(path) |
||||||
// }
|
if _, exist := multiItemPaths[parentDir]; exist { |
||||||
// }
|
multiItemPaths[parentDir][v] = path |
||||||
// return nil
|
} else { |
||||||
// }
|
multiItemPaths[parentDir] = map[item.Item]string{v: path} |
||||||
//
|
} |
||||||
// func firefoxWalkFunc(items []item.Item, multiItemPaths map[string]map[item.Item]string) filepath.WalkFunc {
|
} |
||||||
// return func(path string, info fs.FileInfo, err error) error {
|
} |
||||||
// for _, v := range items {
|
return err |
||||||
// if info.Name() == v.FileName() {
|
} |
||||||
// parentDir := getParentDir(path)
|
} |
||||||
// if _, exist := multiItemPaths[parentDir]; exist {
|
|
||||||
// multiItemPaths[parentDir][v] = path
|
func getParentDir(absPath string) string { |
||||||
// } else {
|
return filepath.Base(filepath.Dir(absPath)) |
||||||
// multiItemPaths[parentDir] = map[item.Item]string{v: path}
|
} |
||||||
// }
|
|
||||||
// }
|
func (f *firefox) GetMasterKey() ([]byte, error) { |
||||||
// }
|
return f.masterKey, nil |
||||||
// return err
|
} |
||||||
// }
|
|
||||||
// }
|
func (f *firefox) Name() string { |
||||||
//
|
return f.name |
||||||
// func getParentDir(absPath string) string {
|
} |
||||||
// return filepath.Base(filepath.Dir(absPath))
|
|
||||||
// }
|
func (f *firefox) GetBrowsingData() (*browingdata.Data, error) { |
||||||
//
|
b := browingdata.New(f.items) |
||||||
// func (f *firefox) GetMasterKey() ([]byte, error) {
|
|
||||||
// return f.masterKey, nil
|
if err := f.copyItemToLocal(); err != nil { |
||||||
// }
|
return nil, err |
||||||
//
|
} |
||||||
// func (f *firefox) Name() string {
|
|
||||||
// return f.name
|
masterKey, err := f.GetMasterKey() |
||||||
// }
|
if err != nil { |
||||||
//
|
return nil, err |
||||||
// func (f *firefox) GetBrowsingData() []browingdata.Source {
|
} |
||||||
// var browsingData []browingdata.Source
|
|
||||||
// for item := range f.itemPaths {
|
f.masterKey = masterKey |
||||||
// d := item.NewBrowsingData()
|
if err := b.Recovery(f.masterKey); err != nil { |
||||||
// if d != nil {
|
return nil, err |
||||||
// browsingData = append(browsingData, d)
|
} |
||||||
// }
|
return b, nil |
||||||
// }
|
} |
||||||
// return browsingData
|
|
||||||
// }
|
|
||||||
|
Loading…
Reference in new issue