Migrate a vBulletin 4 forum to Discourse

Hi. Just want to share my solution.
As for the problems with quotes. As I said before, i’m was facing with problems - regexp not capture quotes then:

  • username and post id may be enclosed in double quotes
  • nested quotes

I decided to do a search and replace using a different logic. Instead of searching for tags and their contents, I used a regular expression that searches only for tags:

was:
raw.gsub!(%r{\[quote="?([^;]+);(\d+)"?\](.+?)\[\/quote\]}im) do

became:
raw.gsub!(%r{(\[QUOTE(="?([^;]+);(\d+)"?)?\])|(\[\/QUOTE\])}im) do

and then little change the determining the source of a quote:

      if $3 && $4
        if topic_lookup = topic_lookup_from_imported_post_id(post_id)
          post_number = topic_lookup[:post_number]
          topic_id = topic_lookup[:topic_id]
          "\n[quote=\"#{new_username},post:#{post_number},topic:#{topic_id}\"]\n"
        else
          "\n[quote=\"#{new_username}\"]\n"
        end
      elsif $5
        "\n[/quote]\n"        
      end

Also, I change the spoiler’s code. Instead of:

    # [spoiler=Some hidden stuff]SPOILER HERE!![/spoiler]
    raw.gsub!(%r{\[spoiler="?(.+?)"?\](.+?)\[/spoiler\]}im) do
      "\n#{$1}\n[spoiler]#{$2}[/spoiler]\n"
    end

that blured text, I convert it to details tag:

    raw.gsub!(%r{(\[spoiler(="?(.*?)"?)?\])|(\[\/spoiler\])}im) do
      if $3
        "\n[details=#{$3}]\n"
      elsif $1
        "\n[details]\n"
      elsif $4
        "\n[/details]\n"
      end
    end

Because it just so happens that in the vbulletin world - sploiler it is not the blurred content, but rather the collapsed content. So I think it is much more appropriate for the vbulletin import script to convert spoilers to details instead of the blurred spoiler.

I also noticed the mention tag. In my case, in vbulletin, the mentions looked like this:
[mention=XXX]username[/mention]

The regular expression used in the script does not take into account that the tag may contain the user id.

    # [MENTION]<username>[/MENTION]
    raw.gsub!(%r{\[mention\](.+?)\[/mention\]}i) do
      new_username = get_username_for_old_username($1)
      "@#{new_username}"
    end

I fixed this in my own way too:

    # [MENTION]<username>[/MENTION]
    raw.gsub!(%r{\[mention(=\d+)?\](.+?)\[/mention\]}i) do
      new_username = get_username_for_old_username($2)
      "@#{new_username}"
    end
1 Like

This is not true when I started migrating my 24 year old vBulletin forum running vB 3. There were multiple incompatibilities and other issues with the script. However, I put in a lot of effort in creating an importer for vBulletin 3 based on the the script for vB4.

The improved script is included with Discourse, it is called vbulletin3.rb. Usage of the vB3 import script is the same as described in this how-to. Just execute bundle exec ruby script/import_scripts/vbulletin3.rb instead.

The vBulletin3 has some significant changes/improvements:

  1. Forum permissions are copied
  2. Forum moderator groups are created
  3. Joinable user groups are created with proper configuration
  4. Forum nesting in imported up to 3 levels deep (maximum of Discourse)
  5. Permalinks are registered for all threads and posts, preventing link rot
  6. Some basic forum settings are copied over (e.g. title, notification email, company name)
  7. Polls are imported
  8. Major improvements to the bbcode → markdown conversion
  9. URL deep links to threads, post, attachments are converted to discourse references, this requires setting the environment variable FORUM_URL to forum.hostname/path (no protocol).

Instead of trying to convert vBulletin private messages to Discourse private messages users will instead receive a system private message containing an archive of the private messages they had. vBulletin’s PM construction is not really compatible with Discourse. Trying to convert it would also expose some privacy depending how people used PMs in vBulletin.

As it is probably also the case with other importers, it can take quite a bit of time to convert. The conversion script took 5.5 hours on my workstation for 7k users, 16k threads, 415k posts. I have no idea how much time it took for the post processing, I let that run over night. From start to end the forum was down for 30 hours. In the end I’m happy with the result.

2 Likes

Now that’s a throwback :slight_smile:

Your forum looks very nice. I like the alternating colors on the topic rows.