-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathweb_search_service.py
More file actions
259 lines (222 loc) · 10.9 KB
/
Copy pathweb_search_service.py
File metadata and controls
259 lines (222 loc) · 10.9 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
import logging
from datetime import UTC, datetime
from typing import List, Optional
from uuid import UUID, uuid4
import aiohttp
from sqlalchemy.exc import IntegrityError
from app.core.config import settings
from app.core.exceptions import ValidationError
from app.core.utils.url import normalize_domain_name
from app.models.database.models import SourceModel
from app.repositories.implementations.source_repository import SourceRepository
from app.services.domain_service import DomainService
from app.services.interfaces.web_search_service import WebSearchServiceInterface
logger = logging.getLogger(__name__)
# hard filter
BLOCKED_SOURCE_DOMAINS = {
"reddit.com",
"instagram.com",
"youtube.com",
"youtu.be",
"bsky.app",
"bsky.social",
"tiktok.com",
"facebook.com",
"x.com",
"twitter.com",
"threads.net",
}
class GoogleWebSearchService(WebSearchServiceInterface):
def __init__(self, domain_service: DomainService, source_repository: SourceRepository):
self.search_endpoint = "https://customsearch.googleapis.com/customsearch/v1"
self.api_key = settings.GOOGLE_SEARCH_API_KEY
self.search_engine_id = settings.GOOGLE_SEARCH_ENGINE_ID
self.domain_service = domain_service
self.source_repository = source_repository
def _is_blocked_domain(self, domain_name: str) -> bool:
normalized_domain = normalize_domain_name(domain_name)
return any(
normalized_domain == blocked_domain or normalized_domain.endswith(f".{blocked_domain}")
for blocked_domain in BLOCKED_SOURCE_DOMAINS
)
def _has_acceptable_credibility(self, credibility_score: Optional[float]) -> bool:
# This removes both unknown credibility and explicit 0 credibility.
return credibility_score is not None and credibility_score > 0
def _is_allowed_source(self, source: SourceModel) -> bool:
domain_name = (
source.domain.domain_name
if hasattr(source, "domain") and source.domain
else normalize_domain_name(source.url)
)
return not self._is_blocked_domain(domain_name) and self._has_acceptable_credibility(source.credibility_score)
def _filter_allowed_sources(self, sources: List[SourceModel]) -> List[SourceModel]:
return [source for source in sources if self._is_allowed_source(source)]
async def search_and_create_sources(
self, claim_text: str, search_id: UUID, num_results: int = 5, language: str = "english"
) -> List[SourceModel]:
"""Search for sources and create or update records."""
try:
logger.warning("NEW SOURCE FILTER CODE IS RUNNING")
params = {
"key": self.api_key,
"cx": self.search_engine_id,
"q": claim_text,
# "num": min(num_results, 10),
# Fetch max results because source policy filtering happens after search, not in the query.
"num": 10,
"fields": "items(title,link,snippet)",
}
if language == "english":
params = {
"key": self.api_key,
"cx": self.search_engine_id,
"q": claim_text,
# "num": min(num_results, 10),
"num": 10,
"fields": "items(title,link,snippet)",
"lr": "lang_en",
}
elif language == "french":
params = {
"key": self.api_key,
"cx": self.search_engine_id,
"q": claim_text,
# "num": min(num_results, 10),
"num": 10,
"fields": "items(title,link,snippet)",
"lr": "lang_fr",
}
sources = []
async with aiohttp.ClientSession() as session:
async with session.get(self.search_endpoint, params=params) as response:
if response.status != 200:
error_text = await response.text()
logger.error(f"Search API error: {error_text}")
return []
data = await response.json()
if "items" not in data:
logger.warning("No search results found")
return []
for item in data["items"]:
try:
# domain_name = normalize_domain_name(item["link"])
# domain, is_new = await self.domain_service.get_or_create_domain(domain_name)
# if is_new:
# logger.info(f"Created new domain record for: {domain_name}")
# source = await self._create_new_source(item, search_id, domain.id, domain.credibility_score)
# if source:
# sources.append(source)
# logger.debug(f"Created new source for URL: {item['link']}")
domain_name = normalize_domain_name(item["link"])
if self._is_blocked_domain(domain_name):
logger.info(f"Skipping blocked source domain: {domain_name}")
continue
domain, is_new = await self.domain_service.get_or_create_domain(domain_name)
if is_new:
logger.info(f"Created new domain record for: {domain_name}")
if not self._has_acceptable_credibility(domain.credibility_score):
logger.info(
f"Skipping source with low/unknown credibility: "
f"{domain_name} ({domain.credibility_score})"
)
continue
source = await self._create_new_source(
item,
search_id,
domain.id,
domain.credibility_score,
)
if source:
sources.append(source)
except Exception as e:
logger.error(f"Error processing search result: {str(e)}", exc_info=True)
continue
return sources
except Exception as e:
logger.error(f"Error performing web search: {str(e)}", exc_info=True)
return []
async def _get_existing_source(self, url: str) -> Optional[SourceModel]:
return await self.source_repository.get_by_url(url)
async def _update_source_analysis(
self, source: SourceModel, search_id: UUID, credibility_score: float
) -> SourceModel:
source.search_id = search_id
source.credibility_score = credibility_score
source.updated_at = datetime.now(UTC)
return await self.source_repository.update(source)
async def _create_new_source(
self, item: dict, search_id: UUID, domain_id: UUID, credibility_score: float
) -> Optional[SourceModel]:
try:
source = SourceModel(
id=uuid4(),
search_id=search_id,
url=item["link"],
title=item["title"],
snippet=item["snippet"],
domain_id=domain_id,
content=None,
credibility_score=credibility_score,
created_at=datetime.now(UTC),
updated_at=datetime.now(UTC),
)
return await self.source_repository.create_with_domain(source)
except IntegrityError:
logger.warning(f"Race condition creating source for URL: {item['link']}")
existing = await self._get_existing_source(item["link"])
if existing:
return await self._update_source_analysis(existing, search_id, credibility_score)
return None
def format_sources_for_prompt(self, sources: List[SourceModel], language: str = "english") -> str:
"""Format sources into a string for the LLM prompt."""
sources = self._filter_allowed_sources(sources)
if language == "english":
if not sources:
return "No reliable sources found."
formatted_sources = []
for i, source in enumerate(sources, 1):
source_info = [
f"Source {i}:",
f"Title: {source.title}",
f"URL: {source.url}",
f"Credibility Score: {source.credibility_score:.2f}"
if source.credibility_score is not None
else "Credibility Score: N/A",
f"Excerpt: {source.snippet}",
]
if hasattr(source, "domain") and source.domain and source.domain.description:
source_info.append(f"Domain Info: {source.domain.description}")
formatted_sources.append("\n".join(source_info))
return "\n\n".join(formatted_sources)
elif language == "french":
if not sources:
return "Il n'y a pas des sources."
formatted_sources = []
for i, source in enumerate(sources, 1):
source_info = [
f"Source {i}:",
f"Titre: {source.title}",
f"URL: {source.url}",
f"Index de crédibilité: {source.credibility_score:.2f}"
if source.credibility_score is not None
else "Index de crédibilité: N/A",
f"Extrait: {source.snippet}",
]
if hasattr(source, "domain") and source.domain and source.domain.description:
source_info.append(f"Informations sur le domaine: {source.domain.description}")
formatted_sources.append("\n".join(source_info))
return "\n\n".join(formatted_sources)
else:
raise ValidationError("Claim Language is invalid")
def calculate_overall_credibility(self, sources: List[SourceModel]) -> float:
"""Calculate overall credibility score for a set of sources."""
sources = self._filter_allowed_sources(sources)
if not sources:
return 0.0
# Filter out sources with null credibility scores
# valid_scores = [source.credibility_score for source in sources if source.credibility_score is not None]
valid_scores = [source.credibility_score for source in sources if source.credibility_score is not None]
if not valid_scores:
return 0.0 # Return 0.0 if no valid scores exist
# Calculate the average of the valid scores
return sum(valid_scores) / len(valid_scores)