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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
|
;;; wttrin.el --- Emacs Frontend for Service wttr.in -*- lexical-binding: t; coding: utf-8; -*-
;;
;; Copyright (C) 2024-2026 Craig Jennings
;; Maintainer: Craig Jennings <c@cjennings.net>
;;
;; Original Authors: Carl X. Su <bcbcarl@gmail.com>
;; ono hiroko (kuanyui) <azazabc123@gmail.com>
;; Version: 0.3.2
;; Package-Requires: ((emacs "24.4") (xterm-color "1.0"))
;; Keywords: weather, wttrin, games
;; URL: https://github.com/cjennings/emacs-wttrin
;; SPDX-License-Identifier: GPL-3.0-or-later
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;; This file is NOT part of GNU Emacs.
;;; Commentary:
;; Displays the weather information from the wttr.in service for your submitted
;; location.
;;; Code:
(require 'face-remap)
(require 'url)
;; Declare xterm-color functions (loaded on-demand)
(declare-function xterm-color-filter "xterm-color" (string))
;; Declare geolocation entry point (loaded on-demand by
;; `wttrin-set-location-from-geolocation')
(declare-function wttrin-geolocation-detect "wttrin-geolocation" (callback))
;; No-op stubs for debug functions (overridden when wttrin-debug.el is loaded)
(defun wttrin--debug-mode-line-info ()
"No-op stub. Replaced by `wttrin-debug' when debug mode is active."
nil)
(defun wttrin--debug-log (_format-string &rest _args)
"No-op stub. Replaced by `wttrin-debug' when debug mode is active."
nil)
(defgroup wttrin nil
"Emacs frontend for the weather web service wttr.in."
:prefix "wttrin-"
:group 'comm)
(defface wttrin-mode-line-stale
'((t :inherit shadow))
"Face for the mode-line weather emoji when its data is stale.
Applied when a scheduled refresh has failed and the cached reading is
older than twice `wttrin-mode-line-refresh-interval'. A color emoji
font may ignore the foreground, in which case the dimming is only
visible on monochrome glyphs."
:group 'wttrin)
(defface wttrin-staleness-header
'((t :inherit shadow))
"Face for the \"Last updated: ...\" line in the weather buffer."
:group 'wttrin)
(defface wttrin-instructions
'((t :inherit shadow))
"Face for the key-hint footer prose in the weather buffer."
:group 'wttrin)
(defface wttrin-key
'((t :inherit bold))
"Face for the bracketed key chords in the weather buffer footer.
`help-key-binding' would be the natural parent, but it only exists in
Emacs 28+, and wttrin supports 24.4, so the default inherits `bold'."
:group 'wttrin)
(defcustom wttrin-font-name "Liberation Mono"
"Preferred monospaced font name for weather display."
:group 'wttrin
:type 'string)
(defcustom wttrin-font-height 130
"Preferred font height for weather display."
:group 'wttrin
:type 'integer)
(defcustom wttrin-default-locations '("Honolulu, HI"
"Berkeley, CA"
"New Orleans, LA"
"New York, NY"
"London, GB"
"Paris, FR"
"Berlin, DE"
"Naples, IT"
"Athens, GR"
"Kyiv, UA"
"Tokyo, JP"
"Taipei, TW")
"Specify default locations list for quick completion."
:group 'wttrin
:type '(repeat string))
(defcustom wttrin-default-languages
'("Accept-Language" . "en-US,en;q=0.8,zh-CN;q=0.6,zh;q=0.4")
"Specify default HTTP request Header for Accept-Language."
:group 'wttrin
:type '(cons (string :tag "Header") (string :tag "Language codes")))
(defcustom wttrin-unit-system nil
"Specify units of measurement.
Use \='m\=' for \='metric\=', \='u\=' for \='USCS\=', or nil for location based
units (default)."
:group 'wttrin
:type 'string)
(defcustom wttrin-display-options nil
"wttr.in display option flags concatenated as a string.
Each character is a wttr.in flag, as documented at https://wttr.in/:help.
Common options:
0 only current weather (no forecast)
1 current weather + today's forecast
2 current weather + today's + tomorrow's forecast
d restrict output to standard console font glyphs
F do not show the \"Follow\" line
n narrow version (only day and night)
q quiet version (no \"Weather report\" text)
Q superquiet version (no \"Weather report\", no city name)
Example: \"0Fq\" gives current weather only with no Follow line and no
header. Default nil means no extra options.
Avoid \"A\" and \"T\" — wttrin manages ANSI output internally so the
xterm-color rendering produces the colored glyphs."
:group 'wttrin
:type '(choice (const :tag "None" nil)
(string :tag "Options")))
(define-obsolete-variable-alias 'wttrin-cache-ttl 'wttrin-refresh-interval "0.3.0")
(defcustom wttrin-refresh-interval 3600 ; 1 hour
"Interval in seconds between proactive weather data refreshes.
Controls how often the background timer refreshes cached weather data
for `wttrin-favorite-location'. Data older than 2x this interval
is considered stale. The wttr.in service updates roughly every 10
minutes, so values below 600 just waste their bandwidth."
:group 'wttrin
:type 'integer)
(defcustom wttrin-cache-max-entries 50
"Maximum number of entries to keep in cache."
:group 'wttrin
:type 'integer)
(defconst wttrin--cache-cleanup-percentage 0.20
"Percentage of cache entries to remove when max size is exceeded.
When cache reaches `wttrin-cache-max-entries', remove the oldest 20%
to avoid frequent cleanup cycles. This value (0.20) means remove 1/5
of entries, providing a reasonable buffer before the next cleanup.")
(defcustom wttrin-favorite-location nil
"Favorite location to display weather for.
Three modes:
- nil Favorite-location features are disabled (default).
- a string Use the string as the location, e.g. \"Berkeley, CA\".
- t Auto-detect via IP geolocation. wttrin runs the lookup
once on first use and caches the result for the session.
To pick a specific provider, customize
`wttrin-geolocation-provider'.
When set, the weather icon and tooltip update automatically in the
background. IP-based auto-detection can be inaccurate behind a VPN
or a mobile hotspot — use a string if you need accuracy."
:group 'wttrin
:type '(choice (const :tag "Disabled" nil)
(const :tag "Auto-detect via geolocation" t)
(string :tag "Location")))
(defvar wttrin--resolved-favorite-location nil
"Cached geolocation result for `wttrin-favorite-location' = t.
Holds the resolved \"City, Region\" string so subsequent reads
do not re-fetch. Reset implicitly when the Emacs session ends.")
(defvar wttrin--favorite-location-pending nil
"Non-nil while a geolocation lookup for the favorite is in flight.
Prevents duplicate concurrent lookups when several consumers ask
during the resolution window.")
(defun wttrin--resolve-favorite-location ()
"Return the favorite location as a string, or nil if unavailable.
Resolves `wttrin-favorite-location' across the three modes:
- nil -> nil (disabled)
- a string -> the string as-is
- t -> the cached geolocation result. When the cache is empty
and no lookup is in flight, kicks off an async detect
and returns nil for this call. The next call after the
lookup completes returns the resolved string."
(cond
((null wttrin-favorite-location) nil)
((stringp wttrin-favorite-location) wttrin-favorite-location)
((eq wttrin-favorite-location t)
(or wttrin--resolved-favorite-location
(progn
(wttrin--start-favorite-location-detect)
nil)))))
(defun wttrin--start-favorite-location-detect ()
"Kick off an async geolocation lookup if one is not already pending.
On success the resolved string is stored in
`wttrin--resolved-favorite-location'. Failures (network error, parse
error) leave the cache empty and clear the pending flag, so the next
call retries."
(unless wttrin--favorite-location-pending
(setq wttrin--favorite-location-pending t)
(require 'wttrin-geolocation)
(wttrin-geolocation-detect
(lambda (location)
(setq wttrin--favorite-location-pending nil)
(when location
(setq wttrin--resolved-favorite-location location)
(wttrin--debug-log
"Resolved favorite-location via geolocation: %s" location))))))
(defun wttrin--favorite-location-display-name ()
"Return a human-readable name for the favorite location.
Returns the resolved string when available; otherwise returns
\"current location\" if auto-detect is configured but pending,
or nil if the favorite is disabled."
(or (wttrin--resolve-favorite-location)
(when (eq wttrin-favorite-location t) "current location")))
(defcustom wttrin-mode-line-refresh-interval 3600
"Interval in seconds to refresh mode-line weather data.
Default is 3600 seconds (1 hour). The wttr.in service updates its
data roughly every 10 minutes; polling more often than that just
wastes their bandwidth. Be kind to the free service."
:group 'wttrin
:type 'integer)
(defcustom wttrin-mode-line-startup-delay 3
"Seconds to delay initial mode-line weather fetch after Emacs starts.
This allows network stack and daemon initialization to complete before
fetching weather data. Must be between 1 and 10 seconds."
:group 'wttrin
:type '(restricted-sexp :match-alternatives
((lambda (val)
(and (integerp val)
(>= val 1)
(<= val 10))))))
(defcustom wttrin-mode-line-emoji-font "Noto Color Emoji"
"Font family to use for mode-line weather emoji.
Common color emoji fonts include:
- \"Noto Color Emoji\" (Linux)
- \"Apple Color Emoji\" (macOS)
- \"Segoe UI Emoji\" (Windows)
- \"Twitter Color Emoji\"
Set to nil to use default font (may render as monochrome)."
:group 'wttrin
:type '(choice (const :tag "Use default font" nil)
(string :tag "Font family name")))
(defcustom wttrin-mode-line-auto-enable nil
"If non-nil, automatically enable mode-line weather display when loading wttrin.
When enabled, weather for `wttrin-favorite-location' will appear
in the mode-line automatically. You can also manually toggle the mode-line
display with `wttrin-mode-line-mode'."
:group 'wttrin
:type 'boolean)
(defcustom wttrin-debug nil
"Enable debug functions for troubleshooting wttrin behavior.
When non-nil, loads wttrin-debug.el which provides:
- Automatic mode-line diagnostic logging when wttrin runs
- Raw weather data saved to timestamped files in variable
`temporary-file-directory'
- Interactive debug commands for troubleshooting
Set this to t BEFORE loading wttrin, typically in your init file:
(setq wttrin-debug t)
(require \\='wttrin)"
:group 'wttrin
:type 'boolean)
;; When debug mode is active, load the real implementations of
;; wttrin--debug-log and wttrin--debug-mode-line-info, replacing the
;; no-op stubs defined above. Must be set before loading wttrin.
(when wttrin-debug
(require 'wttrin-debug
(expand-file-name "wttrin-debug.el"
(file-name-directory (or load-file-name buffer-file-name)))
t))
(defvar wttrin--cache (make-hash-table :test 'equal)
"Cache for weather data: cache-key -> (timestamp . data).")
(defvar wttrin--force-refresh nil
"When non-nil, bypass cache on next fetch.")
;;; Mode-line state and update flow
;;
;; The state lives in four variables (defined below): the cache as source
;; of truth, the rendered string for `global-mode-string', a stale-render
;; flag, and the refresh timer.
;;
;; Normal update path:
;; `wttrin--mode-line-fetch-weather' updates `wttrin--mode-line-cache'
;; and then calls `wttrin--mode-line-update-display', which reads the
;; cache, decides staleness via `wttrin--mode-line-stale-p', and writes
;; both `wttrin-mode-line-string' and `wttrin--mode-line-rendered-stale'.
;;
;; Tooltip-driven re-render:
;; `wttrin--mode-line-tooltip' fires on every mouse hover. It
;; re-evaluates staleness against the current cache age and, if that
;; flips relative to `wttrin--mode-line-rendered-stale', calls
;; `wttrin--mode-line-update-display' to refresh dimming. This keeps
;; the tooltip age and emoji color in sync when a fetch has been
;; failing for a while.
(defvar wttrin-mode-line-string nil
"Mode-line string showing weather for favorite location.")
;; Emacs strips text properties from mode-line strings unless the
;; variable is marked risky. Without this, face and help-echo are lost.
(put 'wttrin-mode-line-string 'risky-local-variable t)
(defvar wttrin--mode-line-timer nil
"Timer object for mode-line weather refresh.")
(defvar wttrin--mode-line-cache nil
"Cached mode-line weather data as (timestamp . data) cons cell.
When non-nil, car is the `float-time' when data was fetched,
and cdr is the weather string from the API.")
(defvar wttrin--mode-line-rendered-stale nil
"Whether the mode-line emoji is currently rendered as stale (dimmed).")
(defvar wttrin--mode-line-map
(let ((map (make-sparse-keymap)))
(define-key map [mode-line mouse-1] 'wttrin-mode-line-click)
(define-key map [mode-line mouse-3] 'wttrin-mode-line-force-refresh)
map)
"Keymap for mode-line weather widget interactions.
Left-click: refresh weather and open buffer.
Right-click: force-refresh cache and update tooltip.")
(defun wttrin--format-age (seconds)
"Format SECONDS as a human-readable age string.
Returns \"just now\" for <60s, \"X minutes ago\", \"X hours ago\", or \"X days ago\"."
(cond
((< seconds 60) "just now")
((< seconds 3600)
(let ((minutes (floor (/ seconds 60))))
(format "%d %s ago" minutes (if (= minutes 1) "minute" "minutes"))))
((< seconds 86400)
(let ((hours (floor (/ seconds 3600))))
(format "%d %s ago" hours (if (= hours 1) "hour" "hours"))))
(t
(let ((days (floor (/ seconds 86400))))
(format "%d %s ago" days (if (= days 1) "day" "days"))))))
(defun wttrin-additional-url-params ()
"Concatenates extra information into the URL."
(if wttrin-unit-system
(concat "?" wttrin-unit-system)
"?"))
;;; Error Types
;; A small condition hierarchy so callers can branch on the *class* of a
;; failure instead of matching message text. `wttrin-error' is the parent.
;; Synchronous code paths signal these directly; the async fetch path tags its
;; human-readable error string with the class via the `wttrin-error-type' text
;; property (see `wttrin--error-message'), so two-arg callbacks keep working
;; while callers that care can read the class.
(define-error 'wttrin-error "wttrin error")
(define-error 'wttrin-invalid-input "Invalid input" 'wttrin-error)
(define-error 'wttrin-network-error "Network error" 'wttrin-error)
(define-error 'wttrin-not-found-error "Location not found" 'wttrin-error)
(define-error 'wttrin-service-error "Weather service error" 'wttrin-error)
(define-error 'wttrin-parse-error "Could not parse weather response" 'wttrin-error)
(defun wttrin--error-message (type format-string &rest args)
"Format an error message of class TYPE.
Return the string built from FORMAT-STRING and ARGS with TYPE stored in its
`wttrin-error-type' text property. This lets the async fetch path hand a
plain string to callbacks while still carrying the error class; read it back
with `wttrin-error-message-type'."
(propertize (apply #'format format-string args) 'wttrin-error-type type))
(defun wttrin-error-message-type (error-msg)
"Return the error-class symbol carried by ERROR-MSG, or nil.
ERROR-MSG is a string produced by wttrin's async fetch path; its class is
stored in the `wttrin-error-type' text property. A plain, empty, or nil
ERROR-MSG has no class."
(and (stringp error-msg)
(> (length error-msg) 0)
(get-text-property 0 'wttrin-error-type error-msg)))
(defun wttrin--build-url (query)
"Build wttr.in URL for QUERY with configured parameters."
(when (null query)
(signal 'wttrin-invalid-input '("Query cannot be nil")))
(concat "https://wttr.in/"
(url-hexify-string query)
(wttrin-additional-url-params)
"A"
(or wttrin-display-options "")))
(defun wttrin--extract-http-status ()
"Return the HTTP status code from the current buffer, or nil.
Reads the status line without moving point."
(save-excursion
(goto-char (point-min))
(when (re-search-forward "^HTTP/[0-9.]+ \\([0-9]+\\)" nil t)
(string-to-number (match-string 1)))))
(defun wttrin--extract-response-body ()
"Extract and decode HTTP response body from current buffer.
Skips headers and returns UTF-8 decoded body.
Returns nil for non-2xx status codes or on error. Kills buffer when done."
(condition-case err
(unwind-protect
(let ((status (wttrin--extract-http-status)))
(if (and status (>= status 300))
(progn
(wttrin--debug-log "wttrin--extract-response-body: HTTP %d" status)
nil)
(goto-char (point-min))
;; Skip past HTTP headers — blank line separates headers from body
(re-search-forward "\r?\n\r?\n" nil t)
(let ((body (decode-coding-string
(buffer-substring-no-properties (point) (point-max))
'utf-8)))
(wttrin--debug-log "wttrin--extract-response-body: Successfully fetched %d bytes"
(length body))
body)))
;; unwind-protect handles buffer cleanup for all paths
(ignore-errors (kill-buffer (current-buffer))))
(error
(wttrin--debug-log "wttrin--extract-response-body: Error - %s"
(error-message-string err))
nil)))
(defun wttrin--handle-fetch-callback (status callback)
"Handle `url-retrieve' callback STATUS and invoke CALLBACK with result.
Calls CALLBACK with (DATA &optional ERROR-MSG). DATA is the response
body string on success, nil on failure. ERROR-MSG is a human-readable
description of what went wrong, or nil on success."
(wttrin--debug-log "wttrin--handle-fetch-callback: Invoked with status = %S" status)
(let ((data nil)
(error-msg nil))
(cond
;; Network-level failure (DNS, connection refused, timeout)
((plist-get status :error)
(wttrin--debug-log "wttrin--handle-fetch-callback: Network error - %s"
(cdr (plist-get status :error)))
(setq error-msg (wttrin--error-message
'wttrin-network-error
"Network error — check your connection"))
(message "wttrin: %s" error-msg))
;; HTTP response received — extract body (returns nil for non-2xx)
(t
(let ((http-status (wttrin--extract-http-status)))
(setq data (wttrin--extract-response-body))
(when (not data)
(setq error-msg
(cond
((null http-status)
(wttrin--error-message
'wttrin-parse-error "Could not read weather response"))
((and (>= http-status 400) (< http-status 500))
(wttrin--error-message
'wttrin-not-found-error "Location not found (HTTP %d)" http-status))
((>= http-status 500)
(wttrin--error-message
'wttrin-service-error "Weather service error (HTTP %d)" http-status))
((< http-status 300)
(wttrin--error-message
'wttrin-parse-error "Could not parse weather response (HTTP %d)" http-status))
(t
(wttrin--error-message
'wttrin-error "Unexpected HTTP status %d" http-status))))
(message "wttrin: %s" error-msg)))))
(condition-case err
(progn
(wttrin--debug-log "wttrin--handle-fetch-callback: Calling user callback with %s"
(if data (format "%d bytes" (length data)) "nil"))
(funcall callback data error-msg))
(error
(wttrin--debug-log "wttrin--handle-fetch-callback: Error in user callback - %s"
(error-message-string err))
(message "wttrin: Error in callback - %s" (error-message-string err))))))
(defun wttrin--fetch-url (url callback)
"Asynchronously fetch URL and call CALLBACK with decoded response.
CALLBACK is called with the weather data string when ready, or nil on error.
Handles header skipping, UTF-8 decoding, and error handling automatically."
(wttrin--debug-log "wttrin--fetch-url: Starting fetch for URL: %s" url)
;; wttr.in returns plain text for curl but HTML for browsers
(let ((url-request-extra-headers (list wttrin-default-languages))
(url-user-agent "curl"))
(url-retrieve url
(lambda (status)
(wttrin--handle-fetch-callback status callback)))))
(defun wttrin-fetch-raw-string (query callback)
"Asynchronously fetch weather information for QUERY.
CALLBACK is called with the weather data string when ready, or nil on error."
(wttrin--fetch-url (wttrin--build-url query) callback))
;;; Location Search History
(defcustom wttrin-location-history-max 20
"Maximum number of entries to keep in location search history.
When the history exceeds this limit, the oldest entries are removed."
:group 'wttrin
:type 'integer)
(defvar wttrin--location-history nil
"History of successfully searched locations, most recent first.
Persisted across sessions via `savehist-mode'.")
;; Declared so the byte-compiler doesn't warn; savehist defines it for real.
(defvar savehist-additional-variables)
(defun wttrin--savehist-register ()
"Ensure wttrin's persisted variables are saved by savehist.
Registers `wttrin--location-history' and `wttrin-favorite-location' so both
survive across restarts without the Emacs custom-variable mechanism.
Run both at load and on `savehist-save-hook', so the registration survives a
user `setq' of `savehist-additional-variables' (a common config pattern) that
would otherwise drop the entries before they could be saved."
(add-to-list 'savehist-additional-variables 'wttrin--location-history)
(add-to-list 'savehist-additional-variables 'wttrin-favorite-location))
(with-eval-after-load 'savehist
(wttrin--savehist-register)
(add-hook 'savehist-save-hook #'wttrin--savehist-register))
(defun wttrin--add-to-location-history (location)
"Record LOCATION as a recent successful search.
No-op when LOCATION is nil, empty, or already a default location. An existing
entry is promoted to most-recent, and the list is trimmed to
`wttrin-location-history-max'."
(when (and location
(not (string= location ""))
(not (member location wttrin-default-locations)))
(setq wttrin--location-history (delete location wttrin--location-history))
(push location wttrin--location-history)
(let ((max (max 0 wttrin-location-history-max)))
(when (> (length wttrin--location-history) max)
(setq wttrin--location-history
(butlast wttrin--location-history
(- (length wttrin--location-history) max)))))))
(defun wttrin--completion-candidates ()
"Return the favorite, default locations, then search-history entries.
History already excludes defaults (see `wttrin--add-to-location-history'), and
`wttrin--set-favorite-location' drops the favorite from history. The favorite
\(`wttrin-favorite-location', when a string) is prepended unless it is already a
default, so it always appears exactly once."
(let ((candidates (append wttrin-default-locations wttrin--location-history)))
(if (and (stringp wttrin-favorite-location)
(not (member wttrin-favorite-location candidates)))
(cons wttrin-favorite-location candidates)
candidates)))
(defun wttrin-remove-location-history (location)
"Remove LOCATION from the search history.
Prompts with completion over the current history entries."
(interactive
(list (completing-read "Remove from history: "
wttrin--location-history nil t)))
(setq wttrin--location-history (delete location wttrin--location-history))
(message "Removed '%s' from location history" location))
(defun wttrin-clear-location-history ()
"Clear all location search history."
(interactive)
(when (yes-or-no-p "Clear all location search history? ")
(setq wttrin--location-history nil)
(message "Location history cleared")))
(defun wttrin--requery-location (new-location)
"Kill current weather buffer and query NEW-LOCATION."
(when (get-buffer "*wttr.in*")
(kill-buffer "*wttr.in*"))
(wttrin-query new-location))
(defun wttrin-requery ()
"Kill buffer and requery wttrin."
(interactive)
(let ((new-location (completing-read
"Location Name: " (wttrin--completion-candidates) nil nil
(when (= (length wttrin-default-locations) 1)
(car wttrin-default-locations)))))
(wttrin--requery-location new-location)))
(defvar wttrin-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "a") 'wttrin-requery)
(define-key map (kbd "g") 'wttrin-requery-force)
(define-key map (kbd "d") 'wttrin-make-default)
;; Note: 'q' is bound to quit-window by special-mode
map)
"Keymap for wttrin-mode.")
(define-derived-mode wttrin-mode special-mode "Wttrin"
"Major mode for displaying wttr.in weather information.
Weather data is displayed in a read-only buffer with the following keybindings:
\\{wttrin-mode-map}"
(buffer-disable-undo)
;; ASCII art breaks if lines wrap at the window edge
(setq truncate-lines t)
;; Use face-remap instead of buffer-face-mode to preserve xterm-color faces
(face-remap-add-relative 'default
:family wttrin-font-name
:height wttrin-font-height))
(defun wttrin--save-debug-data (location-name raw-string)
"Save RAW-STRING to a timestamped debug file for LOCATION-NAME.
Returns the path to the saved file."
(let* ((timestamp (format-time-string "%Y%m%d-%H%M%S"))
(filename (format "wttrin-debug-%s.txt" timestamp))
(filepath (expand-file-name filename temporary-file-directory)))
(with-temp-file filepath
(insert (format "Location: %s\n" location-name))
(insert (format "Timestamp: %s\n" (format-time-string "%Y-%m-%d %H:%M:%S")))
(insert (format "wttrin-unit-system: %s\n" wttrin-unit-system))
(insert "\n--- Raw Response ---\n\n")
(insert (or raw-string "(nil — no data received)")))
(wttrin--debug-log "Debug data saved to: %s" filepath)
filepath))
(defun wttrin--validate-weather-data (raw-string)
"Check if RAW-STRING has valid weather data.
Return t if valid, nil if missing or contains errors."
(not (or (null raw-string) (string-match-p "ERROR" raw-string))))
(defun wttrin--process-weather-content (raw-string)
"Process RAW-STRING: apply ANSI filtering and remove verbose lines.
Returns processed string ready for display."
(require 'xterm-color)
(let ((processed (xterm-color-filter raw-string)))
;; Remove verbose Location: coordinate line
(with-temp-buffer
(insert processed)
(goto-char (point-min))
(while (re-search-forward "^\\s-*Location:.*\\[.*\\].*$" nil t)
(delete-region (line-beginning-position) (1+ (line-end-position))))
(buffer-string))))
(defun wttrin--add-buffer-instructions ()
"Add the key-hint footer at the bottom of the current buffer.
Bracketed key chords use `wttrin-key'; the surrounding prose uses
`wttrin-instructions'."
(goto-char (point-max))
(insert "\n\n")
(dolist (segment '(("Press: " . wttrin-instructions)
("[a]" . wttrin-key)
(" for another location " . wttrin-instructions)
("[g]" . wttrin-key)
(" to refresh " . wttrin-instructions)
("[d]" . wttrin-key)
(" to make default " . wttrin-instructions)
("[q]" . wttrin-key)
(" to quit" . wttrin-instructions)))
(insert (propertize (car segment) 'face (cdr segment)))))
(defun wttrin--format-staleness-header (location)
"Return a staleness header string for LOCATION, or nil if no cache entry.
Looks up the cache timestamp for LOCATION and formats a line like
\"Last updated: 2:30 PM (5 minutes ago)\"."
(let* ((cache-key (wttrin--make-cache-key location))
(cached (gethash cache-key wttrin--cache)))
(when cached
(let* ((timestamp (car cached))
(age (- (float-time) timestamp))
(time-str (format-time-string "%l:%M %p" (seconds-to-time timestamp)))
(age-str (wttrin--format-age age)))
(propertize (format "Last updated: %s (%s)" (string-trim time-str) age-str)
'face 'wttrin-staleness-header)))))
(defun wttrin--display-weather (location-name raw-string &optional error-msg)
"Display weather data RAW-STRING for LOCATION-NAME in weather buffer.
When ERROR-MSG is provided and data is invalid, show that instead of
the generic error message."
(when wttrin-debug
(wttrin--save-debug-data location-name raw-string))
(if (not (wttrin--validate-weather-data raw-string))
(message "wttrin: %s"
(or error-msg
"Cannot retrieve weather data. Perhaps the location was misspelled?"))
(wttrin--add-to-location-history location-name)
(let ((buffer (get-buffer-create (format "*wttr.in*"))))
(switch-to-buffer buffer)
;; wttrin-mode calls kill-all-local-variables, so it must run
;; before setting any buffer-local state (xterm-color, location)
(wttrin-mode)
(let ((inhibit-read-only t))
(erase-buffer)
;; xterm-color--state must be set AFTER wttrin-mode for the same
;; reason — mode initialization would wipe it
(require 'xterm-color)
(setq-local xterm-color--state :char)
(insert (wttrin--process-weather-content raw-string))
;; wttr.in returns location in lowercase — replace with user's casing
(goto-char (point-min))
(when (re-search-forward "^Weather report: .*$" nil t)
(replace-match (concat "Weather report: " location-name)))
(let ((staleness (wttrin--format-staleness-header location-name)))
(when staleness
(insert "\n" staleness)))
(wttrin--add-buffer-instructions)
(goto-char (point-min)))
(setq-local wttrin--current-location location-name)
(wttrin--debug-mode-line-info))))
(defun wttrin-query (location-name)
"Asynchronously query weather of LOCATION-NAME, display result when ready."
(let ((buffer (get-buffer-create (format "*wttr.in*"))))
(switch-to-buffer buffer)
(setq buffer-read-only nil)
(erase-buffer)
(insert "Loading weather for " location-name "...")
(setq buffer-read-only t)
(wttrin--get-cached-or-fetch
location-name
(lambda (raw-string &optional error-msg)
(when (buffer-live-p buffer)
(with-current-buffer buffer
(wttrin--display-weather location-name raw-string error-msg)))))))
(defun wttrin--make-cache-key (location)
"Create cache key from LOCATION and current settings."
(concat location "|" (or wttrin-unit-system "default")))
(defun wttrin--get-cached-or-fetch (location callback)
"Get cached weather for LOCATION or fetch if not cached.
If cache has data and not force-refreshing, serves it immediately
regardless of age. The background refresh timer keeps data fresh.
CALLBACK is called with (DATA &optional ERROR-MSG)."
(let* ((cache-key (wttrin--make-cache-key location))
(cached (gethash cache-key wttrin--cache))
(data (cdr cached)))
(if (and cached (not wttrin--force-refresh))
;; Serve cached data regardless of age — background timers keep it fresh
(funcall callback data)
(wttrin-fetch-raw-string
location
(lambda (fresh-data &optional error-msg)
(if fresh-data
(progn
(wttrin--cleanup-cache-if-needed)
(puthash cache-key (cons (float-time) fresh-data) wttrin--cache)
(funcall callback fresh-data))
;; On error, return stale cache if available
(if cached
(progn
(message "Failed to fetch new data, using cached version")
(funcall callback data))
(funcall callback nil error-msg))))))))
(defun wttrin--get-cache-entries-by-age ()
"Return list of (key . timestamp) pairs sorted oldest-first.
Extracts all cache entries and sorts them by timestamp in ascending order.
Returns a list where each element is a cons cell (key . timestamp)."
(let ((entries nil))
(maphash (lambda (key value)
(push (cons key (car value)) entries)) ; car value = timestamp
wttrin--cache)
(sort entries (lambda (a b) (< (cdr a) (cdr b))))))
(defun wttrin--cleanup-cache-if-needed ()
"Remove oldest entries if cache exceeds max size.
Removes oldest entries based on `wttrin--cache-cleanup-percentage'
when cache count exceeds `wttrin-cache-max-entries'.
This creates headroom to avoid frequent cleanups."
(when (> (hash-table-count wttrin--cache) wttrin-cache-max-entries)
(let* ((entries-by-age (wttrin--get-cache-entries-by-age))
(num-to-remove (floor (* (length entries-by-age)
wttrin--cache-cleanup-percentage))))
(dotimes (i num-to-remove)
(remhash (car (nth i entries-by-age)) wttrin--cache)))))
(defun wttrin-clear-cache ()
"Clear the weather cache."
(interactive)
(clrhash wttrin--cache)
(message "Weather cache cleared"))
;;;###autoload
(defun wttrin-set-location-from-geolocation ()
"Detect your location via IP geolocation and set it as the favorite.
Uses the provider named by `wttrin-geolocation-provider' to fetch
\"City, Region\", asks for confirmation, and on yes assigns the
result to `wttrin-favorite-location' for this session.
To persist the setting across Emacs sessions, either run
\\[customize-save-variable] on `wttrin-favorite-location', or add
\(setq wttrin-favorite-location ...\) to your init file.
IP-based geolocation can be wrong behind a VPN or a mobile hotspot.
The confirmation prompt shows the detected location so you can
reject inaccurate results."
(interactive)
(require 'wttrin-geolocation)
(message "Detecting location...")
(wttrin-geolocation-detect
(lambda (location)
(cond
((null location)
(message "Could not detect location (network or provider error)"))
((yes-or-no-p (format "Detected location: %s. Set as favorite? "
location))
(setq wttrin-favorite-location location)
(message "Set wttrin-favorite-location to: %s. Run M-x customize-save-variable to persist."
location))
(t
(message "Location detection cancelled"))))))
(defvar-local wttrin--current-location nil
"Current location displayed in this weather buffer.")
(defun wttrin-requery-force ()
"Force refresh weather data for current location, bypassing cache."
(interactive)
(if wttrin--current-location
(let ((wttrin--force-refresh t))
(message "Refreshing weather data...")
(wttrin-query wttrin--current-location))
(message "No location to refresh")))
(defun wttrin--set-favorite-location (location)
"Set `wttrin-favorite-location' to LOCATION and drop it from search history.
LOCATION becomes a permanent default, so it no longer needs a history entry,
mirroring how `wttrin-default-locations' entries are kept out of history.
Persistence is handled by `wttrin--savehist-register', which registers the
variable when savehist loads and again on `savehist-save-hook', so the value
survives restarts without the Emacs custom-variable mechanism, and setting it
here works whether or not savehist is loaded."
(setq wttrin-favorite-location location)
(setq wttrin--location-history (delete location wttrin--location-history)))
(defun wttrin-make-default ()
"Make the location shown in this buffer the favorite (persisted) default.
Sets `wttrin-favorite-location' to the displayed location so it drives the
mode-line and survives restarts. No-op with a message when the buffer has
no current location."
(interactive)
(if wttrin--current-location
(progn
(wttrin--set-favorite-location wttrin--current-location)
(message "wttrin: %s is now the default location" wttrin--current-location))
(message "wttrin: no location to make default")))
;;; Mode-line weather display
(defun wttrin--replace-response-location (response location)
"Replace the API's location prefix in RESPONSE with LOCATION.
The wttr.in API returns locations in lowercase. This substitutes the
user's original casing so tooltips display what the user expects."
(if (string-match ":" response)
(concat location (substring response (match-beginning 0)))
response))
(defun wttrin--make-emoji-icon (emoji &optional face)
"Create EMOJI string, optionally styled with FACE and the emoji font.
Uses `wttrin-mode-line-emoji-font' when configured. FACE, when non-nil,
is applied via `:inherit'. Omitting it avoids a literal `:inherit nil'
entry, which triggers \"Invalid face attribute\" warnings on every
redisplay."
(if wttrin-mode-line-emoji-font
(propertize emoji
'face `(:family ,wttrin-mode-line-emoji-font
:height 1.0
,@(when face (list :inherit face))))
(if face
(propertize emoji 'face (list :inherit face))
emoji)))
(defun wttrin--set-mode-line-string (icon tooltip)
"Set mode-line weather string to ICON with TOOLTIP and standard properties."
(setq wttrin-mode-line-string
(propertize (concat " " icon)
'help-echo tooltip
'mouse-face 'mode-line-highlight
'local-map wttrin--mode-line-map))
(force-mode-line-update t))
(defun wttrin--mode-line-valid-response-p (weather-string)
"Return non-nil if WEATHER-STRING looks like a valid mode-line response.
Expected format: \"Location: emoji temp conditions\",
e.g., \"Paris: ☀️ +61°F Clear\"."
(and (stringp weather-string)
(not (string-empty-p weather-string))
(string-match-p ":" weather-string)))
(defun wttrin--mode-line-update-placeholder-error ()
"Update placeholder to show fetch error state.
Keeps the hourglass icon but updates tooltip to explain the failure
and indicate when retry will occur."
(let ((retry-minutes (ceiling (/ wttrin-mode-line-refresh-interval 60.0)))
(label (or (wttrin--favorite-location-display-name) "favorite")))
(wttrin--set-mode-line-string
(wttrin--make-emoji-icon "⏳")
(format "Weather fetch failed for %s — will retry in %d minutes"
label retry-minutes))))
(defun wttrin--mode-line-fetch-weather ()
"Fetch weather for favorite location and update mode-line display.
Uses wttr.in custom format for concise weather with emoji.
On success, writes to `wttrin--mode-line-cache' and updates display.
On failure with existing cache, shows stale data.
On failure with no cache, shows error placeholder.
When `wttrin-favorite-location' is t and geolocation has not yet
resolved, this call is a no-op; the next tick after resolution
proceeds normally."
(wttrin--debug-log "mode-line-fetch: Starting fetch for %s" wttrin-favorite-location)
(let ((location (wttrin--resolve-favorite-location)))
(if (not location)
(wttrin--debug-log "mode-line-fetch: No favorite location available, skipping")
(let* (;; wttr.in format codes: %l=location %c=emoji %t=temp %C=conditions
(format-params (if wttrin-unit-system
(concat "?" wttrin-unit-system "&format=%l:+%c+%t+%C")
"?format=%l:+%c+%t+%C"))
(url (concat "https://wttr.in/"
(url-hexify-string location)
format-params)))
(wttrin--debug-log "mode-line-fetch: URL = %s" url)
(wttrin--fetch-url
url
(lambda (data &optional _error-msg)
(if data
(let ((trimmed-data (string-trim data)))
(wttrin--debug-log "mode-line-fetch: Received data = %S" trimmed-data)
(if (wttrin--mode-line-valid-response-p trimmed-data)
(progn
(setq wttrin--mode-line-cache
(cons (float-time)
(wttrin--replace-response-location trimmed-data location)))
(wttrin--mode-line-update-display))
(wttrin--debug-log "mode-line-fetch: Invalid response, keeping previous display")))
;; Network error / nil data
(wttrin--debug-log "mode-line-fetch: No data received (network error)")
(if wttrin--mode-line-cache
;; Have stale cache — update display to show staleness
(wttrin--mode-line-update-display)
;; No cache at all — show error placeholder
(wttrin--mode-line-update-placeholder-error)))))))))
(defun wttrin--mode-line-extract-emoji (weather-string)
"Extract the emoji character from WEATHER-STRING.
The expected format is \"Location: emoji temp conditions\". Returns
the first non-whitespace character after the colon, or \"?\" when
WEATHER-STRING contains no colon."
(if (string-match ":\\s-*\\(.\\)" weather-string)
(match-string 1 weather-string)
"?"))
(defun wttrin--mode-line-stale-p (cache-entry)
"Return non-nil if CACHE-ENTRY is stale.
Stale means age greater than 2 × `wttrin-mode-line-refresh-interval'.
CACHE-ENTRY is a (TIMESTAMP . WEATHER-STRING) cons or nil. A nil
entry returns nil so callers can pass `wttrin--mode-line-cache' directly
without a separate guard."
(when cache-entry
(let ((age (- (float-time) (car cache-entry))))
(> age (* 2 wttrin-mode-line-refresh-interval)))))
(defun wttrin--mode-line-tooltip (&optional _window _object _pos)
"Compute tooltip text from `wttrin--mode-line-cache'.
Calculates age at call time so the tooltip is always current.
If staleness has changed since the last render, triggers a re-render
so the emoji dimming matches.
Optional arguments are ignored (required by `help-echo' function protocol)."
(when wttrin--mode-line-cache
(let* ((timestamp (car wttrin--mode-line-cache))
(weather-string (cdr wttrin--mode-line-cache))
(age (- (float-time) timestamp))
(stale-p (wttrin--mode-line-stale-p wttrin--mode-line-cache))
(age-str (wttrin--format-age age)))
;; Re-render emoji if staleness state has changed
(unless (eq stale-p wttrin--mode-line-rendered-stale)
(wttrin--mode-line-update-display))
(if stale-p
(format "%s\nStale: updated %s — fetch failed, will retry"
weather-string age-str)
(format "%s\nUpdated %s" weather-string age-str)))))
(defun wttrin--mode-line-update-display ()
"Update mode-line display from `wttrin--mode-line-cache'.
Reads cached weather data, computes age, and sets the mode-line string.
If data is stale (age > 2x refresh interval), dims the emoji and
shows staleness info in tooltip."
(when wttrin--mode-line-cache
(let* ((weather-string (cdr wttrin--mode-line-cache))
(stale-p (wttrin--mode-line-stale-p wttrin--mode-line-cache)))
(wttrin--debug-log "mode-line-display: Updating from cache, stale=%s" stale-p)
(let ((emoji (wttrin--mode-line-extract-emoji weather-string)))
(wttrin--debug-log "mode-line-display: Extracted emoji = %S, stale = %s"
emoji stale-p)
(setq wttrin--mode-line-rendered-stale stale-p)
(setq wttrin-mode-line-string
(propertize (concat " " (wttrin--make-emoji-icon emoji (when stale-p 'wttrin-mode-line-stale)))
'help-echo #'wttrin--mode-line-tooltip
'mouse-face 'mode-line-highlight
'local-map wttrin--mode-line-map)))))
(force-mode-line-update t))
(defun wttrin-mode-line-click ()
"Handle left-click on mode-line weather widget.
Check cache, refresh if needed, then open weather buffer."
(interactive)
(let ((location (wttrin--resolve-favorite-location)))
(when location
(wttrin location))))
(defun wttrin-mode-line-force-refresh ()
"Handle right-click on mode-line weather widget.
Force-refresh cache and update tooltip without opening buffer."
(interactive)
(when (wttrin--resolve-favorite-location)
(let ((wttrin--force-refresh t))
(wttrin--mode-line-fetch-weather))))
(defun wttrin--mode-line-set-placeholder ()
"Set a placeholder icon in the mode-line while waiting for weather data."
(wttrin--set-mode-line-string
(wttrin--make-emoji-icon "⏳")
(format "Fetching weather for %s..."
(or (wttrin--favorite-location-display-name) "favorite"))))
(defvar wttrin--buffer-refresh-timer nil
"Timer object for proactive buffer cache refresh.")
(defun wttrin--buffer-cache-refresh ()
"Proactively refresh the buffer cache for `wttrin-favorite-location'.
Fetches fresh weather data and updates the buffer cache entry without
displaying anything. This keeps buffer data fresh for when the user
opens the weather buffer. When the favorite is set to t and
geolocation has not yet resolved, this call is a no-op."
(let ((location (wttrin--resolve-favorite-location)))
(when location
(let ((cache-key (wttrin--make-cache-key location)))
(wttrin-fetch-raw-string
location
(lambda (fresh-data &optional _error-msg)
(when fresh-data
(wttrin--cleanup-cache-if-needed)
(puthash cache-key (cons (float-time) fresh-data) wttrin--cache))))))))
(defun wttrin--mode-line-start ()
"Start mode-line weather display and refresh timer."
(wttrin--debug-log "wttrin mode-line: Starting mode-line display (location=%s, interval=%s)"
wttrin-favorite-location
wttrin-mode-line-refresh-interval)
(when wttrin-favorite-location
;; Trigger geolocation resolution in the background if needed; the
;; placeholder + scheduled fetch will pick up the resolved string
;; on the next tick.
(wttrin--resolve-favorite-location)
(wttrin--mode-line-set-placeholder)
;; Delay first fetch — network/daemon may not be ready at startup
(run-at-time wttrin-mode-line-startup-delay nil #'wttrin--mode-line-fetch-weather)
;; Cancel existing timers to prevent duplicates on re-enable
(when wttrin--mode-line-timer
(cancel-timer wttrin--mode-line-timer))
(setq wttrin--mode-line-timer
(run-at-time wttrin-mode-line-refresh-interval
wttrin-mode-line-refresh-interval
#'wttrin--mode-line-fetch-weather))
(when wttrin--buffer-refresh-timer
(cancel-timer wttrin--buffer-refresh-timer))
(setq wttrin--buffer-refresh-timer
(run-at-time wttrin-refresh-interval
wttrin-refresh-interval
#'wttrin--buffer-cache-refresh))
(wttrin--debug-log "wttrin mode-line: Initial fetch scheduled in %s seconds, then every %s seconds"
wttrin-mode-line-startup-delay
wttrin-mode-line-refresh-interval)))
(defun wttrin--mode-line-stop ()
"Stop mode-line weather display and cancel timers."
(wttrin--debug-log "wttrin mode-line: Stopping mode-line display")
(when wttrin--mode-line-timer
(cancel-timer wttrin--mode-line-timer)
(setq wttrin--mode-line-timer nil))
(when wttrin--buffer-refresh-timer
(cancel-timer wttrin--buffer-refresh-timer)
(setq wttrin--buffer-refresh-timer nil))
(setq wttrin-mode-line-string nil)
(setq wttrin--mode-line-cache nil)
(setq wttrin--mode-line-rendered-stale nil)
(force-mode-line-update t))
;;;###autoload
(define-minor-mode wttrin-mode-line-mode
"Toggle weather display in mode-line.
When enabled, shows weather for `wttrin-favorite-location'."
:global t
:lighter (:eval wttrin-mode-line-string)
(if wttrin-mode-line-mode
(progn
(wttrin--debug-log "wttrin mode-line: Mode enabled")
;; after-init-time is nil during startup — defer network until ready.
;; noninteractive check skips deferral in batch mode (tests).
(if (and (not after-init-time) (not noninteractive))
(progn
(wttrin--debug-log "wttrin mode-line: Deferring start until after-init-hook")
(add-hook 'after-init-hook #'wttrin--mode-line-start))
(wttrin--mode-line-start))
;; :lighter handles the built-in mode-line, but custom modelines
;; (e.g., doom-modeline) read global-mode-string instead
(if global-mode-string
(add-to-list 'global-mode-string 'wttrin-mode-line-string 'append)
(setq global-mode-string '("" wttrin-mode-line-string)))
(wttrin--debug-log "wttrin mode-line: Added to global-mode-string = %S" global-mode-string))
(wttrin--debug-log "wttrin mode-line: Mode disabled")
(wttrin--mode-line-stop)
(setq global-mode-string
(delq 'wttrin-mode-line-string global-mode-string))))
;;;###autoload
(defun wttrin (location)
"Display weather information for LOCATION.
Weather data is fetched asynchronously to avoid blocking Emacs."
(interactive
(list
(completing-read "Location Name: " (wttrin--completion-candidates) nil nil
(when (= (length wttrin-default-locations) 1)
(car wttrin-default-locations)))))
(wttrin-query location))
(when wttrin-mode-line-auto-enable
(wttrin-mode-line-mode 1))
(provide 'wttrin)
;;; wttrin.el ends here
|