Sha256: 8df0a1ef755cb0d48c66eabfab903196e0e9daa9fc18a2476cc6bb96823602aa

Contents?: true

Size: 1.72 KB

Versions: 9

Compression:

Stored size: 1.72 KB

Contents

module Wordmove
  class SqlAdapter
    attr_accessor :sql_content
    attr_reader :sql_path, :source_config, :dest_config

    def initialize(sql_path, source_config, dest_config)
      @sql_path = sql_path
      @source_config = source_config
      @dest_config = dest_config
    end

    def sql_content
      @sql_content ||= File.open(sql_path).read
    end

    def adapt!
      replace_vhost!
      replace_wordpress_path!
      write_sql!
    end

    def replace_vhost!
      source_vhost = source_config[:vhost]
      dest_vhost = dest_config[:vhost]
      replace_field!(source_vhost, dest_vhost)
    end

    def replace_wordpress_path!
      source_path = source_config[:wordpress_absolute_path] || source_config[:wordpress_path]
      dest_path = dest_config[:wordpress_absolute_path] || dest_config[:wordpress_path]
      replace_field!(source_path, dest_path)
    end

    def replace_field!(source_field, dest_field)
      if source_field && dest_field
        serialized_replace!(source_field, dest_field)
        simple_replace!(source_field, dest_field)
      end
    end

    def serialized_replace!(source_field, dest_field)
      length_delta = source_field.length - dest_field.length

      sql_content.gsub!(/s:(\d+):([\\]*['"])(.*?)\2;/) do |match|
        length = $1.to_i
        delimiter = $2
        string = $3

        string.gsub!(/#{Regexp.escape(source_field)}/) do |match|
          length -= length_delta
          dest_field
        end

        %(s:#{length}:#{delimiter}#{string}#{delimiter};)
      end
    end

    def simple_replace!(source_field, dest_field)
      sql_content.gsub!(source_field, dest_field)
    end

    def write_sql!
      File.open(sql_path, 'w') {|f| f.write(sql_content) }
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
wordmove-1.4.0.pre4 lib/wordmove/sql_adapter.rb
wordmove-1.4.0.pre3 lib/wordmove/sql_adapter.rb
wordmove-1.4.0.pre2 lib/wordmove/sql_adapter.rb
wordmove-1.4.0.pre lib/wordmove/sql_adapter.rb
wordmove-1.3.0 lib/wordmove/sql_adapter.rb
wordmove-1.3.0.pre2 lib/wordmove/sql_adapter.rb
wordmove-1.3.0.pre lib/wordmove/sql_adapter.rb
wordmove-1.2.0 lib/wordmove/sql_adapter.rb
wordmove-1.1.0 lib/wordmove/sql_adapter.rb