You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.3 KiB
80 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2011 Adam D. Barratt <adsb@debian.org>
|
|
|
|
# This program 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 2 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.
|
|
|
|
from migrationitem import HintItem
|
|
|
|
class HintCollection:
|
|
def __init__(self):
|
|
self._hints = []
|
|
|
|
def __getitem__(self, type=None):
|
|
return self.hints(type)
|
|
|
|
def hints(self, type=None, onlyactive=True, package=None, \
|
|
version=None, days=None, removal=None):
|
|
|
|
return [ hint for hint in self._hints if
|
|
(type is None or type == hint.type) and
|
|
(onlyactive or hint.active) and
|
|
(package is None or package == hint.packages[0].package) and
|
|
(version is None or version == hint.packages[0].version) and
|
|
(removal is None or removal == hint.packages[0].is_removal)
|
|
]
|
|
|
|
def add_hint(self, hint, user):
|
|
self._hints.append(Hint(hint, user))
|
|
|
|
class Hint:
|
|
def __init__(self, hint, user):
|
|
self._hint = hint
|
|
self._user = user
|
|
self._active = True
|
|
self._days = None
|
|
if isinstance(hint, list):
|
|
self._type = hint[0]
|
|
self._packages = hint[1:]
|
|
else:
|
|
self._type, self._packages = hint.split(' ', 1)
|
|
|
|
if self._type == 'age-days':
|
|
if isinstance(hint, list):
|
|
self._days = self._packages[0]
|
|
self._packages = self._packages[1:]
|
|
else:
|
|
self._days, self._packages = self._packages.split(' ', 1)
|
|
|
|
self._packages = [HintItem(x) for x in self._packages]
|
|
|
|
def set_active(self, active):
|
|
self._active = active
|
|
|
|
def __str__(self):
|
|
return self._hint
|
|
|
|
@property
|
|
def type(self):
|
|
return self._type
|
|
|
|
@property
|
|
def packages(self):
|
|
return self._packages
|
|
|
|
@property
|
|
def active(self):
|
|
return self._active
|
|
|
|
@property
|
|
def user(self):
|
|
return self._user
|