2022-03-14 17:58:00 +01:00
|
|
|
"""Check updates for AUR.
|
|
|
|
|
2022-03-15 11:26:42 +01:00
|
|
|
Requires the following executable:
|
2022-03-14 20:47:57 +01:00
|
|
|
* yay (https://github.com/Jguer/yay)
|
2022-03-14 17:58:00 +01:00
|
|
|
|
|
|
|
contributed by `ishaanbhimwal <https://github.com/ishaanbhimwal>`_ - many thanks!
|
|
|
|
"""
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import core.module
|
|
|
|
import core.widget
|
|
|
|
import core.decorators
|
|
|
|
|
|
|
|
import util.cli
|
|
|
|
|
|
|
|
|
|
|
|
class Module(core.module.Module):
|
|
|
|
@core.decorators.every(minutes=60)
|
|
|
|
def __init__(self, config, theme):
|
|
|
|
super().__init__(config, theme, core.widget.Widget(self.utilization))
|
|
|
|
self.background = True
|
|
|
|
self.__packages = 0
|
|
|
|
self.__error = False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def __format(self):
|
|
|
|
return self.parameter("format", "Update AUR: {}")
|
|
|
|
|
|
|
|
def utilization(self, widget):
|
|
|
|
return self.__format.format(self.__packages)
|
|
|
|
|
|
|
|
def hidden(self):
|
2023-07-17 12:58:48 +02:00
|
|
|
return self.__packages == 0
|
2022-03-14 17:58:00 +01:00
|
|
|
|
|
|
|
def update(self):
|
|
|
|
self.__error = False
|
|
|
|
code, result = util.cli.execute(
|
|
|
|
"yay -Qum", ignore_errors=True, return_exitcode=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if code == 0:
|
2022-03-14 20:47:57 +01:00
|
|
|
if result == "":
|
|
|
|
self.__packages = 0
|
|
|
|
else:
|
|
|
|
self.__packages = len(result.strip().split("\n"))
|
2022-03-14 17:58:00 +01:00
|
|
|
else:
|
|
|
|
self.__error = True
|
2022-03-14 20:47:57 +01:00
|
|
|
logging.error("aur-update exited with {}: {}".format(code, result))
|
2022-03-14 17:58:00 +01:00
|
|
|
|
|
|
|
def state(self, widget):
|
|
|
|
if self.__error:
|
|
|
|
return "warning"
|
|
|
|
return self.threshold_state(self.__packages, 1, 100)
|
|
|
|
|
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|