2019-05-09 13:39:11 +02:00
|
|
|
(in-package :remote-snake-server-api)
|
|
|
|
|
|
|
|
(defclass api ()
|
|
|
|
((gm
|
2019-05-10 08:51:16 +02:00
|
|
|
:initform (make-instance 'game-manager))))
|
2019-05-09 18:38:31 +02:00
|
|
|
|
2019-05-11 08:31:03 +02:00
|
|
|
|
|
|
|
(define-condition bad-request (error)
|
|
|
|
((msg
|
|
|
|
:reader bad-request-msg
|
|
|
|
:initarg :msg
|
|
|
|
:initform "Unkown error occurs"))
|
|
|
|
(:report (lambda (condition stream) (format stream "Bad Request: ~a" (bad-request-msg condition)))))
|
|
|
|
|
|
|
|
|
2019-05-10 12:30:40 +02:00
|
|
|
;;; Parse the request and return it as a plist
|
2019-05-11 08:31:03 +02:00
|
|
|
;;; TODO Check game using game-manager (create the right error condition in gm)
|
2019-05-09 18:38:31 +02:00
|
|
|
(defun parse-request (request)
|
2019-05-10 12:30:40 +02:00
|
|
|
(flet ((normalizer (key) (string-upcase key)))
|
|
|
|
(let* ((p-request (parse request :normalize-all t :keyword-normalizer #'normalizer ))
|
|
|
|
(type (getf p-request :type :not-found)))
|
|
|
|
(cond
|
|
|
|
((eq type :not-found)
|
2019-05-11 08:31:03 +02:00
|
|
|
(error 'bad-request :msg "No json \"type\" field provided"))
|
2019-05-10 12:30:40 +02:00
|
|
|
((equal type "update")
|
|
|
|
(progn
|
2019-05-11 08:31:03 +02:00
|
|
|
(unless (getf p-request :game-id) (error 'bad-request :msg "No json \"game-id\" field provided"))
|
2019-05-10 12:30:40 +02:00
|
|
|
(let ((dir (getf p-request :direction :not-found)))
|
2019-05-11 08:31:03 +02:00
|
|
|
(when (eq :not-found dir) (error 'bad-request :msg "No json \"direction\" field provided"))
|
|
|
|
(unless (or (equal "up" dir) (equal "down" dir) (equal "left" dir) (equal "right" dir) (eq nil dir)) (error 'bad-request :msg "Bad \"direction\" field value"))
|
2019-05-10 12:30:40 +02:00
|
|
|
(cond
|
|
|
|
((equal dir "up") (setf (getf p-request :direction) :up))
|
|
|
|
((equal dir "down") (setf (getf p-request :direction) :down))
|
|
|
|
((equal dir "left") (setf (getf p-request :direction) :left))
|
|
|
|
((equal dir "right") (setf (getf p-request :direction) :right))))))
|
|
|
|
((not (equal type "new-game"))
|
2019-05-11 08:31:03 +02:00
|
|
|
(error 'bad-request :msg "Unknown request type")))
|
2019-05-10 12:30:40 +02:00
|
|
|
p-request)))
|
2019-05-11 08:31:03 +02:00
|
|
|
|
|
|
|
|
2019-05-09 18:38:31 +02:00
|
|
|
(defmethod handle-new-game ((api api) data)
|
|
|
|
(with-slots (gm) api
|
2019-05-10 08:51:16 +02:00
|
|
|
(let* ((game-id (create-game gm)))
|
2019-05-09 18:38:31 +02:00
|
|
|
(let ((game-dump (dump gm game-id)))
|
|
|
|
(setf (getf game-dump :game-over) :null) ; Define nil as null (for json)
|
2019-05-12 11:16:16 +02:00
|
|
|
(string-downcase
|
|
|
|
(to-json
|
|
|
|
(append (list :type "state") game-dump)))))))
|
2019-05-09 18:38:31 +02:00
|
|
|
|
|
|
|
(defmethod handle-update ((api api) data)
|
|
|
|
(with-slots (gm) api
|
|
|
|
(let* ((dir (getf data :direction))
|
2019-05-11 11:13:40 +02:00
|
|
|
(game-id (getf data :game-id))
|
|
|
|
(game (get-game gm game-id)))
|
2019-05-09 18:38:31 +02:00
|
|
|
(if dir
|
|
|
|
(refresh game :dir dir)
|
2019-05-10 08:51:16 +02:00
|
|
|
(refresh game))
|
2019-05-12 11:16:16 +02:00
|
|
|
(string-downcase
|
|
|
|
(to-json
|
|
|
|
(append (list :type "state") (dump gm game-id)))))))
|
2019-05-09 18:38:31 +02:00
|
|
|
|
2019-05-10 14:01:55 +02:00
|
|
|
|
2019-05-09 18:38:31 +02:00
|
|
|
(defmethod handle-request ((api api) request)
|
2019-05-11 11:13:40 +02:00
|
|
|
;; Catch request error and send it to the client
|
|
|
|
(handler-case
|
|
|
|
(let* ((data (parse-request request))
|
|
|
|
(type (getf data :type)))
|
|
|
|
(cond
|
|
|
|
((equal type "new-game") (handle-new-game api data))
|
|
|
|
((equal type "update") (handle-update api data))
|
|
|
|
(t (format t "Unknow type"))))
|
|
|
|
(error (condition) ; Send reason to the client
|
|
|
|
(let ((reason (make-array 0
|
|
|
|
:element-type 'character
|
|
|
|
:adjustable t
|
|
|
|
:fill-pointer 0)))
|
2019-05-11 15:27:04 +02:00
|
|
|
(if (typep condition 'jonathan.error:<jonathan-error>)
|
|
|
|
(format reason "{\"type\":\"error\",\"message\":\"Failed to parse JSON\"}~%" condition :escape nil)
|
|
|
|
(format reason "{\"type\":\"error\",\"message\":\"~a\"}~%" condition :escape nil))
|
2019-05-11 11:13:40 +02:00
|
|
|
reason))))
|
2019-05-09 18:38:31 +02:00
|
|
|
|
2019-05-09 13:39:11 +02:00
|
|
|
|
|
|
|
|