2020-04-13 13:58:58 +02:00
|
|
|
"""Check updates to Arch Linux.
|
|
|
|
|
|
|
|
Requires the following executable:
|
|
|
|
* checkupdates (from pacman-contrib)
|
|
|
|
|
2020-05-08 20:58:35 +02:00
|
|
|
contributed by `lucassouto <https://github.com/lucassouto>`_ - many thanks!
|
2020-04-13 13:58:58 +02:00
|
|
|
"""
|
2020-05-08 16:09:10 +02:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2020-04-13 14:07:39 +02:00
|
|
|
import core.module
|
|
|
|
import core.widget
|
|
|
|
import core.decorators
|
2020-04-13 13:58:58 +02:00
|
|
|
|
2020-04-13 14:07:39 +02:00
|
|
|
import util.cli
|
2020-04-13 13:58:58 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-04-13 14:07:39 +02:00
|
|
|
class Module(core.module.Module):
|
|
|
|
@core.decorators.every(minutes=60)
|
2020-04-26 16:39:24 +02:00
|
|
|
def __init__(self, config, theme):
|
|
|
|
super().__init__(config, theme, core.widget.Widget(self.utilization))
|
2020-06-03 07:51:44 +02:00
|
|
|
self.background = True
|
2020-04-30 21:13:41 +02:00
|
|
|
self.__packages = 0
|
2020-05-09 10:22:26 +02:00
|
|
|
self.__error = False
|
2020-04-13 13:58:58 +02:00
|
|
|
|
|
|
|
@property
|
2020-04-13 14:07:39 +02:00
|
|
|
def __format(self):
|
2020-05-03 11:15:52 +02:00
|
|
|
return self.parameter("format", "Update Arch: {}")
|
2020-04-13 13:58:58 +02:00
|
|
|
|
|
|
|
def utilization(self, widget):
|
2020-05-09 10:22:26 +02:00
|
|
|
return self.__format.format(self.__packages)
|
2020-04-13 13:58:58 +02:00
|
|
|
|
|
|
|
def hidden(self):
|
2020-05-09 10:22:26 +02:00
|
|
|
return self.__packages == 0 and not self.__error
|
2020-04-13 13:58:58 +02:00
|
|
|
|
2020-04-13 14:07:39 +02:00
|
|
|
def update(self):
|
2020-05-11 15:10:20 +02:00
|
|
|
self.__error = False
|
2020-05-14 20:36:01 +02:00
|
|
|
code, result = util.cli.execute(
|
|
|
|
"checkupdates", ignore_errors=True, return_exitcode=True
|
|
|
|
)
|
2020-05-11 15:10:20 +02:00
|
|
|
|
|
|
|
if code == 0:
|
2020-10-26 01:29:00 +01:00
|
|
|
self.__packages = len(result.strip().split("\n"))
|
2020-05-11 15:10:20 +02:00
|
|
|
elif code == 2:
|
|
|
|
self.__packages = 0
|
|
|
|
else:
|
2020-05-09 10:22:26 +02:00
|
|
|
self.__error = True
|
2020-05-26 08:15:15 +02:00
|
|
|
logging.error("checkupdates exited with {}: {}".format(code, result))
|
2020-04-13 13:58:58 +02:00
|
|
|
|
|
|
|
def state(self, widget):
|
2020-05-09 10:22:26 +02:00
|
|
|
if self.__error:
|
|
|
|
return "warning"
|
2020-04-13 14:07:39 +02:00
|
|
|
return self.threshold_state(self.__packages, 1, 100)
|
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-04-13 14:07:39 +02:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|