client: add AssuanClient.send_fds() and .receive_fds().
[pyassuan.git] / bin / get-info.py
1 #!/usr/bin/env python3
2 #
3 # Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
4 #
5 # This file is part of pyassuan.
6 #
7 # pyassuan is free software: you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation, either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # pyassuan is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # pyassuan.  If not, see <http://www.gnu.org/licenses/>.
18
19 """Simple pinentry program for getting server info.
20 """
21
22 from pyassuan import __version__
23 from pyassuan import client as _client
24 from pyassuan import common as _common
25 from pyassuan import error as _error
26
27
28 if __name__ == '__main__':
29     import argparse
30     import logging
31
32     parser = argparse.ArgumentParser(description=__doc__, version=__version__)
33     parser.add_argument(
34         '-V', '--verbose', action='count', default=0,
35         help='increase verbosity')
36     parser.add_argument(
37         'filename',
38         help="path to server's unix socket")
39
40     args = parser.parse_args()
41
42     client = _client.AssuanClient(name='get-info', close_on_disconnect=True)
43
44     if args.verbose:
45         client.logger.setLevel(max(
46                 logging.DEBUG, client.logger.level - 10*args.verbose))
47
48     client.connect(socket_path=args.filename)
49     try:
50         response = client.read_response()
51         assert response.type == 'OK', response
52         client.make_request(_common.Request('HELP'))
53         client.make_request(_common.Request('HELP GETINFO'))
54         for attribute in ['version', 'pid', 'socket_name', 'ssh_socket_name']:
55             try:
56                 client.make_request(_common.Request('GETINFO', attribute))
57             except _error.AssuanError as e:
58                 if e.message.startswith('No data'):
59                     pass
60                 else:
61                     raise
62     finally:
63         client.make_request(_common.Request('BYE'))
64         client.disconnect()