summaryrefslogtreecommitdiff
path: root/internal/image/download.go
blob: fabb1bb040641c55c26bcb06f903ab67e50c45d2 (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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package image

import (
	"context"
	"fmt"
	"io"
	"os"
	"path/filepath"
	"strings"
)

// DownloadOptions configures image download behavior
type DownloadOptions struct {
	OutputDir       string   // Directory to save images
	OverwriteExisting bool   // Whether to overwrite existing files
	CreateDir       bool     // Create output directory if it doesn't exist
	FileNamePattern string   // Pattern for file naming (e.g., "{word}_{source}")
	MaxSizeBytes    int64    // Maximum file size to download (0 = no limit)
}

// DefaultDownloadOptions returns sensible defaults for image downloads
func DefaultDownloadOptions() *DownloadOptions {
	return &DownloadOptions{
		OutputDir:       "./images",
		OverwriteExisting: false,
		CreateDir:       true,
		FileNamePattern: "{word}_{source}",
		MaxSizeBytes:    10 * 1024 * 1024, // 10MB
	}
}

// Downloader handles image downloads from search results
type Downloader struct {
	searcher ImageSearcher
	options  *DownloadOptions
}

// NewDownloader creates a new image downloader
func NewDownloader(searcher ImageSearcher, options *DownloadOptions) *Downloader {
	if options == nil {
		options = DefaultDownloadOptions()
	}
	return &Downloader{
		searcher: searcher,
		options:  options,
	}
}

// DownloadImage downloads a single image to the specified path
func (d *Downloader) DownloadImage(ctx context.Context, result *SearchResult, outputPath string) error {
	// Ensure directory exists
	dir := filepath.Dir(outputPath)
	if dir != "" && dir != "." {
		if err := os.MkdirAll(dir, 0755); err != nil {
			return fmt.Errorf("failed to create directory: %w", err)
		}
	}
	
	// Check if file already exists
	if !d.options.OverwriteExisting {
		if _, err := os.Stat(outputPath); err == nil {
			return fmt.Errorf("file already exists: %s", outputPath)
		}
	}
	
	// Download the image
	reader, err := d.searcher.Download(ctx, result.URL)
	if err != nil {
		return fmt.Errorf("failed to download image: %w", err)
	}
	defer reader.Close()
	
	// Create output file
	file, err := os.Create(outputPath)
	if err != nil {
		return fmt.Errorf("failed to create file: %w", err)
	}
	defer file.Close()
	
	// Copy with size limit if specified
	var written int64
	if d.options.MaxSizeBytes > 0 {
		written, err = io.CopyN(file, reader, d.options.MaxSizeBytes)
		if err != nil && err != io.EOF {
			os.Remove(outputPath) // Clean up on error
			return fmt.Errorf("failed to write file: %w", err)
		}
		
		// Check if we hit the size limit
		if written == d.options.MaxSizeBytes {
			// Try to read one more byte to see if file is larger
			if _, err := reader.Read(make([]byte, 1)); err != io.EOF {
				os.Remove(outputPath) // Clean up
				return fmt.Errorf("image exceeds maximum size of %d bytes", d.options.MaxSizeBytes)
			}
		}
	} else {
		written, err = io.Copy(file, reader)
		if err != nil {
			os.Remove(outputPath) // Clean up on error
			return fmt.Errorf("failed to write file: %w", err)
		}
	}
	
	// Save attribution if required
	if attribution := d.searcher.GetAttribution(result); attribution != "" {
		attrPath := strings.TrimSuffix(outputPath, filepath.Ext(outputPath)) + "_attribution.txt"
		if err := os.WriteFile(attrPath, []byte(attribution), 0644); err != nil {
			// Non-fatal error - log but don't fail the download
			fmt.Fprintf(os.Stderr, "Warning: failed to save attribution: %v\n", err)
		}
	}
	
	return nil
}

// DownloadBestMatch downloads the best matching image for a query
func (d *Downloader) DownloadBestMatch(ctx context.Context, query string) (*SearchResult, string, error) {
	// Search for images
	opts := DefaultSearchOptions(query)
	opts.PerPage = 5 // Get top 5 results
	
	results, err := d.searcher.Search(ctx, opts)
	if err != nil {
		return nil, "", fmt.Errorf("search failed: %w", err)
	}
	
	if len(results) == 0 {
		return nil, "", fmt.Errorf("no images found for query: %s", query)
	}
	
	// Try to download the first available image
	for i, result := range results {
		// Generate filename
		filename := d.generateFileName(query, &result, i)
		outputPath := filepath.Join(d.options.OutputDir, filename)
		
		// Try to download
		err := d.DownloadImage(ctx, &result, outputPath)
		if err == nil {
			return &result, outputPath, nil
		}
		
		// Log error and try next
		fmt.Fprintf(os.Stderr, "Warning: failed to download image %d: %v\n", i+1, err)
	}
	
	return nil, "", fmt.Errorf("failed to download any images for query: %s", query)
}

// generateFileName creates a filename based on the pattern
func (d *Downloader) generateFileName(word string, result *SearchResult, index int) string {
	// Start with the pattern
	filename := d.options.FileNamePattern
	
	// Replace placeholders
	filename = strings.ReplaceAll(filename, "{word}", sanitizeFileName(word))
	filename = strings.ReplaceAll(filename, "{source}", result.Source)
	filename = strings.ReplaceAll(filename, "{id}", result.ID)
	filename = strings.ReplaceAll(filename, "{index}", fmt.Sprintf("%d", index))
	
	// Determine extension from URL
	ext := filepath.Ext(result.URL)
	if ext == "" || len(ext) > 5 { // Probably not a real extension
		ext = ".jpg" // Default to jpg
	}
	
	// Add extension if not present
	if filepath.Ext(filename) == "" {
		filename += ext
	}
	
	return filename
}

// sanitizeFileName removes or replaces characters that are problematic in filenames
func sanitizeFileName(name string) string {
	// Replace common problematic characters
	replacer := strings.NewReplacer(
		"/", "_",
		"\\", "_",
		":", "_",
		"*", "_",
		"?", "_",
		"\"", "_",
		"<", "_",
		">", "_",
		"|", "_",
		" ", "_",
		".", "_",
	)
	
	sanitized := replacer.Replace(name)
	
	// Ensure the filename is not too long
	if len(sanitized) > 50 {
		sanitized = sanitized[:50]
	}
	
	return sanitized
}


// DownloadBestMatchWithOptions downloads the best matching image for given search options
func (d *Downloader) DownloadBestMatchWithOptions(ctx context.Context, opts *SearchOptions) (*SearchResult, string, error) {
	// Search for images
	searchOpts := *opts // Copy to avoid modifying original
	searchOpts.PerPage = 5 // Get top 5 results
	
	results, err := d.searcher.Search(ctx, &searchOpts)
	if err != nil {
		return nil, "", fmt.Errorf("search failed: %w", err)
	}
	
	if len(results) == 0 {
		return nil, "", fmt.Errorf("no images found for query: %s", opts.Query)
	}
	
	// Try to download the first available image
	for i, result := range results {
		// Generate filename
		filename := d.generateFileName(opts.Query, &result, i)
		outputPath := filepath.Join(d.options.OutputDir, filename)
		
		// Try to download
		err := d.DownloadImage(ctx, &result, outputPath)
		if err == nil {
			return &result, outputPath, nil
		}
		
		// Log error and try next
		fmt.Fprintf(os.Stderr, "Warning: failed to download image %d: %v\n", i+1, err)
	}
	
	return nil, "", fmt.Errorf("failed to download any images for query: %s", opts.Query)
}