Add new parsers for Microsoft Azure and Meta IP ranges, map them in PARSERS, and include a SQL migration script to add these lists to the database. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 7a657272-55ba-4a79-9a2e-f1ed9bc7a528 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 57d0534a-1546-46c0-b4ff-6b3a82469c5e Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/449cf7c4-c97a-45ae-8234-e5c5b8d6a84f/7a657272-55ba-4a79-9a2e-f1ed9bc7a528/C6BdLIt
34 lines
1.2 KiB
SQL
34 lines
1.2 KiB
SQL
-- Migration 009: Add Microsoft Azure and Meta/Facebook public lists
|
|
-- Date: 2026-01-02
|
|
|
|
-- Microsoft Azure IP ranges (whitelist - cloud provider)
|
|
INSERT INTO public_lists (name, url, type, format, enabled, description, fetch_interval)
|
|
VALUES (
|
|
'Microsoft Azure',
|
|
'https://raw.githubusercontent.com/femueller/cloud-ip-ranges/master/microsoft-azure-ip-ranges.json',
|
|
'whitelist',
|
|
'json',
|
|
true,
|
|
'Microsoft Azure cloud IP ranges - auto-updated from Azure Service Tags',
|
|
3600
|
|
) ON CONFLICT (name) DO UPDATE SET
|
|
url = EXCLUDED.url,
|
|
description = EXCLUDED.description;
|
|
|
|
-- Meta/Facebook IP ranges (whitelist - major service provider)
|
|
INSERT INTO public_lists (name, url, type, format, enabled, description, fetch_interval)
|
|
VALUES (
|
|
'Meta (Facebook)',
|
|
'https://raw.githubusercontent.com/parseword/util-misc/master/block-facebook/facebook-ip-ranges.txt',
|
|
'whitelist',
|
|
'plain',
|
|
true,
|
|
'Meta/Facebook IP ranges (includes Instagram, WhatsApp, Oculus) from BGP AS32934/AS54115/AS63293',
|
|
3600
|
|
) ON CONFLICT (name) DO UPDATE SET
|
|
url = EXCLUDED.url,
|
|
description = EXCLUDED.description;
|
|
|
|
-- Verify insertion
|
|
SELECT id, name, type, enabled, url FROM public_lists WHERE name IN ('Microsoft Azure', 'Meta (Facebook)');
|