cubicweb/misc/migration/3.15.4_Any.py
author Philippe Pepiot <philippe.pepiot@logilab.fr>
Thu, 05 Mar 2020 09:54:49 +0100
branch3.27
changeset 12899 af59ca8b23d0
parent 11057 0b59724cb3f2
permissions -rw-r--r--
Added tag 3.27.2, debian/3.27.2-1 for changeset e731c31eaed0

from __future__ import print_function

from logilab.common.shellutils import generate_password
from cubicweb.server.utils import crypt_password

for user in rql('CWUser U WHERE U cw_source S, S name "system", U upassword P, U login L').entities():
    salt = user.upassword.getvalue()
    if crypt_password('', salt) == salt:
        passwd = generate_password()
        print('setting random password for user %s' % user.login)
        user.set_attributes(upassword=passwd)

commit()