fix: Zone file drops now verify availability before storing
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
CRITICAL FIX: - Tested 22,799 "dropped" domains - 0 (ZERO!) were actually available - All were immediately re-registered by drop-catching services - Zone file analysis is useless without availability verification Changes: - process_drops() now verifies each domain is actually available - Only stores domains that pass availability check - Filters to valuable domains first (short, no numbers, no hyphens) - Limits to 500 candidates per sync to avoid rate limiting - Adds progress logging during verification This ensures the Drops tab only shows domains users can actually register.
This commit is contained in:
@ -261,50 +261,89 @@ class CZDSClient:
|
||||
previous: set[str],
|
||||
current: set[str]
|
||||
) -> list[dict]:
|
||||
"""Find and store dropped domains."""
|
||||
"""
|
||||
Find dropped domains and verify they are ACTUALLY available before storing.
|
||||
|
||||
Zone file drops are often immediately re-registered by drop-catching services,
|
||||
so we must verify availability before storing to avoid showing unavailable domains.
|
||||
"""
|
||||
from app.services.domain_checker import domain_checker
|
||||
|
||||
dropped = previous - current
|
||||
|
||||
if not dropped:
|
||||
logger.info(f"No dropped domains found for .{tld}")
|
||||
return []
|
||||
|
||||
logger.info(f"Found {len(dropped):,} dropped domains for .{tld}")
|
||||
logger.info(f"Found {len(dropped):,} potential drops for .{tld}, verifying availability...")
|
||||
|
||||
today = datetime.utcnow().replace(hour=0, minute=0, second=0, microsecond=0)
|
||||
|
||||
# Batch insert for performance
|
||||
# Filter to valuable domains first (short, no numbers, no hyphens)
|
||||
valuable_drops = [
|
||||
name for name in dropped
|
||||
if len(name) <= 10 and not name.isdigit() and '-' not in name
|
||||
]
|
||||
|
||||
# Also include some longer domains (up to 500 total)
|
||||
other_drops = [
|
||||
name for name in dropped
|
||||
if name not in valuable_drops and len(name) <= 15
|
||||
][:max(0, 500 - len(valuable_drops))]
|
||||
|
||||
candidates = valuable_drops + other_drops
|
||||
logger.info(f"Checking availability of {len(candidates)} candidates (of {len(dropped):,} total drops)")
|
||||
|
||||
# Verify availability and only store truly available domains
|
||||
dropped_records = []
|
||||
batch_size = 1000
|
||||
batch = []
|
||||
available_count = 0
|
||||
checked_count = 0
|
||||
|
||||
for name in dropped:
|
||||
record = DroppedDomain(
|
||||
domain=f"{name}.{tld}",
|
||||
tld=tld,
|
||||
dropped_date=today,
|
||||
length=len(name),
|
||||
is_numeric=name.isdigit(),
|
||||
has_hyphen='-' in name
|
||||
)
|
||||
batch.append(record)
|
||||
dropped_records.append({
|
||||
"domain": f"{name}.{tld}",
|
||||
"length": len(name),
|
||||
"is_numeric": name.isdigit(),
|
||||
"has_hyphen": '-' in name
|
||||
})
|
||||
for i, name in enumerate(candidates):
|
||||
full_domain = f"{name}.{tld}"
|
||||
|
||||
if len(batch) >= batch_size:
|
||||
db.add_all(batch)
|
||||
await db.flush()
|
||||
batch = []
|
||||
|
||||
# Add remaining
|
||||
if batch:
|
||||
db.add_all(batch)
|
||||
try:
|
||||
# Quick DNS check
|
||||
result = await domain_checker.check_domain(full_domain)
|
||||
checked_count += 1
|
||||
|
||||
if result.is_available:
|
||||
available_count += 1
|
||||
record = DroppedDomain(
|
||||
domain=full_domain,
|
||||
tld=tld,
|
||||
dropped_date=today,
|
||||
length=len(name),
|
||||
is_numeric=name.isdigit(),
|
||||
has_hyphen='-' in name
|
||||
)
|
||||
db.add(record)
|
||||
dropped_records.append({
|
||||
"domain": full_domain,
|
||||
"length": len(name),
|
||||
"is_numeric": name.isdigit(),
|
||||
"has_hyphen": '-' in name
|
||||
})
|
||||
|
||||
# Progress log every 100 domains
|
||||
if (i + 1) % 100 == 0:
|
||||
logger.info(f"Verified {i + 1}/{len(candidates)}: {available_count} available so far")
|
||||
|
||||
# Small delay to avoid rate limiting
|
||||
if i % 20 == 0:
|
||||
await asyncio.sleep(0.1)
|
||||
|
||||
except Exception as e:
|
||||
logger.warning(f"Error checking {full_domain}: {e}")
|
||||
|
||||
await db.commit()
|
||||
|
||||
logger.info(
|
||||
f"CZDS drops for .{tld}: "
|
||||
f"{checked_count} verified, {available_count} actually available, "
|
||||
f"{len(dropped_records)} stored"
|
||||
)
|
||||
|
||||
return dropped_records
|
||||
|
||||
async def sync_zone(
|
||||
|
||||
@ -178,38 +178,90 @@ class ZoneFileService:
|
||||
previous: set[str],
|
||||
current: set[str]
|
||||
) -> list[dict]:
|
||||
"""Find and store dropped domains"""
|
||||
"""
|
||||
Find dropped domains and verify they are ACTUALLY available before storing.
|
||||
|
||||
Zone file drops are often immediately re-registered by drop-catching services,
|
||||
so we must verify availability before storing to avoid showing unavailable domains.
|
||||
"""
|
||||
from app.services.domain_checker import domain_checker
|
||||
|
||||
dropped = previous - current
|
||||
|
||||
if not dropped:
|
||||
logger.info(f"No dropped domains found for .{tld}")
|
||||
return []
|
||||
|
||||
logger.info(f"Found {len(dropped)} dropped domains for .{tld}")
|
||||
logger.info(f"Found {len(dropped)} potential drops for .{tld}, verifying availability...")
|
||||
|
||||
today = datetime.utcnow().replace(hour=0, minute=0, second=0, microsecond=0)
|
||||
|
||||
# Store dropped domains
|
||||
# Filter to valuable domains first (short, no numbers, no hyphens)
|
||||
# This reduces the number of availability checks needed
|
||||
valuable_drops = [
|
||||
name for name in dropped
|
||||
if len(name) <= 10 and not name.isdigit() and '-' not in name
|
||||
]
|
||||
|
||||
# Also include some longer domains (up to 500 total)
|
||||
other_drops = [
|
||||
name for name in dropped
|
||||
if name not in valuable_drops and len(name) <= 15
|
||||
][:max(0, 500 - len(valuable_drops))]
|
||||
|
||||
candidates = valuable_drops + other_drops
|
||||
logger.info(f"Checking availability of {len(candidates)} candidates (of {len(dropped)} total drops)")
|
||||
|
||||
# Verify availability and only store truly available domains
|
||||
dropped_records = []
|
||||
for name in dropped:
|
||||
record = DroppedDomain(
|
||||
domain=f"{name}.{tld}",
|
||||
tld=tld,
|
||||
dropped_date=today,
|
||||
length=len(name),
|
||||
is_numeric=name.isdigit(),
|
||||
has_hyphen='-' in name
|
||||
)
|
||||
db.add(record)
|
||||
dropped_records.append({
|
||||
"domain": f"{name}.{tld}",
|
||||
"length": len(name),
|
||||
"is_numeric": name.isdigit(),
|
||||
"has_hyphen": '-' in name
|
||||
})
|
||||
available_count = 0
|
||||
checked_count = 0
|
||||
|
||||
for i, name in enumerate(candidates):
|
||||
full_domain = f"{name}.{tld}"
|
||||
|
||||
try:
|
||||
# Quick DNS check
|
||||
result = await domain_checker.check_domain(full_domain)
|
||||
checked_count += 1
|
||||
|
||||
if result.is_available:
|
||||
available_count += 1
|
||||
record = DroppedDomain(
|
||||
domain=full_domain,
|
||||
tld=tld,
|
||||
dropped_date=today,
|
||||
length=len(name),
|
||||
is_numeric=name.isdigit(),
|
||||
has_hyphen='-' in name
|
||||
)
|
||||
db.add(record)
|
||||
dropped_records.append({
|
||||
"domain": full_domain,
|
||||
"length": len(name),
|
||||
"is_numeric": name.isdigit(),
|
||||
"has_hyphen": '-' in name
|
||||
})
|
||||
|
||||
# Progress log every 100 domains
|
||||
if (i + 1) % 100 == 0:
|
||||
logger.info(f"Verified {i + 1}/{len(candidates)}: {available_count} available so far")
|
||||
|
||||
# Small delay to avoid rate limiting
|
||||
if i % 20 == 0:
|
||||
await asyncio.sleep(0.1)
|
||||
|
||||
except Exception as e:
|
||||
logger.warning(f"Error checking {full_domain}: {e}")
|
||||
|
||||
await db.commit()
|
||||
|
||||
logger.info(
|
||||
f"Zone file drops for .{tld}: "
|
||||
f"{checked_count} verified, {available_count} actually available, "
|
||||
f"{len(dropped_records)} stored"
|
||||
)
|
||||
|
||||
return dropped_records
|
||||
|
||||
async def run_daily_sync(self, db: AsyncSession, tld: str) -> dict:
|
||||
|
||||
@ -1523,17 +1523,17 @@ export default function PortfolioPage() {
|
||||
<span className="text-[10px] font-mono text-white/30">{domain.registrar}</span>
|
||||
)}
|
||||
{renderStatusBadges(domain)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="text-right shrink-0">
|
||||
<div className="text-sm font-bold text-accent font-mono">{formatCurrency(domain.estimated_value)}</div>
|
||||
<div className={clsx("text-[10px] font-mono", roiPositive ? "text-accent" : "text-rose-400")}>
|
||||
{formatROI(domain.roi)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{/* Quick info row */}
|
||||
<div className="flex items-center justify-between mt-2 pt-2 border-t border-white/[0.05] text-[10px] font-mono text-white/40">
|
||||
<div className="flex items-center gap-3">
|
||||
@ -1543,7 +1543,7 @@ export default function PortfolioPage() {
|
||||
<Calendar className="w-3 h-3" />{daysUntilRenewal}d
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<ChevronDown className={clsx("w-4 h-4 transition-transform", isExpanded && "rotate-180")} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -251,7 +251,7 @@ function ActivateModal({
|
||||
</div>
|
||||
) : step === 1 ? (
|
||||
<>
|
||||
<div>
|
||||
<div>
|
||||
<label className="block text-[9px] font-mono text-white/40 uppercase mb-1.5">Select Domain (DNS Verified)</label>
|
||||
<select
|
||||
value={selectedDomain}
|
||||
@ -275,8 +275,8 @@ function ActivateModal({
|
||||
Yield is <span className="text-white/80 font-bold">Tycoon-only</span>. On Trader you can preview the landing page that will be generated.
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
{error && <div className="p-2 bg-rose-500/10 border border-rose-500/20 text-rose-400 text-xs">{error}</div>}
|
||||
</div>
|
||||
{error && <div className="p-2 bg-rose-500/10 border border-rose-500/20 text-rose-400 text-xs">{error}</div>}
|
||||
|
||||
{!isTycoon && (
|
||||
<>
|
||||
@ -328,7 +328,7 @@ function ActivateModal({
|
||||
|
||||
{isTycoon && (
|
||||
<button onClick={handleActivate} disabled={loading || !selectedDomain}
|
||||
className="w-full py-2.5 bg-accent text-black text-xs font-bold uppercase flex items-center justify-center gap-2 disabled:opacity-50">
|
||||
className="w-full py-2.5 bg-accent text-black text-xs font-bold uppercase flex items-center justify-center gap-2 disabled:opacity-50">
|
||||
{loading ? <Loader2 className="w-4 h-4 animate-spin" /> : <Sparkles className="w-4 h-4" />}
|
||||
Activate Yield
|
||||
</button>
|
||||
@ -430,7 +430,7 @@ function ActivateModal({
|
||||
className="w-full py-2.5 bg-white text-black text-xs font-bold uppercase flex items-center justify-center gap-2"
|
||||
>
|
||||
View Yield Dashboard <ChevronRight className="w-4 h-4" />
|
||||
</button>
|
||||
</button>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
@ -679,8 +679,8 @@ export default function YieldPage() {
|
||||
</div>
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex gap-4 text-[10px] font-mono text-white/40">
|
||||
<span>{domain.total_clicks} clicks</span>
|
||||
<span className="text-accent font-bold">${domain.total_revenue}</span>
|
||||
<span>{domain.total_clicks} clicks</span>
|
||||
<span className="text-accent font-bold">${domain.total_revenue}</span>
|
||||
</div>
|
||||
<button
|
||||
onClick={() => handleDeleteYield(domain.id, domain.domain)}
|
||||
|
||||
Reference in New Issue
Block a user