[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Add support for IRCv3 message tags
From: |
Vibhav Pant |
Subject: |
Re: [PATCH] Add support for IRCv3 message tags |
Date: |
Sat, 31 Dec 2016 18:42:46 +0530 |
I've further modified the patch to expose these message tags through
text-properties of the PRIVMSG they were sent with, thus they can be
accessed by ERC hooks. Also, the code for this feature rests in the
`features/erc-message-tags` branch.
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index 288e8efe73..eed56174a8 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -53,6 +53,7 @@
;; CONTENTS --- `erc-response.contents'
;; SENDER --- `erc-response.sender'
;; LINE --- `erc-response.unparsed'
+;; TAGS --- `erc-response.tags'
;;
;; WARNING, WARNING!!
;; It's probably not a good idea to destructively modify the list
@@ -115,7 +116,8 @@ erc-server-responses
(sender "" :type string)
(command "" :type string)
(command-args '() :type list)
- (contents "" :type string))
+ (contents "" :type string)
+ (tags '() :type list))
;;; User data
@@ -955,16 +957,34 @@ erc-send-ctcp-notice
;;;; Handling responses
+(defun erc-parse-tags (string)
+ "Parse IRCv3 tags list in STRING to a (tag . value) alist."
+ (let ((tags)
+ (tag-strings (split-string string ";")))
+ (dolist (tag-string tag-strings tags)
+ (let ((pair (split-string tag-string "=")))
+ (push (if (consp pair)
+ pair
+ `(,pair))
+ tags)))))
+
(defun erc-parse-server-response (proc string)
"Parse and act upon a complete line from an IRC server.
PROC is the process (connection) from which STRING was received.
PROCs `process-buffer' is `current-buffer' when this function is called."
(unless (string= string "") ;; Ignore empty strings
(save-match-data
- (let ((posn (if (eq (aref string 0) ?:)
- (string-match " " string)
- 0))
- (msg (make-erc-response :unparsed string)))
+ (let* ((tag-list (when (eq (aref string 0) ?@)
+ (substring string 1 (string-match " " string))))
+ (msg (make-erc-response :unparsed string :tags (when tag-list
+ (erc-parse-tags
+ tag-list))))
+ (string (if tag-list
+ (substring string (+ 1 (string-match " " string)))
+ string))
+ (posn (if (eq (aref string 0) ?:)
+ (string-match " " string)
+ 0)))
(setf (erc-response.sender msg)
(if (eq posn 0)
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 8501e2cba7..c66f9f56ec 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -2700,7 +2700,10 @@ erc-display-message
(unless (erc-hide-current-message-p parsed)
(erc-put-text-property 0 (length string) 'erc-parsed parsed string)
(erc-put-text-property 0 (length string) 'rear-sticky t string)
- (erc-display-line string buffer)))))
+ (when (erc-response.tags parsed)
+ (erc-put-text-property 0 (length string) 'tags (erc-response.tags parsed)
+ string))
+ (erc-display-line string buffer)))))
(defun erc-message-type-member (position list)
"Return non-nil if the erc-parsed text-property at POSITION is in LIST.
On Sun, Oct 9, 2016 at 7:13 PM, Vibhav Pant <address@hidden> wrote:
> The following patch adds support for IRCv3(.2) message tags
> (http://ircv3.net/specs/core/message-tags-3.2.html), by adding a 'tags'
> memember
> to the `erc-response` struct. Also, (erc-parse-server-response) is modified
> so as to detect if the raw message has any tags preset, and if so, adds them
> to
> the parsed message. Feedback would be appreciated.
>
> diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
> index bbb7ccb..f210e29 100644
> --- a/lisp/erc/erc-backend.el
> +++ b/lisp/erc/erc-backend.el
> @@ -115,7 +115,8 @@ erc-server-responses
> (sender "" :type string)
> (command "" :type string)
> (command-args '() :type list)
> - (contents "" :type string))
> + (contents "" :type string)
> + (tags '() :type list))
>
> ;;; User data
>
> @@ -961,10 +962,16 @@ erc-parse-server-response
> PROCs `process-buffer' is `current-buffer' when this function is called."
> (unless (string= string "") ;; Ignore empty strings
> (save-match-data
> - (let ((posn (if (eq (aref string 0) ?:)
> - (string-match " " string)
> - 0))
> - (msg (make-erc-response :unparsed string)))
> + (let* ((tag-list (when (eq (aref string 0) ?@)
> + (split-string
> + (substring string 1 (string-match " " string))
> ";")))
> + (msg (make-erc-response :unparsed string :tags tag-list))
> + (string (if tag-list
> + (substring string (+ 1 (string-match " " string)))
> + string))
> + (posn (if (eq (aref string 0) ?:)
> + (string-match " " string)
> + 0)))
>
> (setf (erc-response.sender msg)
> (if (eq posn 0)
>
> --
> Vibhav Pant
> address@hidden
--
Vibhav Pant
address@hidden
tags.diff
Description: Text document
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [PATCH] Add support for IRCv3 message tags,
Vibhav Pant <=