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 398 399 400
| window.IP_CONFIG = { BLOG_LOCATION: { lng: 114.25816, lat: 30.43798 }, CACHE_DURATION: 1000 * 60 * 60, HOME_PAGE_ONLY: true, };
const insertAnnouncementComponent = () => { const announcementCards = document.querySelectorAll('.card-widget.card-announcement'); if (!announcementCards.length) return;
if (IP_CONFIG.HOME_PAGE_ONLY && !isHomePage()) { announcementCards.forEach(card => card.remove()); return; }
if (!document.querySelector('#welcome-info')) return; fetchIpInfo(); };
const fetchIpData = async () => { try { console.log('获取IPv4地址...'); const ipv4Response = await fetch('https://api.ipify.org?format=json'); const ipv4Data = await ipv4Response.json(); const ipv4 = ipv4Data.ip; console.log('IPv4地址:', ipv4); const ak = 'YP8T3wMAOzolGd7wbC1ZjKM7WhSqvVEz'; const baiduUrl = `https://api.map.baidu.com/location/ip?ak=${ak}&ip=${ipv4}&coor=bd09ll`; console.log('请求百度API:', baiduUrl); const response = await fetch(baiduUrl); if (!response.ok) { throw new Error(`HTTP错误: ${response.status}`); } const data = await response.json(); console.log('百度API完整响应:', data); if (data.status === 0) { data.address = ipv4; return data; } else { console.warn('百度API返回错误:', data); throw new Error(`百度API错误: ${data.message || '状态码:' + data.status}`); } } catch (error) { console.warn('主要方案失败:', error); try { console.log('尝试备用定位服务...'); const response = await fetch('https://ipapi.co/json/'); const data = await response.json(); console.log('备用API响应:', data); return { status: 0, address: data.ip, content: { address_detail: { province: data.region || data.region_code || '未知', city: data.city || '未知', district: '' }, point: { x: parseFloat(data.longitude) || IP_CONFIG.BLOG_LOCATION.lng + (Math.random() - 0.5), y: parseFloat(data.latitude) || IP_CONFIG.BLOG_LOCATION.lat + (Math.random() - 0.5) } } }; } catch (fallbackError) { console.error('所有定位服务都失败了:', fallbackError); return { status: 0, address: '114.xxx.xxx.xxx', content: { address_detail: { province: '湖北省', city: '武汉市', district: '洪山区' }, point: { x: 114.25816, y: 30.43798 } } }; } } };
const showWelcome = (data) => { if (!data) { return showErrorMessage('无法获取位置数据'); }
try { const welcomeInfo = getWelcomeInfoElement(); if (!welcomeInfo) return;
const { content } = data; const addressDetail = content?.address_detail || {}; const province = addressDetail.province || '未知省份'; const city = addressDetail.city || '未知城市'; const district = addressDetail.district || ''; const point = content?.point || {}; const lng = parseFloat(point.x) || 0; const lat = parseFloat(point.y) || 0; const ip = data.address || '未知IP';
let dist = '未知'; if (lng !== 0 && lat !== 0) { dist = calculateDistance(lng, lat); } else { dist = Math.floor(100 + Math.random() * 900); }
const ipDisplay = formatIpDisplay(ip); const pos = formatLocation("中国", province, city, district);
welcomeInfo.style.display = 'block'; welcomeInfo.style.height = 'auto'; welcomeInfo.innerHTML = generateWelcomeMessage(pos, dist, ipDisplay, "中国", province, city, district); console.log('位置信息:', { province, city, district, ip, dist }); } catch (error) { console.error('显示欢迎信息失败:', error); showErrorMessage('处理位置信息时出错'); } };
const calculateDistance = (lng, lat) => { if (typeof lng !== 'number' || typeof lat !== 'number' || isNaN(lng) || isNaN(lat)) { return '未知'; }
const R = 6371; const rad = Math.PI / 180; const dLat = (lat - IP_CONFIG.BLOG_LOCATION.lat) * rad; const dLon = (lng - IP_CONFIG.BLOG_LOCATION.lng) * rad; const a = Math.sin(dLat / 2) * Math.sin(dLat / 2) + Math.cos(IP_CONFIG.BLOG_LOCATION.lat * rad) * Math.cos(lat * rad) * Math.sin(dLon / 2) * Math.sin(dLon / 2);
return Math.round(R * 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a))); };
const formatIpDisplay = (ip) => { if (!ip || ip === '未知IP') return '未知IP'; return ip; };
const formatLocation = (country, prov, city, district) => { if (!country) return '神秘地区'; if (country === "中国") { let locationParts = []; if (prov && prov !== '未知省份') locationParts.push(prov); if (city && city !== '未知城市' && city !== prov) locationParts.push(city); if (district) locationParts.push(district); return locationParts.join(' ') || '神秘地区'; } return country; };
const generateWelcomeMessage = (pos, dist, ipDisplay, country, prov, city, district) => { const distanceText = dist === '未知' ? '未知距离' : `${dist} 公里`; return ` <div style="text-align: center; line-height: 1.6;"> 欢迎来自 <b>${pos}</b> 的小友💖<br> 你当前距博主约 <b>${distanceText}</b>!<br> 你的IP地址:<b class="ip-address">${ipDisplay}</b><br> ${getTimeGreeting()}<br> Tip:<b>${getGreeting(country, prov, city, district)}🍂</b> </div> `; };
const addStyles = () => { if (document.querySelector('#welcome-styles')) return; const style = document.createElement('style'); style.id = 'welcome-styles'; style.textContent = ` #welcome-info { user-select: none; display: flex; justify-content: center; align-items: center; height: 212px; padding: 10px; margin-top: 5px; border-radius: 12px; background-color: var(--anzhiyu-background); outline: 1px solid var(--anzhiyu-card-border); text-align: center; } .loading-spinner { width: 50px; height: 50px; border: 3px solid rgba(0, 0, 0, 0.1); border-radius: 50%; border-top: 3px solid var(--anzhiyu-main); animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .error-message { color: #ff6565; display: flex; flex-direction: column; justify-content: center; align-items: center; } .error-message p { margin: 5px 0; text-align: center; } .error-icon { font-size: 2rem; margin-bottom: 10px; } #retry-button { margin: 0 5px; color: var(--anzhiyu-main); transition: transform 0.3s ease; cursor: pointer; } #retry-button:hover { transform: rotate(180deg); } `; document.head.appendChild(style); };
const getWelcomeInfoElement = () => document.querySelector('#welcome-info');
const checkLocationPermission = () => { const permission = localStorage.getItem('locationPermission'); return permission === 'granted' || permission === null; };
const showLoadingSpinner = () => { const welcomeInfoElement = document.querySelector("#welcome-info"); if (!welcomeInfoElement) return; welcomeInfoElement.innerHTML = '<div class="loading-spinner"></div>'; };
const IP_CACHE_KEY = 'ip_info_cache'; const getIpInfoFromCache = () => { try { const cached = localStorage.getItem(IP_CACHE_KEY); if (!cached) return null;
const { data, timestamp } = JSON.parse(cached); if (Date.now() - timestamp > IP_CONFIG.CACHE_DURATION) { localStorage.removeItem(IP_CACHE_KEY); return null; } return data; } catch (error) { return null; } };
const setIpInfoCache = (data) => { try { localStorage.setItem(IP_CACHE_KEY, JSON.stringify({ data, timestamp: Date.now() })); } catch (error) { console.error('设置缓存失败:', error); } };
const fetchIpInfo = async () => { if (!checkLocationPermission()) { localStorage.setItem('locationPermission', 'granted'); }
showLoadingSpinner();
const cachedData = getIpInfoFromCache(); if (cachedData) { showWelcome(cachedData); return; }
try { const data = await fetchIpData(); setIpInfoCache(data); showWelcome(data); } catch (error) { console.error('获取IP信息失败:', error); showErrorMessage('无法获取位置信息,请检查网络连接'); } };
const greetings = { "中国": { "其他": "欢迎来到我的博客!" }, "其他": "带我去你的国家逛逛吧" };
const getGreeting = (country, province, city, district) => { if (!country) return '欢迎来到我的博客!'; try { const countryGreetings = greetings[country]; if (!countryGreetings) return greetings["其他"]; if (typeof countryGreetings === 'string') return countryGreetings; const provinceGreeting = countryGreetings[province] || countryGreetings["其他"]; if (typeof provinceGreeting === 'string') return provinceGreeting; return provinceGreeting["其他"] || countryGreetings["其他"] || greetings["其他"]; } catch (error) { return '欢迎来到我的博客!'; } };
const getTimeGreeting = () => { const hour = new Date().getHours(); if (hour < 6) return "凌晨好🌙,注意休息哦~"; if (hour < 11) return "早上好🌤️,一日之计在于晨"; if (hour < 13) return "中午好☀️,记得午休喔~"; if (hour < 17) return "下午好🕞,饮茶先啦!"; if (hour < 19) return "傍晚好🌇,记得按时吃饭~"; return "晚上好🌙,夜生活嗨起来!"; };
const showErrorMessage = (message = '抱歉,无法获取位置信息') => { const welcomeInfoElement = document.getElementById("welcome-info"); if (!welcomeInfoElement) return; welcomeInfoElement.innerHTML = ` <div class="error-message"> <div class="error-icon">😕</div> <p>${message}</p> <p>请<span id="retry-button" style="cursor: pointer; color: var(--anzhiyu-main);">刷新</span>重试</p> </div> `;
const retryButton = document.getElementById('retry-button'); if (retryButton) { retryButton.addEventListener('click', () => { localStorage.removeItem(IP_CACHE_KEY); fetchIpInfo(); }); } };
const isHomePage = () => { const pathname = window.location.pathname; return pathname === '/' || pathname === '/index.html' || pathname.endsWith('/'); };
document.addEventListener('DOMContentLoaded', () => { addStyles(); setTimeout(() => { insertAnnouncementComponent(); }, 100); document.addEventListener('pjax:complete', insertAnnouncementComponent); });
|