forked from guigui42/mcp-vosdroits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpots_client.go
More file actions
397 lines (328 loc) · 9.48 KB
/
impots_client.go
File metadata and controls
397 lines (328 loc) · 9.48 KB
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
// Package client provides HTTP client functionality for impots.gouv.fr.
package client
import (
"context"
"fmt"
"net/url"
"strings"
"time"
"github.com/gocolly/colly/v2"
)
// ImpotsClient handles HTTP requests to impots.gouv.fr using Colly for web scraping.
type ImpotsClient struct {
collector *colly.Collector
baseURL string
timeout time.Duration
}
// NewImpotsClient creates a new ImpotsClient with the specified timeout.
func NewImpotsClient(timeout time.Duration) *ImpotsClient {
c := colly.NewCollector(
colly.AllowedDomains("www.impots.gouv.fr", "impots.gouv.fr"),
colly.UserAgent("VosDroits-MCP-Server/1.0"),
colly.Async(false),
)
c.SetRequestTimeout(timeout)
err := c.Limit(&colly.LimitRule{
DomainGlob: "*.impots.gouv.fr",
Parallelism: 1,
Delay: 1 * time.Second,
})
if err != nil {
// Fallback without rate limiting if it fails
}
return &ImpotsClient{
collector: c,
baseURL: "https://www.impots.gouv.fr",
timeout: timeout,
}
}
// ImpotsSearchResult represents a search result from impots.gouv.fr.
type ImpotsSearchResult struct {
Title string
URL string
Description string
Type string
Date string
}
// SearchImpots searches for tax information matching the query.
func (c *ImpotsClient) SearchImpots(ctx context.Context, query string, limit int) ([]ImpotsSearchResult, error) {
if err := ctx.Err(); err != nil {
return nil, err
}
if limit <= 0 || limit > 100 {
limit = 10
}
var results []ImpotsSearchResult
errorChan := make(chan error, 1)
scraper := c.collector.Clone()
// Allow URL revisits to prevent "already visited" errors on repeated calls
scraper.AllowURLRevisit = true
done := make(chan struct{})
defer close(done)
go func() {
select {
case <-ctx.Done():
scraper = nil
case <-done:
}
}()
// Handle search results - impots.gouv.fr uses div.fr-card
scraper.OnHTML("div.fr-card", func(e *colly.HTMLElement) {
if len(results) >= limit {
return
}
href := e.ChildAttr("a[href]", "href")
if href == "" {
return
}
fullURL := e.Request.AbsoluteURL(href)
title := strings.TrimSpace(e.ChildText("h3.fr-card__title a"))
if title == "" {
title = strings.TrimSpace(e.ChildText("h3.fr-card__title"))
}
resultType := strings.TrimSpace(e.ChildText("div.fr-card__detail"))
date := strings.TrimSpace(e.ChildText("p.fr-card__detail"))
description := strings.TrimSpace(e.ChildText("p.fr-card__desc"))
if title != "" && fullURL != "" {
results = append(results, ImpotsSearchResult{
Title: title,
URL: fullURL,
Description: description,
Type: resultType,
Date: date,
})
}
})
scraper.OnError(func(r *colly.Response, err error) {
select {
case errorChan <- fmt.Errorf("scraping error: %w", err):
default:
}
})
searchURL := fmt.Sprintf("%s/recherche/%s?origin[]=impots&search_filter=Filtrer",
c.baseURL, url.QueryEscape(query))
if err := scraper.Visit(searchURL); err != nil {
return c.fallbackImpotsSearch(ctx, query, limit)
}
scraper.Wait()
select {
case err := <-errorChan:
if len(results) == 0 {
return nil, err
}
default:
}
if len(results) == 0 {
return c.fallbackImpotsSearch(ctx, query, limit)
}
return results, nil
}
func (c *ImpotsClient) fallbackImpotsSearch(ctx context.Context, query string, limit int) ([]ImpotsSearchResult, error) {
return []ImpotsSearchResult{
{
Title: fmt.Sprintf("No results found for: %s", query),
URL: fmt.Sprintf("%s/recherche/%s?origin[]=impots&search_filter=Filtrer", c.baseURL, url.QueryEscape(query)),
Description: "Try modifying your search terms or visit the website directly.",
Type: "Info",
},
}, nil
}
// ImpotsArticle represents an article from impots.gouv.fr.
type ImpotsArticle struct {
Title string
Content string
URL string
Type string
Description string
}
// GetImpotsArticle retrieves an article from the specified URL.
func (c *ImpotsClient) GetImpotsArticle(ctx context.Context, articleURL string) (*ImpotsArticle, error) {
if err := ctx.Err(); err != nil {
return nil, err
}
// Validate URL is not empty
if articleURL == "" {
return nil, fmt.Errorf("URL cannot be empty")
}
parsedURL, err := url.Parse(articleURL)
if err != nil {
return nil, fmt.Errorf("invalid URL: %w", err)
}
// Ensure it's an impots.gouv.fr URL (check for empty host or relative URLs)
if parsedURL.Host == "" {
// Handle relative URLs by making them absolute
articleURL = c.baseURL + articleURL
parsedURL, err = url.Parse(articleURL)
if err != nil {
return nil, fmt.Errorf("invalid URL after making absolute: %w", err)
}
}
// Check domain - accept both www.impots.gouv.fr and impots.gouv.fr
host := strings.ToLower(parsedURL.Host)
if host != "impots.gouv.fr" && host != "www.impots.gouv.fr" {
return nil, fmt.Errorf("URL must be from impots.gouv.fr domain, got: %s", parsedURL.Host)
}
var article ImpotsArticle
article.URL = articleURL
errorChan := make(chan error, 1)
scraper := c.collector.Clone()
// Allow URL revisits to prevent "already visited" errors on repeated calls
scraper.AllowURLRevisit = true
done := make(chan struct{})
defer close(done)
go func() {
select {
case <-ctx.Done():
scraper = nil
case <-done:
}
}()
scraper.OnHTML("head", func(e *colly.HTMLElement) {
if article.Title == "" {
article.Title = strings.TrimSpace(e.ChildText("title"))
article.Title = strings.Split(article.Title, " | ")[0]
}
if article.Description == "" {
article.Description = e.ChildAttr("meta[property='og:title']", "content")
}
})
scraper.OnHTML("main, article, div.main-content, div.content", func(e *colly.HTMLElement) {
if article.Content == "" {
var contentParts []string
e.ForEach("h1, h2, h3, p, li, div.fr-callout, div.fr-card__desc", func(_ int, elem *colly.HTMLElement) {
text := strings.TrimSpace(elem.Text)
if text != "" &&
!strings.Contains(text, "javascript") &&
!strings.Contains(text, "Cookie") &&
!strings.Contains(text, "Navigation") &&
len(text) > 10 {
contentParts = append(contentParts, text)
}
})
article.Content = strings.Join(contentParts, "\n\n")
}
})
scraper.OnHTML("div.fr-breadcrumb", func(e *colly.HTMLElement) {
breadcrumb := strings.TrimSpace(e.Text)
if strings.Contains(breadcrumb, "Formulaire") {
article.Type = "Formulaire"
} else if strings.Contains(breadcrumb, "Question") {
article.Type = "Question-Réponse"
} else {
article.Type = "Article"
}
})
scraper.OnError(func(r *colly.Response, err error) {
select {
case errorChan <- fmt.Errorf("failed to fetch article: %w", err):
default:
}
})
if err := scraper.Visit(articleURL); err != nil {
return nil, fmt.Errorf("failed to visit article page: %w", err)
}
scraper.Wait()
select {
case err := <-errorChan:
return nil, err
default:
}
if article.Title == "" {
article.Title = "Article from impots.gouv.fr"
}
if article.Content == "" {
return nil, fmt.Errorf("no content found at URL: %s", articleURL)
}
return &article, nil
}
// ImpotsCategoryInfo represents a tax category.
type ImpotsCategoryInfo struct {
Name string
Description string
URL string
}
// ListImpotsCategories retrieves available tax service categories.
func (c *ImpotsClient) ListImpotsCategories(ctx context.Context) ([]ImpotsCategoryInfo, error) {
if err := ctx.Err(); err != nil {
return nil, err
}
var categories []ImpotsCategoryInfo
errorChan := make(chan error, 1)
scraper := c.collector.Clone()
// Allow URL revisits to prevent "already visited" errors on repeated calls
scraper.AllowURLRevisit = true
done := make(chan struct{})
defer close(done)
go func() {
select {
case <-ctx.Done():
scraper = nil
case <-done:
}
}()
scraper.OnHTML("nav.fr-nav a.fr-nav__link", func(e *colly.HTMLElement) {
name := strings.TrimSpace(e.Text)
href := e.Attr("href")
if name != "" && href != "" && name != "Accueil" {
fullURL := e.Request.AbsoluteURL(href)
for _, cat := range categories {
if cat.Name == name {
return
}
}
categories = append(categories, ImpotsCategoryInfo{
Name: name,
Description: fmt.Sprintf("Information fiscale pour %s", strings.ToLower(name)),
URL: fullURL,
})
}
})
scraper.OnError(func(r *colly.Response, err error) {
select {
case errorChan <- fmt.Errorf("failed to fetch categories: %w", err):
default:
}
})
if err := scraper.Visit(c.baseURL + "/particulier"); err != nil {
return c.getDefaultImpotsCategories(), nil
}
scraper.Wait()
select {
case <-errorChan:
return c.getDefaultImpotsCategories(), nil
default:
}
if len(categories) == 0 {
return c.getDefaultImpotsCategories(), nil
}
return categories, nil
}
func (c *ImpotsClient) getDefaultImpotsCategories() []ImpotsCategoryInfo {
return []ImpotsCategoryInfo{
{
Name: "Particulier",
Description: "Information fiscale pour les particuliers",
URL: c.baseURL + "/particulier",
},
{
Name: "Professionnel",
Description: "Information fiscale pour les professionnels",
URL: c.baseURL + "/professionnel",
},
{
Name: "Partenaire",
Description: "Information pour les partenaires",
URL: c.baseURL + "/partenaire",
},
{
Name: "Collectivité",
Description: "Information pour les collectivités",
URL: c.baseURL + "/collectivite",
},
{
Name: "International",
Description: "Information fiscale internationale",
URL: c.baseURL + "/international",
},
}
}