Blame SOURCES/0004-metno-Use-GNOME-specific-subdomain.patch

ea1f25
From d304e911d09d52b763f2c11a4309d170d0597a86 Mon Sep 17 00:00:00 2001
ea1f25
From: Bastien Nocera <hadess@hadess.net>
ea1f25
Date: Tue, 12 Jan 2021 14:21:21 +0100
ea1f25
Subject: [PATCH 4/7] metno: Use GNOME-specific subdomain
ea1f25
ea1f25
This allows the API provider to track libgweather usage.
ea1f25
---
ea1f25
 libgweather/weather-yrno.c | 5 ++++-
ea1f25
 1 file changed, 4 insertions(+), 1 deletion(-)
ea1f25
ea1f25
diff --git a/libgweather/weather-yrno.c b/libgweather/weather-yrno.c
ea1f25
index 7a46fbae..13ee8537 100644
ea1f25
--- a/libgweather/weather-yrno.c
ea1f25
+++ b/libgweather/weather-yrno.c
ea1f25
@@ -37,6 +37,9 @@
ea1f25
 
ea1f25
 #define XC(t) ((const xmlChar *)(t))
ea1f25
 
ea1f25
+/* As per https://gitlab.gnome.org/GNOME/libgweather/-/issues/59#note_1004747 */
ea1f25
+#define API_ENDPOINT_DOMAIN "aa037rv1tsaszxi6o.api.met.no"
ea1f25
+
ea1f25
 /* Reference for symbols at https://api.met.no/weatherapi/weathericon/2.0/ */
ea1f25
 typedef struct {
ea1f25
     int code;
ea1f25
@@ -594,7 +597,7 @@ yrno_start_open_new (GWeatherInfo *info)
ea1f25
     g_ascii_dtostr (latstr, sizeof(latstr), RADIANS_TO_DEGREES (loc->latitude));
ea1f25
     g_ascii_dtostr (lonstr, sizeof(lonstr), RADIANS_TO_DEGREES (loc->longitude));
ea1f25
 
ea1f25
-    url = g_strdup_printf("https://api.met.no/weatherapi/locationforecast/2.0/classic?lat=%s;lon=%s", latstr, lonstr);
ea1f25
+    url = g_strdup_printf("https://" API_ENDPOINT_DOMAIN "/weatherapi/locationforecast/2.0/classic?lat=%s;lon=%s", latstr, lonstr);
ea1f25
 
ea1f25
     message = soup_message_new ("GET", url);
ea1f25
     _gweather_info_begin_request (info, message);
ea1f25
-- 
ea1f25
2.30.2
ea1f25