2020-07-12 17:34:25 +02:00
|
|
|
# ContentDB
|
2019-11-21 23:16:35 +01:00
|
|
|
# Copyright (C) 2018 rubenwardy
|
|
|
|
#
|
|
|
|
# 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 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 <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2020-03-22 20:46:46 +01:00
|
|
|
from app.models import Package, db
|
2019-11-21 23:16:35 +01:00
|
|
|
from app.tasks import celery
|
|
|
|
|
|
|
|
@celery.task()
|
|
|
|
def updatePackageScores():
|
2020-07-09 02:26:01 +02:00
|
|
|
Package.query.update({ "score_downloads": Package.score_downloads * 0.95 })
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
for package in Package.query.all():
|
|
|
|
package.recalcScore()
|
|
|
|
|
2020-03-22 20:46:46 +01:00
|
|
|
db.session.commit()
|