2023-01-12 01:04:47 +00:00
|
|
|
#
|
|
|
|
# This file is part of SickGear.
|
|
|
|
#
|
|
|
|
# SickGear 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.
|
|
|
|
#
|
|
|
|
# SickGear 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 SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import sickgear
|
2023-03-16 04:19:03 +00:00
|
|
|
from .scheduler import Job
|
2023-01-12 01:04:47 +00:00
|
|
|
|
|
|
|
|
2023-03-16 04:19:03 +00:00
|
|
|
class RecentSearcher(Job):
|
2023-01-12 01:04:47 +00:00
|
|
|
def __init__(self):
|
2023-03-16 04:19:03 +00:00
|
|
|
super(RecentSearcher, self).__init__(self.job_run, kwargs={}, thread_lock=True)
|
2023-01-12 01:04:47 +00:00
|
|
|
|
2023-03-16 04:19:03 +00:00
|
|
|
def job_run(self):
|
2023-01-12 01:04:47 +00:00
|
|
|
|
|
|
|
recentsearch_queue_item = sickgear.search_queue.RecentSearchQueueItem()
|
|
|
|
sickgear.search_queue_scheduler.action.add_item(recentsearch_queue_item)
|