]> nos-oignons.net Git - gestion-adh.git/blob - lib/nos_oignons/mailman.rb
352b9689bbf258071b386866280d3afb945d05e9
[gestion-adh.git] / lib / nos_oignons / mailman.rb
1 #-*- coding: utf-8 -*-
2 #
3 # Système de gestion des adhésions de Nos oignons
4 # Copyright © 2013-2014 Nos oignons <contact@nos-oignons.net>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as
8 # published by the Free Software Foundation, either version 3 of the
9 # License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 require 'shellwords'
20
21 module NosOignons
22   module Mailman
23     class << self
24       def list_members(list)
25         `sudo -u list list_members #{Shellwords.escape(list)}`.strip.split
26       end
27
28       def add_member(list, email)
29         add_members(list, [email])
30       end
31
32       def add_members(list, emails)
33         IO.popen(['sudo', '-u', 'list', 'add_members', '-r', '-', list], 'w') do |io|
34           emails.each do |email|
35             io.puts email
36           end
37         end
38       end
39
40       def remove_member(list, email)
41         remove_members(list, [email])
42       end
43
44       def remove_members(list, emails)
45         IO.popen(['sudo', '-u', 'list', 'remove_members', '-f', '-', list], 'w') do |io|
46           emails.each do |email|
47             io.puts email
48           end
49         end
50       end
51     end
52   end
53 end