File: worldclock.lisp

package info (click to toggle)
kpax 20061019-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 848 kB
  • ctags: 1,007
  • sloc: lisp: 7,343; makefile: 93
file content (96 lines) | stat: -rw-r--r-- 3,887 bytes parent folder | download | duplicates (2)
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
;;;; -*- mode: lisp -*-
;;;;
;;;; $Id: worldclock.lisp,v 1.3 2005/10/08 07:27:38 sven Exp $
;;;;
;;;; WorldClock allows you to see the time and date in and compare different timezones.
;;;;
;;;; Copyright (C) 2005 Sven Van Caekenberghe. All Rights Reserved.
;;;;
;;;; You are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser GNU Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
;;;;

(in-package :kpax-user)

(defwebapp :worldclock
  (:index 'worldclock-start)
  (:static-root "static/")
  (:unsecure t))

(defclass worldclock ()
  ((id :accessor get-id :initarg :id)
   (name :accessor get-name :initarg :name)
   (description :accessor get-description :initarg :description)
   (timezone :accessor get-timezone :initarg :timezone)
   (longitude :accessor get-longitude :initarg :longitude)
   (latitude :accessor get-latitude :initarg :latitude)
   (dst-start :accessor get-dst-start :initarg :dst-start)
   (dst-stop :accessor get-dst-stop :initarg :dst-stop)
   (dst-delta :accessor get-dst-delta :initarg :dst-delta :initform (* 60 60))))

(defmethod get-sunrise ((worldclock worldclock))
  (with-slots (longitude latitude timezone)
      worldclock
    (multiple-value-bind (second minute hour date month year)
        (decode-universal-time (get-universal-time) (- timezone))
      (declare (ignore second minute hour))
    (sunset:time-of-phenomenon month date year :sunrise latitude longitude timezone))))

(defmethod get-sunset ((worldclock worldclock))
  (with-slots (longitude latitude timezone)
      worldclock
    (multiple-value-bind (second minute hour date month year)
        (decode-universal-time (get-universal-time) (- timezone))
      (declare (ignore second minute hour))
      (sunset:time-of-phenomenon month date year :sunset latitude longitude timezone))))

(defvar *worldclocks*
  (list (make-instance 'worldclock 
                       :id 0
                       :name "UTC / GMT"
                       :timezone 0
                       :latitude (+ 51 (/ 40 60.0))
                       :longitude 0
                       :dst-start nil
                       :dst-stop nil)
        (make-instance 'worldclock 
                       :id 1
                       :name "Brussels / Belgium"
                       :timezone +1
                       :latitude (+ 50 (/ 51 60.0))
                       :longitude (+ 4 (/ 21 60.0))
                       :dst-start "20050327T020000"
                       :dst-stop "20051030T030000")
        (make-instance 'worldclock 
                       :id 2
                       :name "New York / USA"
                       :timezone -5
                       :latitude (+ 40 (/ 44 60.0))
                       :longitude (- (+ 73 (/ 55 60.0)))
                       :dst-start "20050403T020000"
                       :dst-stop "20051030T020000")
        (make-instance 'worldclock 
                       :id 3
                       :name "Sydney / Australia"
                       :timezone +10
                       :latitude (- (+ 33 (/ 55 60.0)))
                       :longitude (+ 151 (/ 17 60.0))
                       :dst-start "20050403T020000"
                       :dst-stop "20051030T020000")))

(defun worldclock-start (request-response)
  (html-page (out request-response)
    (:html 
     (:head 
      (:title "WorldClock") 
      (:link :rel "stylesheet" :type "text/css" :href (static-url request-response :server "nx.css")))
     (:body 
      (:h1 "WorldClock")
      (:div :class "NX_panel"
       (:span :class "NX_title" "Now")
       (:div :class "NX_border"
        (:p (fmt "It is now ~a UTC/GMT" (util:format-universal-time (get-universal-time) :timezone 0)))
        (:p (fmt "It is now ~a local time" (util:format-universal-time (get-universal-time))))))))))

;;;; eof