Mercurial > hg
annotate hgext/notify.py @ 28820:9848a6c77a9b
check-code: reject import Queue, suggest util.queue class for py3 compat
author | timeless <timeless@mozdev.org> |
---|---|
date | Wed, 06 Apr 2016 20:08:18 +0000 |
parents | d3c8183f429e |
children | 1bba1b43525a |
rev | line source |
---|---|
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
1 # notify.py - email notifications for mercurial |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
2 # |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
3 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
4 # |
8225
46293a0c7e9f
updated license to be explicit about GPL version 2
Martin Geisler <mg@lazybytes.net>
parents:
8154
diff
changeset
|
5 # This software may be used and distributed according to the terms of the |
10263 | 6 # GNU General Public License version 2 or any later version. |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
7 |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
8 '''hooks for sending email push notifications |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
9 |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
10 This extension implements hooks to send email notifications when |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
11 changesets are sent from or received by the local repository. |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
12 |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
13 First, enable the extension as explained in :hg:`help extensions`, and |
16500
8436a4e21417
doc: fix careless document miss in help of hgext/notify
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
15654
diff
changeset
|
14 register the hook you want to run. ``incoming`` and ``changegroup`` hooks |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
15 are run when changesets are received, while ``outgoing`` hooks are for |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
16 changesets sent to another repository:: |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
17 |
9105
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
18 [hooks] |
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
19 # one email for each incoming changeset |
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
20 incoming.notify = python:hgext.notify.hook |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
21 # one email for all incoming changesets |
9105
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
22 changegroup.notify = python:hgext.notify.hook |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
23 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
24 # one email for all outgoing changesets |
14617
23f4e1e40988
notify: send changesets on 'outgoing' hook, updated doc
Ingo Bressler <dev@ingobressler.net>
parents:
13878
diff
changeset
|
25 outgoing.notify = python:hgext.notify.hook |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
26 |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
27 This registers the hooks. To enable notification, subscribers must |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
28 be assigned to repositories. The ``[usersubs]`` section maps multiple |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
29 repositories to a given recipient. The ``[reposubs]`` section maps |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
30 multiple recipients to a single repository:: |
9157
9261667e9b82
commands: use minirst parser when displaying help
Martin Geisler <mg@lazybytes.net>
parents:
9136
diff
changeset
|
31 |
9105
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
32 [usersubs] |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
33 # key is subscriber email, value is a comma-separated list of repo patterns |
9105
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
34 user@host = pattern |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
35 |
9105
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
36 [reposubs] |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
37 # key is repo pattern, value is a comma-separated list of subscriber emails |
9105
6188f2cc4a37
notify: fix indentation in module docstring
Martin Geisler <mg@lazybytes.net>
parents:
9104
diff
changeset
|
38 pattern = user@host |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
39 |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
40 A ``pattern`` is a ``glob`` matching the absolute path to a repository, |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
41 optionally combined with a revset expression. A revset expression, if |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
42 present, is separated from the glob by a hash. Example:: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
43 |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
44 [reposubs] |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
45 */widgets#branch(release) = qa-team@example.com |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
46 |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
47 This sends to ``qa-team@example.com`` whenever a changeset on the ``release`` |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
48 branch triggers a notification in any repository ending in ``widgets``. |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
49 |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
50 In order to place them under direct user management, ``[usersubs]`` and |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
51 ``[reposubs]`` sections may be placed in a separate ``hgrc`` file and |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
52 incorporated by reference:: |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
53 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
54 [notify] |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
55 config = /path/to/subscriptionsfile |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
56 |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
57 Notifications will not be sent until the ``notify.test`` value is set |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
58 to ``False``; see below. |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
59 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
60 Notifications content can be tweaked with the following configuration entries: |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
61 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
62 notify.test |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
63 If ``True``, print messages to stdout instead of sending them. Default: True. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
64 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
65 notify.sources |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
66 Space-separated list of change sources. Notifications are activated only |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
67 when a changeset's source is in this list. Sources may be: |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
68 |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
69 :``serve``: changesets received via http or ssh |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
70 :``pull``: changesets received via ``hg pull`` |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
71 :``unbundle``: changesets received via ``hg unbundle`` |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
72 :``push``: changesets sent or received via ``hg push`` |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
73 :``bundle``: changesets sent via ``hg unbundle`` |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
74 |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
75 Default: serve. |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
76 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
77 notify.strip |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
78 Number of leading slashes to strip from url paths. By default, notifications |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
79 reference repositories with their absolute path. ``notify.strip`` lets you |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
80 turn them into relative paths. For example, ``notify.strip=3`` will change |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
81 ``/long/path/repository`` into ``repository``. Default: 0. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
82 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
83 notify.domain |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
84 Default email domain for sender or recipients with no explicit domain. |
7127
9df67ee30ef5
help: better documentation intro for a few extensions
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7116
diff
changeset
|
85 |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
86 notify.style |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
87 Style file to use when formatting emails. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
88 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
89 notify.template |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
90 Template to use when formatting emails. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
91 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
92 notify.incoming |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
93 Template to use when run as an incoming hook, overriding ``notify.template``. |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
94 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
95 notify.outgoing |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
96 Template to use when run as an outgoing hook, overriding ``notify.template``. |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
97 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
98 notify.changegroup |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
99 Template to use when running as a changegroup hook, overriding |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
100 ``notify.template``. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
101 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
102 notify.maxdiff |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
103 Maximum number of diff lines to include in notification email. Set to 0 |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
104 to disable the diff, or -1 to include all of it. Default: 300. |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
105 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
106 notify.maxsubject |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
107 Maximum number of characters in email's subject line. Default: 67. |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
108 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
109 notify.diffstat |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
110 Set to True to include a diffstat before diff content. Default: True. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
111 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
112 notify.merge |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
113 If True, send notifications for merge changesets. Default: True. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
114 |
15561
ca572e94d8e7
notify: add option for writing to mbox
Mads Kiilerich <mads@kiilerich.com>
parents:
14940
diff
changeset
|
115 notify.mbox |
ca572e94d8e7
notify: add option for writing to mbox
Mads Kiilerich <mads@kiilerich.com>
parents:
14940
diff
changeset
|
116 If set, append mails to this mbox file instead of sending. Default: None. |
ca572e94d8e7
notify: add option for writing to mbox
Mads Kiilerich <mads@kiilerich.com>
parents:
14940
diff
changeset
|
117 |
15654
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
118 notify.fromauthor |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
119 If set, use the committer of the first changeset in a changegroup for |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
120 the "From" field of the notification mail. If not set, take the user |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
121 from the pushing repo. Default: False. |
15654
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
122 |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
123 If set, the following entries will also be used to customize the |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
124 notifications: |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
125 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
126 email.from |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
127 Email ``From`` address to use if none can be found in the generated |
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
128 email content. |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
129 |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
130 web.baseurl |
16950
0fdd8193c8b5
notify: various fixes to docstring
David Champion <dgc@uchicago.edu>
parents:
16500
diff
changeset
|
131 Root repository URL to combine with repository paths when making |
14940
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
132 references. See also ``notify.strip``. |
d78b92353f26
notify: rewrite user documentation
Patrick Mezard <pmezard@gmail.com>
parents:
14869
diff
changeset
|
133 |
9068
27a41250a9ce
notify: wrapped docstrings at 78 characters
Martin Geisler <mg@lazybytes.net>
parents:
8935
diff
changeset
|
134 ''' |
28416
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
135 from __future__ import absolute_import |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
136 |
28416
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
137 import email |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
138 import fnmatch |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
139 import socket |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
140 import time |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
141 |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
142 from mercurial import ( |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
143 cmdutil, |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
144 error, |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
145 mail, |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
146 patch, |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
147 util, |
d3c8183f429e
notify: use absolute_import
timeless <timeless@mozdev.org>
parents:
26587
diff
changeset
|
148 ) |
3891 | 149 from mercurial.i18n import _ |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
150 |
25186
80c5b2666a96
extensions: document that `testedwith = 'internal'` is special
Augie Fackler <augie@google.com>
parents:
24987
diff
changeset
|
151 # Note for extension authors: ONLY specify testedwith = 'internal' for |
80c5b2666a96
extensions: document that `testedwith = 'internal'` is special
Augie Fackler <augie@google.com>
parents:
24987
diff
changeset
|
152 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should |
80c5b2666a96
extensions: document that `testedwith = 'internal'` is special
Augie Fackler <augie@google.com>
parents:
24987
diff
changeset
|
153 # be specifying the version(s) of Mercurial they are tested with, or |
80c5b2666a96
extensions: document that `testedwith = 'internal'` is special
Augie Fackler <augie@google.com>
parents:
24987
diff
changeset
|
154 # leave the attribute unspecified. |
16743
38caf405d010
hgext: mark all first-party extensions as such
Augie Fackler <raf@durin42.com>
parents:
16683
diff
changeset
|
155 testedwith = 'internal' |
38caf405d010
hgext: mark all first-party extensions as such
Augie Fackler <raf@durin42.com>
parents:
16683
diff
changeset
|
156 |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
157 # template for single changeset can include email headers. |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
158 single_template = ''' |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
159 Subject: changeset in {webroot}: {desc|firstline|strip} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
160 From: {author} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
161 |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
162 changeset {node|short} in {root} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
163 details: {baseurl}{webroot}?cmd=changeset;node={node|short} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
164 description: |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
165 \t{desc|tabindent|strip} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
166 '''.lstrip() |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
167 |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
168 # template for multiple changesets should not contain email headers, |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
169 # because only first set of headers will be used and result will look |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
170 # strange. |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
171 multiple_template = ''' |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
172 changeset {node|short} in {root} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
173 details: {baseurl}{webroot}?cmd=changeset;node={node|short} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
174 summary: {desc|firstline} |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
175 ''' |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
176 |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
177 deftemplates = { |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
178 'changegroup': multiple_template, |
4498
4dfb9f232a63
Fixed indentation in hgext/notify.py
Thomas Arendsen Hein <thomas@intevation.de>
parents:
4479
diff
changeset
|
179 } |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
180 |
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
181 class notifier(object): |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
182 '''email notification class.''' |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
183 |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
184 def __init__(self, ui, repo, hooktype): |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
185 self.ui = ui |
2329
90368f89340a
notify: add debug output. do not fail if no config file.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2326
diff
changeset
|
186 cfg = self.ui.config('notify', 'config') |
90368f89340a
notify: add debug output. do not fail if no config file.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2326
diff
changeset
|
187 if cfg: |
8142
912bfef12ba6
ui: fold readsections into readconfig
Matt Mackall <mpm@selenic.com>
parents:
8029
diff
changeset
|
188 self.ui.readconfig(cfg, sections=['usersubs', 'reposubs']) |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
189 self.repo = repo |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
190 self.stripcount = int(self.ui.config('notify', 'strip', 0)) |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
191 self.root = self.strip(self.repo.root) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
192 self.domain = self.ui.config('notify', 'domain') |
15561
ca572e94d8e7
notify: add option for writing to mbox
Mads Kiilerich <mads@kiilerich.com>
parents:
14940
diff
changeset
|
193 self.mbox = self.ui.config('notify', 'mbox') |
7498
64840fcb79e1
notify: no charset conversion when testing
Christian Ebert <blacktrash@gmx.net>
parents:
7369
diff
changeset
|
194 self.test = self.ui.configbool('notify', 'test', True) |
7116
e981725da3fe
notify: mime-encode messages
Christian Ebert <blacktrash@gmx.net>
parents:
6979
diff
changeset
|
195 self.charsets = mail._charsets(self.ui) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
196 self.subs = self.subscribers() |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
197 self.merge = self.ui.configbool('notify', 'merge', True) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
198 |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
199 mapfile = self.ui.config('notify', 'style') |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
200 template = (self.ui.config('notify', hooktype) or |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
201 self.ui.config('notify', 'template')) |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
202 if not mapfile and not template: |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
203 template = deftemplates.get(hooktype) or single_template |
20667
e96e9f805c19
changeset_templater: remove use_template method
Matt Mackall <mpm@selenic.com>
parents:
19810
diff
changeset
|
204 self.t = cmdutil.changeset_templater(self.ui, self.repo, False, None, |
e96e9f805c19
changeset_templater: remove use_template method
Matt Mackall <mpm@selenic.com>
parents:
19810
diff
changeset
|
205 template, mapfile, False) |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
206 |
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
207 def strip(self, path): |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
208 '''strip leading slashes from local path, turn into web-safe path.''' |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
209 |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
210 path = util.pconvert(path) |
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
211 count = self.stripcount |
2326
d0ba2f6b9d97
notify: fix off by one error.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2296
diff
changeset
|
212 while count > 0: |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
213 c = path.find('/') |
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
214 if c == -1: |
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
215 break |
10282
08a0f04b56bd
many, many trivial check-code fixups
Matt Mackall <mpm@selenic.com>
parents:
10263
diff
changeset
|
216 path = path[c + 1:] |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
217 count -= 1 |
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
218 return path |
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
219 |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
220 def fixmail(self, addr): |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
221 '''try to clean up email addresses.''' |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
222 |
5975
75d9fe70c654
templater: move email function to util
Matt Mackall <mpm@selenic.com>
parents:
4500
diff
changeset
|
223 addr = util.email(addr.strip()) |
4094
fbf0e9acfd83
notify: don't try to fix addresses if notify.domain is not set
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4077
diff
changeset
|
224 if self.domain: |
fbf0e9acfd83
notify: don't try to fix addresses if notify.domain is not set
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4077
diff
changeset
|
225 a = addr.find('@localhost') |
fbf0e9acfd83
notify: don't try to fix addresses if notify.domain is not set
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4077
diff
changeset
|
226 if a != -1: |
fbf0e9acfd83
notify: don't try to fix addresses if notify.domain is not set
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4077
diff
changeset
|
227 addr = addr[:a] |
fbf0e9acfd83
notify: don't try to fix addresses if notify.domain is not set
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4077
diff
changeset
|
228 if '@' not in addr: |
fbf0e9acfd83
notify: don't try to fix addresses if notify.domain is not set
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4077
diff
changeset
|
229 return addr + '@' + self.domain |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
230 return addr |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
231 |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
232 def subscribers(self): |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
233 '''return list of email addresses of subscribers to this repo.''' |
8154
06f1e4e309ed
notify: turned a set-like dict into a real set
Martin Geisler <mg@lazybytes.net>
parents:
8142
diff
changeset
|
234 subs = set() |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
235 for user, pats in self.ui.configitems('usersubs'): |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
236 for pat in pats.split(','): |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
237 if '#' in pat: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
238 pat, revs = pat.split('#', 1) |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
239 else: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
240 revs = None |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
241 if fnmatch.fnmatch(self.repo.root, pat.strip()): |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
242 subs.add((self.fixmail(user), revs)) |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
243 for pat, users in self.ui.configitems('reposubs'): |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
244 if '#' in pat: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
245 pat, revs = pat.split('#', 1) |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
246 else: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
247 revs = None |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
248 if fnmatch.fnmatch(self.repo.root, pat): |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
249 for user in users.split(','): |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
250 subs.add((self.fixmail(user), revs)) |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
251 return [(mail.addressencode(self.ui, s, self.charsets, self.test), r) |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
252 for s, r in sorted(subs)] |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
253 |
9486
dd8d10c36c9c
notify: make it possible to pass extra info into templates
Bryan O'Sullivan <bos@serpentine.com>
parents:
9327
diff
changeset
|
254 def node(self, ctx, **props): |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
255 '''format one changeset, unless it is a suppressed merge.''' |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
256 if not self.merge and len(ctx.parents()) > 1: |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
257 return False |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
258 self.t.show(ctx, changes=ctx.changeset(), |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
259 baseurl=self.ui.config('web', 'baseurl'), |
9486
dd8d10c36c9c
notify: make it possible to pass extra info into templates
Bryan O'Sullivan <bos@serpentine.com>
parents:
9327
diff
changeset
|
260 root=self.repo.root, webroot=self.root, **props) |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
261 return True |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
262 |
2230
332950340788
localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2225
diff
changeset
|
263 def skipsource(self, source): |
332950340788
localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2225
diff
changeset
|
264 '''true if incoming changes from this source should be skipped.''' |
332950340788
localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2225
diff
changeset
|
265 ok_sources = self.ui.config('notify', 'sources', 'serve').split() |
332950340788
localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2225
diff
changeset
|
266 return source not in ok_sources |
332950340788
localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2225
diff
changeset
|
267 |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
268 def send(self, ctx, count, data): |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
269 '''send message.''' |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
270 |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
271 # Select subscribers by revset |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
272 subs = set() |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
273 for sub, spec in self.subs: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
274 if spec is None: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
275 subs.add(sub) |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
276 continue |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
277 revs = self.repo.revs('%r and %d:', spec, ctx.rev()) |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
278 if len(revs): |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
279 subs.add(sub) |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
280 continue |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
281 if len(subs) == 0: |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
282 self.ui.debug('notify: no subscribers to selected repo ' |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
283 'and revset\n') |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
284 return |
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
285 |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
286 p = email.Parser.Parser() |
9313
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
287 try: |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
288 msg = p.parsestr(data) |
25660
328739ea70c3
global: mass rewrite to use modern exception syntax
Gregory Szorc <gregory.szorc@gmail.com>
parents:
25203
diff
changeset
|
289 except email.Errors.MessageParseError as inst: |
26587
56b2bcea2529
error: get Abort from 'error' instead of 'util'
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
26503
diff
changeset
|
290 raise error.Abort(inst) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
291 |
7116
e981725da3fe
notify: mime-encode messages
Christian Ebert <blacktrash@gmx.net>
parents:
6979
diff
changeset
|
292 # store sender and subject |
e981725da3fe
notify: mime-encode messages
Christian Ebert <blacktrash@gmx.net>
parents:
6979
diff
changeset
|
293 sender, subject = msg['From'], msg['Subject'] |
7658
44b3f7bbe2f3
notify: fix neglect of custom headers set via template
Christian Ebert <blacktrash@gmx.net>
parents:
7498
diff
changeset
|
294 del msg['From'], msg['Subject'] |
9313
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
295 |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
296 if not msg.is_multipart(): |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
297 # create fresh mime message from scratch |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
298 # (multipart templates must take care of this themselves) |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
299 headers = msg.items() |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
300 payload = msg.get_payload() |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
301 # for notification prefer readability over data precision |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
302 msg = mail.mimeencode(self.ui, payload, self.charsets, self.test) |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
303 # reinstate custom headers |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
304 for k, v in headers: |
8736b1c853ff
notify: do not mime encode multipart templates
Christian Ebert <blacktrash@gmx.net>
parents:
8935
diff
changeset
|
305 msg[k] = v |
7116
e981725da3fe
notify: mime-encode messages
Christian Ebert <blacktrash@gmx.net>
parents:
6979
diff
changeset
|
306 |
7705
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
307 msg['Date'] = util.datestr(format="%a, %d %b %Y %H:%M:%S %1%2") |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
308 |
7705
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
309 # try to make subject line exist and be useful |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
310 if not subject: |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
311 if count > 1: |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
312 subject = _('%s: %d new changesets') % (self.root, count) |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
313 else: |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
314 s = ctx.description().lstrip().split('\n', 1)[0].rstrip() |
7705
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
315 subject = '%s: %s' % (self.root, s) |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
316 maxsubject = int(self.ui.config('notify', 'maxsubject', 67)) |
13202
d83566f4453b
notify: use util.ellipsis() to truncate long subject
Yuya Nishihara <yuya@tcha.org>
parents:
10282
diff
changeset
|
317 if maxsubject: |
d83566f4453b
notify: use util.ellipsis() to truncate long subject
Yuya Nishihara <yuya@tcha.org>
parents:
10282
diff
changeset
|
318 subject = util.ellipsis(subject, maxsubject) |
7705
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
319 msg['Subject'] = mail.headencode(self.ui, subject, |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
320 self.charsets, self.test) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
321 |
7705
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
322 # try to make message have proper sender |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
323 if not sender: |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
324 sender = self.ui.config('email', 'from') or self.ui.username() |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
325 if '@' not in sender or '@localhost' in sender: |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
326 sender = self.fixmail(sender) |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
327 msg['From'] = mail.addressencode(self.ui, sender, |
c55e68e8f256
notify: remove subfunctions that are called only once
Christian Ebert <blacktrash@gmx.net>
parents:
7658
diff
changeset
|
328 self.charsets, self.test) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
329 |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
330 msg['X-Hg-Notification'] = 'changeset %s' % ctx |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
331 if not msg['Message-Id']: |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
332 msg['Message-Id'] = ('<hg.%s.%s.%s@%s>' % |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
333 (ctx, int(time.time()), |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
334 hash(self.repo.root), socket.getfqdn())) |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
335 msg['To'] = ', '.join(sorted(subs)) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
336 |
9136
31177742f54a
for calls expecting bool args, pass bool instead of int
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9105
diff
changeset
|
337 msgtext = msg.as_string() |
7498
64840fcb79e1
notify: no charset conversion when testing
Christian Ebert <blacktrash@gmx.net>
parents:
7369
diff
changeset
|
338 if self.test: |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
339 self.ui.write(msgtext) |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
340 if not msgtext.endswith('\n'): |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
341 self.ui.write('\n') |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
342 else: |
2329
90368f89340a
notify: add debug output. do not fail if no config file.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2326
diff
changeset
|
343 self.ui.status(_('notify: sending %d subscribers %d changes\n') % |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
344 (len(subs), count)) |
5975
75d9fe70c654
templater: move email function to util
Matt Mackall <mpm@selenic.com>
parents:
4500
diff
changeset
|
345 mail.sendmail(self.ui, util.email(msg['From']), |
17754
19e9bf7c0927
notify: support revset selection for subscriptions
Michal Sznajder <michalsznajder@gmail.com>
parents:
16951
diff
changeset
|
346 subs, msgtext, mbox=self.mbox) |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
347 |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
348 def diff(self, ctx, ref=None): |
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
349 |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
350 maxdiff = int(self.ui.config('notify', 'maxdiff', 300)) |
13878
a8d13ee0ce68
misc: replace .parents()[0] with p1()
Matt Mackall <mpm@selenic.com>
parents:
13202
diff
changeset
|
351 prev = ctx.p1().node() |
24306
6ddc86eedc3b
style: kill ersatz if-else ternary operators
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
23454
diff
changeset
|
352 if ref: |
6ddc86eedc3b
style: kill ersatz if-else ternary operators
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
23454
diff
changeset
|
353 ref = ref.node() |
6ddc86eedc3b
style: kill ersatz if-else ternary operators
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
23454
diff
changeset
|
354 else: |
6ddc86eedc3b
style: kill ersatz if-else ternary operators
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
23454
diff
changeset
|
355 ref = ctx.node() |
23454
317ccfbd1a84
notify: explicitly honor all diffopts
Siddharth Agarwal <sid0@fb.com>
parents:
20667
diff
changeset
|
356 chunks = patch.diff(self.repo, prev, ref, |
317ccfbd1a84
notify: explicitly honor all diffopts
Siddharth Agarwal <sid0@fb.com>
parents:
20667
diff
changeset
|
357 opts=patch.diffallopts(self.ui)) |
7308
b6f5490effbf
patch: turn patch.diff() into a generator
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7127
diff
changeset
|
358 difflines = ''.join(chunks).splitlines() |
6979 | 359 |
3096
f422c8265ae5
Add support for diffstat in commit emails, and move diffstat from
Matt Doar <matt@xensource.com>
parents:
3017
diff
changeset
|
360 if self.ui.configbool('notify', 'diffstat', True): |
f422c8265ae5
Add support for diffstat in commit emails, and move diffstat from
Matt Doar <matt@xensource.com>
parents:
3017
diff
changeset
|
361 s = patch.diffstat(difflines) |
4077
1305ba7dee88
Prevent type exception on concatenation if diffstat returns None.
Sean Dague <sean@dague.net>
parents:
3739
diff
changeset
|
362 # s may be nil, don't include the header if it is |
1305ba7dee88
Prevent type exception on concatenation if diffstat returns None.
Sean Dague <sean@dague.net>
parents:
3739
diff
changeset
|
363 if s: |
1305ba7dee88
Prevent type exception on concatenation if diffstat returns None.
Sean Dague <sean@dague.net>
parents:
3739
diff
changeset
|
364 self.ui.write('\ndiffstat:\n\n%s' % s) |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
365 |
6305
e8d447d91cdb
notify: print diffstat even if maxline == 0
Benoît Allard <benoit@aeteurope.nl>
parents:
6229
diff
changeset
|
366 if maxdiff == 0: |
e8d447d91cdb
notify: print diffstat even if maxline == 0
Benoît Allard <benoit@aeteurope.nl>
parents:
6229
diff
changeset
|
367 return |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
368 elif maxdiff > 0 and len(difflines) > maxdiff: |
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
369 msg = _('\ndiffs (truncated from %d to %d lines):\n\n') |
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
370 self.ui.write(msg % (len(difflines), maxdiff)) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
371 difflines = difflines[:maxdiff] |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
372 elif difflines: |
3739
16f8e7d1dd54
fix notify with new ui buffering
Matt Mackall <mpm@selenic.com>
parents:
3679
diff
changeset
|
373 self.ui.write(_('\ndiffs (%d lines):\n\n') % len(difflines)) |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
374 |
6979 | 375 self.ui.write("\n".join(difflines)) |
2201
f15056b29472
patch queue: notify.patch
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
376 |
2230
332950340788
localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2225
diff
changeset
|
377 def hook(ui, repo, hooktype, node=None, source=None, **kwargs): |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
378 '''send email notifications to interested subscribers. |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
379 |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
380 if used as changegroup hook, send one email for all changesets in |
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
381 changegroup. else send one email per changeset.''' |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
382 |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
383 n = notifier(ui, repo, hooktype) |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
384 ctx = repo[node] |
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
385 |
2329
90368f89340a
notify: add debug output. do not fail if no config file.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2326
diff
changeset
|
386 if not n.subs: |
9467
4c041f1ee1b4
do not attempt to translate ui.debug output
Martin Geisler <mg@lazybytes.net>
parents:
9327
diff
changeset
|
387 ui.debug('notify: no subscribers to repository %s\n' % n.root) |
2329
90368f89340a
notify: add debug output. do not fail if no config file.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2326
diff
changeset
|
388 return |
90368f89340a
notify: add debug output. do not fail if no config file.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2326
diff
changeset
|
389 if n.skipsource(source): |
9467
4c041f1ee1b4
do not attempt to translate ui.debug output
Martin Geisler <mg@lazybytes.net>
parents:
9327
diff
changeset
|
390 ui.debug('notify: changes have source "%s" - skipping\n' % source) |
2230
332950340788
localrepository.addchangegroup: add more source infos to hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2225
diff
changeset
|
391 return |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
392 |
3739
16f8e7d1dd54
fix notify with new ui buffering
Matt Mackall <mpm@selenic.com>
parents:
3679
diff
changeset
|
393 ui.pushbuffer() |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
394 data = '' |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
395 count = 0 |
15654
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
396 author = '' |
14617
23f4e1e40988
notify: send changesets on 'outgoing' hook, updated doc
Ingo Bressler <dev@ingobressler.net>
parents:
13878
diff
changeset
|
397 if hooktype == 'changegroup' or hooktype == 'outgoing': |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
398 start, end = ctx.rev(), len(repo) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
399 for rev in xrange(start, end): |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
400 if n.node(repo[rev]): |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
401 count += 1 |
15654
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
402 if not author: |
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
403 author = repo[rev].user() |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
404 else: |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
405 data += ui.popbuffer() |
16683 | 406 ui.note(_('notify: suppressing notification for merge %d:%s\n') |
407 % (rev, repo[rev].hex()[:12])) | |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
408 ui.pushbuffer() |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
409 if count: |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
410 n.diff(ctx, repo['tip']) |
2203
9569eea1707c
add email notification hook. hook written in python.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2201
diff
changeset
|
411 else: |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
412 if not n.node(ctx): |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
413 ui.popbuffer() |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
414 ui.note(_('notify: suppressing notification for merge %d:%s\n') % |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
415 (ctx.rev(), ctx.hex()[:12])) |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
416 return |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
417 count += 1 |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
418 n.diff(ctx) |
26503
5a84a453b503
notify: fix fromauthor setting for 'incoming' hook type (issue4194)
Bruce Cran <bruce.cran@gmail.com>
parents:
25660
diff
changeset
|
419 if not author: |
5a84a453b503
notify: fix fromauthor setting for 'incoming' hook type (issue4194)
Bruce Cran <bruce.cran@gmail.com>
parents:
25660
diff
changeset
|
420 author = ctx.user() |
7726
2486980fe211
notify: use contexts more pervasively
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7705
diff
changeset
|
421 |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
422 data += ui.popbuffer() |
15654
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
423 fromauthor = ui.config('notify', 'fromauthor') |
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
424 if author and fromauthor: |
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
425 data = '\n'.join(['From: %s' % author, data]) |
2a7fa7c641d8
notify: change behavior of "changegroup" hook
Nikolaus Schueler <nikolaus.schueler@lantiq.com>
parents:
15561
diff
changeset
|
426 |
9516
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
427 if count: |
f8048c334066
notify: permit suppression of merge changeset notification
David Champion <dgc@uchicago.edu>
parents:
9487
diff
changeset
|
428 n.send(ctx, count, data) |