-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkitdown.go
86 lines (69 loc) · 2.08 KB
/
markitdown.go
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package markitdown
import (
"context"
"fmt"
"net/http"
"net/url"
"os"
"strings"
"github.com/recally-io/go-markitdown/converters"
)
type MarkitDown struct {
options []converters.Option
}
func NewMarkitDown(opts ...converters.Option) *MarkitDown {
return &MarkitDown{
options: opts,
}
}
func (m *MarkitDown) Convert(ctx context.Context, source string) (string, error) {
if strings.HasPrefix(source, "http://") || strings.HasPrefix(source, "https://") || strings.HasPrefix(source, "file://") {
return m.ConvertURL(ctx, source)
}
return m.ConvertLocal(ctx, source)
}
func (m *MarkitDown) ConvertLocal(ctx context.Context, filePath string) (string, error) {
fileType, err := getFileTypeFromPath(filePath)
if err != nil {
return "", fmt.Errorf("failed to determine file type: %w", err)
}
file, err := os.Open(filePath)
if err != nil {
return "", fmt.Errorf("failed to open file: %w", err)
}
defer file.Close()
converter, err := NewConverter(fileType, m.options...)
if err != nil {
return "", fmt.Errorf("failed to create converter for type %s: %w", fileType, err)
}
markdown, err := converter.Convert(ctx, file)
if err != nil {
return "", fmt.Errorf("failed to convert %s to Markdown: %w", fileType, err)
}
return markdown, nil
}
func (m *MarkitDown) ConvertURL(ctx context.Context, uri string) (string, error) {
u, err := url.Parse(uri)
if err != nil {
return "", fmt.Errorf("failed to parse URL: %w", err)
}
resp, err := http.Get(u.String())
if err != nil {
return "", fmt.Errorf("failed to fetch URL: %w", err)
}
defer resp.Body.Close()
fileType, err := getFileType(resp, u.String())
if err != nil {
return "", fmt.Errorf("failed to determine file type: %w", err)
}
options := append(m.options, converters.WithHtmlHost(u.Host))
converter, err := NewConverter(fileType, options...)
if err != nil {
return "", fmt.Errorf("failed to create converter for type %s: %w", fileType, err)
}
markdown, err := converter.Convert(ctx, resp.Body)
if err != nil {
return "", fmt.Errorf("failed to convert %s to Markdown: %w", fileType, err)
}
return markdown, nil
}