Licenses: Updated the list of licenses and added a PDF containing all license texts
[check_mk.git] / inventory / win_reg_uninstall
blob56d073b6653c5ebc7e0650dbb7728d30b47ee0ab
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2013 mk@mathias-kettner.de |
11 # +------------------------------------------------------------------+
13 # This file is part of Check_MK.
14 # The official homepage is at http://mathias-kettner.de/check_mk.
16 # check_mk is free software; you can redistribute it and/or modify it
17 # under the terms of the GNU General Public License as published by
18 # the Free Software Foundation in version 2. check_mk is distributed
19 # in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
20 # out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
21 # PARTICULAR PURPOSE. See the GNU General Public License for more de-
22 # tails. You should have received a copy of the GNU General Public
23 # License along with GNU Make; see the file COPYING. If not, write
24 # to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
25 # Boston, MA 02110-1301 USA.
27 # agent output
28 # <<<win_reg_uninstall:sep(124)>>>
29 # ...
32 def inv_win_reg_uninstall(info):
33 paclist = inv_tree_list("software.packages:")
34 for line in info:
35 if len(line) == 7:
36 display_name, publisher, path, pacname, version, estimated_size, date = line
37 language = ""
38 elif len(line) == 8:
39 display_name, publisher, path, pacname, version, estimated_size, date, language = line
40 else:
41 continue
43 install_date = None
44 if re.match(r"^20\d{6}", date):
45 # Dates look like '20160930', but we saw also dates like '20132804'
46 # which have transposed month and day fields.
47 try:
48 install_date = int(time.mktime(time.strptime(date, "%Y%m%d")))
49 except ValueError:
50 try:
51 install_date = int(time.mktime(time.strptime(date, "%Y%d%m")))
52 except ValueError:
53 pass
55 size = saveint(estimated_size)
56 if size == 0:
57 size = None
58 if pacname.startswith("{"):
59 pacname = display_name
60 if pacname == "":
61 continue
63 entry = {
64 "name": pacname,
65 "version": version,
66 "vendor": publisher,
67 "summary": display_name,
68 "install_date": install_date,
69 "size": size,
70 "path": path,
71 "language": language,
72 "package_type": "registry",
74 paclist.append(entry)
77 inv_info['win_reg_uninstall'] = {
78 "inv_function": inv_win_reg_uninstall,