aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/components/Boomarks/util.ts
blob: 669be46b915ca8c7223fc21041ce9739045d644b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright (C) 2024 Vaughn Nugent
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

import type { Bookmark } from '../../store/bookmarks'
import { split, first, includes, map, filter, nth, isEmpty } from 'lodash-es'

export const parseNetscapeBookmarkString = (bookmarkString: string) : Bookmark[] => {
    const lines = split(bookmarkString, '\n');
    //remove any empty lines
    const elements = filter(lines, l => l.length > 0)

    const header = first(elements);
    if(!includes(header, 'NETSCAPE-Bookmark-file-1')) {
        throw new Error('Invalid bookmark file');
    }

    const bookmarks = map(elements, (line, index): Partial<Bookmark> => {

        //Search for required html components in the line
        const Url = line.match(/HREF="([^"]*)"/)?.[1];
        const tags = line.match(/TAGS="(.*)"/)?.[1];
        const Name = line.match(/">(.*)<\/A/)?.[1];
        const date = line.match(/ADD_DATE="([^"]*)"/)?.[1];
        //Next line should be the description
        const descriptionEl = nth(elements, index + 1);
        const Description = split(descriptionEl, '<DD>')?.[1];

        const Tags = filter(split(tags, ','), t => !isEmpty(t));

        const bookmark: Partial<Bookmark> = {
            Name,
            Url,
            Description,
        }

        //Only set tags if there are any
        if(!isEmpty(Tags)) {
            bookmark.Tags = Tags;
        }

        if (date){
            bookmark.Created = new Date(parseInt(date) * 1000).toISOString();
        }
        return bookmark;
    });

    //Filter any empty entires
    return filter(bookmarks, b => b.Name && b.Url) as Bookmark[];
}