Merge commit 'origin/fusionax' into account
[platal.git] / upgrade / account / 99_insertion.sql
1 # Create a type 'X' with all permissions
2 insert into account_types
3 values ('x', 'mail,groups,forums,list,search,portal'),
4 ('xnet', 'groups');
5
6
7 # Insert all existing accounts
8 insert into accounts
9 select u.user_id AS uid, hruid AS hruid, 'x' AS type,
10 perms = 'admin' AS is_admin,
11 IF(perms = 'admin' or perms = 'user', 'active', perms) AS state,
12 IF(LENGTH(password) = 40, password, NULL) AS password,
13 IF(LENGTH(q.core_rss_hash) > 0, q.core_rss_hash, NULL) AS token,
14 IF(LENGTH(smtppass) = 0, NULL, smtppass) AS weak_password,
15 date_ins AS registration_date,
16 IF(FIND_IN_SET('watch', flags), 'watch', '') AS flags,
17 IF(LENGTH(comment) > 0, comment, NULL) AS comment,
18 NULL as email,
19 CONCAT(prenom, ' ', IF (nom_usage != '' and nom_usage IS NOT NULL, nom_usage, nom)) AS full_name,
20 prenom AS display_name,
21 IF(FIND_IN_SET('femme', flags), 'female', 'male') AS sex,
22 IF(q.core_mail_fmt = 'html', 'html', 'text') AS email_format,
23 q.skin AS skin,
24 q.last_version AS last_version
25 from auth_user_md5 as u
26 left join auth_user_quick as q on (q.user_id = u.user_id)
27 where hruid is not null;
28
29 # Insert carnet-relative data
30 insert into watch
31 select user_id as uid, watch_flags as flags, watch_last as last
32 from auth_user_quick;
33
34 # Insert carvas
35 insert into carvas
36 select user_id, redirecturl
37 from auth_user_quick
38 where LENGTH(redirecturl) > 0;
39
40 # Insert all existing profiles
41 insert into profiles
42 select u.user_id AS pid, u.hruid AS hrpid, u.matricule AS xorg_id,
43 u.matricule_ax AS ax_id, u.naissance AS birthdate, u.naissance_ini AS birthdate_ref,
44 IF(u.deces = 0, NULL, u.deces) AS deathdate,
45 IF(FIND_IN_SET('femme', flags), 'female', 'male') AS sex,
46 IF(u.section = 0, NULL, u.section) AS section,
47 IF(LENGTH(u.cv) > 0, u.cv, NULL) AS cv,
48 IF(LENGTH(q.profile_freetext) > 0, q.profile_freetext, NULL) AS freetext,
49 IF(q.profile_freetext_pub = 'public', 'public', 'private') AS freetext_pub,
50 IF(q.profile_medals_pub = 'public', 'public', 'private') AS medals_pub,
51 IF(q.emails_alias_pub = 'public', 'public', 'private') AS alias_pub,
52 u.nationalite AS nationality1, u.nationalite2 AS nationality2,
53 u.nationalite3 AS nationality3, u.date AS last_change
54 from auth_user_md5 AS u
55 left join auth_user_quick AS q ON (u.user_id = q.user_id)
56 where u.hruid is not null;
57
58 # Add associations account <-> profile
59 insert into account_profiles
60 select user_id AS uid, user_id AS pid, 'owner' AS perms
61 from auth_user_md5
62 where hruid is not null;
63
64 # Update banana last_seen timetamp
65 update forum_profiles as fp
66 inner join auth_user_quick as q ON (q.user_id = fp.uid)
67 set fp.uid = fp.uid, fp.tree_unread = fp.tree_unread, fp.tree_read = fp.tree_read,
68 fp.last_seen = q.banana_last;
69
70 insert ignore into forum_profiles (uid, last_seen)
71 select user_id as uid, banana_last as last_seen
72 from auth_user_quick
73 where banana_last >= DATE_SUB(NOW(), INTERVAL 6 MONTH);
74
75 # Mail storage has been moved out of account settings
76 insert into email_options
77 select user_id as uid, mail_storage as storage
78 from auth_user_md5;
79
80 # vim:set syntax=mysql: