Parent: [1c05df] (diff)

Child: [bea16d] (diff)

Download this file

024-migrate-custom-profile-text.py    64 lines (49 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import logging
import re
from pylons import c
from ming.orm import ThreadLocalORMSession
from allura import model as M
from allura.lib import utils
from forgewiki import model as WM
from forgewiki.wiki_main import ForgeWikiApp
log = logging.getLogger(__name__)
default_description = r'^\s*(?:You can edit this description in the admin page)?\s*$'
default_personal_project_tmpl = ("This is the personal project of %s."
" This project is created automatically during user registration"
" as an easy place to store personal data that doesn't need its own"
" project such as cloned repositories.\n\n%s")
def main():
users = M.Neighborhood.query.get(name='Users')
for chunk in utils.chunked_find(M.Project, {'neighborhood_id': users._id}):
for p in chunk:
user = p.user_project_of
if not user:
continue
description = p.description
if description is None or re.match(default_description, description):
continue
app = p.app_instance('wiki')
if app is None:
try:
app = p.install_app('wiki')
except Exception as e:
log.error("Unable to install wiki for user %s: %s" % (user.username, str(e)))
continue
page = WM.Page.query.get(app_config_id=app.config._id, title='Home')
if page is None:
continue
c.app = app
c.project = p
c.user = user
if "This is the personal project of" in page.text:
if description not in page.text:
page.text = "%s\n\n%s" % (page.text, description)
log.info("Update wiki home page text for %s" % user.username)
elif "This is the default page" in page.text:
page.text = default_personal_project_tmpl % (user.display_name, description)
log.info("Update wiki home page text for %s" % user.username)
else:
pass
ThreadLocalORMSession.flush_all()
if __name__ == '__main__':
main()