mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-16 03:41:11 +01:00
142 lines
5 KiB
Python
142 lines
5 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# blacklist.py file is part of slpkg.
|
|
|
|
# Copyright 2014-2015 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
|
# All rights reserved.
|
|
|
|
# Slpkg is a user-friendly package manager for Slackware installations
|
|
|
|
# https://github.com/dslackw/slpkg
|
|
|
|
# Slpkg is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
from utils import Utils
|
|
from splitting import split_package
|
|
from __metadata__ import MetaData as _meta_
|
|
|
|
|
|
class BlackList(object):
|
|
"""Blacklist class to add, remove or listed packages
|
|
in blacklist file."""
|
|
def __init__(self):
|
|
self.meta = _meta_
|
|
self.quit = False
|
|
self.blackfile = "/etc/slpkg/blacklist"
|
|
self.black_conf = Utils().read_file(self.blackfile)
|
|
|
|
def get_black(self):
|
|
"""Return blacklist packages from /etc/slpkg/blacklist
|
|
configuration file."""
|
|
blacklist = []
|
|
for read in self.black_conf.splitlines():
|
|
read = read.lstrip()
|
|
if not read.startswith("#"):
|
|
blacklist.append(read.replace("\n", ""))
|
|
return blacklist
|
|
|
|
def listed(self):
|
|
"""Print blacklist packages
|
|
"""
|
|
print("\nPackages in blacklist:\n")
|
|
for black in self.get_black():
|
|
if black:
|
|
print("{0}{1}{2}".format(self.meta.color["GREEN"], black,
|
|
self.meta.color["ENDC"]))
|
|
self.quit = True
|
|
if self.quit:
|
|
print("") # new line at exit
|
|
|
|
def add(self, pkgs):
|
|
"""Add blacklist packages if not exist
|
|
"""
|
|
blacklist = self.get_black()
|
|
pkgs = set(pkgs)
|
|
print("\nAdd packages in blacklist:\n")
|
|
with open(self.blackfile, "a") as black_conf:
|
|
for pkg in pkgs:
|
|
if pkg not in blacklist:
|
|
print("{0}{1}{2}".format(self.meta.color["GREEN"], pkg,
|
|
self.meta.color["ENDC"]))
|
|
black_conf.write(pkg + "\n")
|
|
self.quit = True
|
|
black_conf.close()
|
|
if self.quit:
|
|
print("") # new line at exit
|
|
|
|
def remove(self, pkgs):
|
|
"""Remove packages from blacklist
|
|
"""
|
|
print("\nRemove packages from blacklist:\n")
|
|
with open(self.blackfile, "w") as remove:
|
|
for line in self.black_conf.splitlines():
|
|
if line not in pkgs:
|
|
remove.write(line + "\n")
|
|
else:
|
|
print("{0}{1}{2}".format(self.meta.color["RED"], line,
|
|
self.meta.color["ENDC"]))
|
|
self.quit = True
|
|
remove.close()
|
|
if self.quit:
|
|
print("") # new line at exit
|
|
|
|
def packages(self, pkgs, repo):
|
|
"""Return packages in blacklist or by repository
|
|
"""
|
|
self.black = []
|
|
for bl in self.get_black():
|
|
pr = bl.split(":")
|
|
for pkg in pkgs:
|
|
self.__priority(pr, repo, pkg)
|
|
self.__blackpkg(bl, repo, pkg)
|
|
return self.black
|
|
|
|
def __add(self, repo, pkg):
|
|
"""Split packages by repository
|
|
"""
|
|
if repo == "sbo":
|
|
return pkg
|
|
else:
|
|
return split_package(pkg)[0]
|
|
|
|
def __priority(self, pr, repo, pkg):
|
|
"""Add packages in blacklist by priority
|
|
"""
|
|
if (pr[0] == repo and pr[1].startswith("*") and
|
|
pr[1].endswith("*")):
|
|
if pr[1][1:-1] in pkg:
|
|
self.black.append(self.__add(repo, pkg))
|
|
elif pr[0] == repo and pr[1].endswith("*"):
|
|
if pkg.startswith(pr[1][:-1]):
|
|
self.black.append(self.__add(repo, pkg))
|
|
elif pr[0] == repo and pr[1].startswith("*"):
|
|
if pkg.endswith(pr[1][1:]):
|
|
self.black.append(self.__add(repo, pkg))
|
|
elif pr[0] == repo and "*" not in pr[1]:
|
|
self.black.append(self.__add(repo, pkg))
|
|
|
|
def __blackpkg(self, bl, repo, pkg):
|
|
"""Add packages in blacklist
|
|
"""
|
|
if bl.startswith("*") and bl.endswith("*"):
|
|
if bl[1:-1] in pkg:
|
|
self.black.append(self.__add(repo, pkg))
|
|
elif bl.endswith("*"):
|
|
if pkg.startswith(bl[:-1]):
|
|
self.black.append(self.__add(repo, pkg))
|
|
elif bl.startswith("*"):
|
|
if pkg.endswith(bl[1:]):
|
|
self.black.append(self.__add(repo, pkg))
|
|
if bl not in self.black and "*" not in bl:
|
|
self.black.append(bl)
|