|
|
(79 révisions intermédiaires par 4 utilisateurs non affichées) |
Ligne 1 : |
Ligne 1 : |
| == Objectif == | | == Objectif == |
| * Basculer le forum vers phpbb 3.2 | | * Basculer le forum vers phpbb 3.2 |
| + | * Ancien forum (à peu près) : https://github.com/Conardo/wefrag |
| | | |
− | == Procédure == | + | == Architecture applicative == |
− | === Analyse ===
| + | * phpbb 3.2 |
− | * Récupérer [http://nofrag.com/temporary/dumpforum.sql le dump du forum].
| + | * Plug-in de tribune : https://www.phpbb.com/customise/db/extension/ajax_shoutbox/ |
− | * Installer un xampp ou équivalent | |
− | * Installer phpbb sur son poste
| |
− | * Utiliser DBeaver ou tout autre autre outil équivalent pour comparer les tables phpbb avec celles du forum (travail manuel)
| |
− | === Transposition ===
| |
− | * Définir l'ordre de traitement des tables
| |
− | * Produire une procédure par table
| |
− | | |
− | == Liste des tables ==
| |
− | === Table phpbb_users ===
| |
− | * user_id (int(10) unsigned) => wefrag_users.id(int(11))
| |
− | * user_type(tinyint(2)) => '''????'''
| |
− | * group_id(mediumint(8) unsigned) => phpbb_groups.group_id | |
− | * user_permission(mediumtext) => ''vide''
| |
− | * user_perm_from(mediumint(8) unsigned) => 0
| |
− | * user_ip(varchar(40)) => ''vide''
| |
− | * user_regdate(int(11) unsigned) => ''vide''
| |
− | * username(varchar(255)) => wefrag_users.login(varchar(255))
| |
− | * username_clean(varchar(255)) => wefrag_users.login(varchar(255))
| |
− | * user_password(varchar(255)) => wefrag_users.crypted_password(varchar(40))
| |
− | Phpbb :[https://wiki.phpbb.com/Function.phpbb_check_hash techno proprio]?
| |
− | Wefrag : [https://github.com/Conardo/wefrag/blob/master/app/models/user.rb sha1 ? voir ligne 220]
| |
− | * user_passch (int(11) unsigned) => '''wefrag_user_password_resets.?'''
| |
− | ''pas forcément nécessaire''
| |
− | * user_email(varchar(100)) => wefrag_users.email(varchar(255))
| |
− | vérifier longueur max en table
| |
− | * user_email_hash(bigint(20)) =>
| |
− | d'après [https://www.phpbb.com/community/viewtopic.php?f=71&t=570125 ce lien] : crc32(strtolower($user_email)) . strlen($user_email),
| |
− | '''à tester'''
| |
− | * user_birthday(varchar(10)) => wefrag_users.birthdate(date)
| |
− | * user_lastvisit(int(11) unsigned) => 0
| |
− | * user_lastmark(int(11) unsigned) => 0
| |
− | * user_lastpost_time(int(11) unsigned) =>
| |
− | Récupérer la date du dernier post.
| |
− | * user_lastpage(varchar(200)) => ''vide''
| |
− | * user_last_confirm_key(varchar(10)) => ''vide''
| |
− | * user_last_search(int(11) unsigned) => ''0''
| |
− | * user_warnings(tinyint(4)) => ''0''
| |
− | * user_last_warning(int(11) unsigned) => ''0''
| |
− | * user_login_attempts(tinyint(4)) => ''0''
| |
− | * user_inactive_reason(tinyint(2)) => ''0''
| |
− | * user_inactive_time(int(11) unsigned) => ''0''
| |
− | * user_posts(mediumint(8) unsigned) =>
| |
− | Alimenter le nombre de posts
| |
− | * user_lang(varchar(30)) => ''fr''
| |
− | * user_timezone(varchar(100)) => ''vide''
| |
− | * user_dateformat(varchar(64)) => ''D j M Y H:i''
| |
− | * user_style(mediumint(8) unsigned) => ''0''
| |
− | * user_rank(mediumint(8) unsigned) => ''0''
| |
− | * user_colour(varchar(6)) => ''vide''
| |
− | * user_new_privmsg(int(4)) => ''0''
| |
− | * user_unread_privmsg(int(4)) => ''0''
| |
− | * user_last_privmsg(int(11) unsigned) => ''0''
| |
− | * user_message_rules(tinyint(1) unsigned)=> ''0''
| |
− | * user_full_folder(int(11))=> ''-3''
| |
− | * user_emailtime(int(11) unsigned)=> ''0''
| |
− | * user_topic_show_days(smallint(4) unsigned) => ''0''
| |
− | * user_topic_sortby_type(varchar(1)) => '''t'''
| |
− | * user_topic_sortby_dir (varchar(1)) => '''d'''
| |
− | * user_post_show_days (smallint(4) unsigned) => ''0''
| |
− | * user_post_sortby_type(varchar(1)) => '''t'''
| |
− | * user_post_sortby_dir (varchar(1)) => '''a'''
| |
− | * user_notify (tinyint(1) unsigned) => ''0''
| |
− | * user_notify_pm (tinyint(1) unsigned) => ''1''
| |
− | * user_notify_type (tinyint(4))=> ''0''
| |
− | * user_allow_pm(tinyint(1) unsigned) => ''1''
| |
− | * user_allow_viewonline(tinyint(1) unsigned) => ''1''
| |
− | * user_allow_viewemail(tinyint(1) unsigned) => ''1''
| |
− | * user_allow_massemail(tinyint(1) unsigned) => ''1''
| |
− | * user_options( int(11) UNSIGNED) => ''230271''
| |
− | * user_avatar (varchar(255)) => ''vide''
| |
− | * user_avatar_type (varchar(255)) => ''vide''
| |
− | * user_avatar_width (smallint(4) unsigned) => ''0''
| |
− | * user_avatar_height (smallint(4) unsigned) => ''0''
| |
− | * user_sig (mediumtext) => ''vide''
| |
− | * user_sig_bbcode_uid (varchar(8)) => ''vide''
| |
− | * user_sig_bbcode_bitfield (varchar(255)) => ''vide''
| |
− | * user_jabber (varchar(255)) => ''vide''
| |
− | * user_actkey (varchar(32)) => ''vide''
| |
− | * user_newpasswd (varchar(255)) => ''vide''
| |
− | * user_form_salt (varchar(32)) => ''????''
| |
− | * user_new (tinyint(1)) => ''1''
| |
− | * user_reminded (tinyint(4)) => ''0''
| |
− | * user_reminded_time (int(11) UNSIGNED) => ''0''
| |
− | | |
− | === phpbb_forums ===
| |
− | === phpbb_topics ===
| |
− | === phpbb_posts ===
| |
− | === phpbb_groups ===
| |
− | === phpbb_user_group ===
| |
− | === phpbb_topics_posted ===
| |
− | === phpbb_forums_track ===
| |