# --- Internationalization tasks

I18N_REPORT_DIR = report_dir_path('i18n')
I18N_XUNIT_REPORT = File.join(I18N_REPORT_DIR, 'nosetests.xml')

directory I18N_REPORT_DIR


namespace :i18n do

  desc "Extract localizable strings from sources"
  task :extract => ["i18n:validate:gettext", "assets:coffee"] do
    command = File.join(REPO_ROOT, "i18n", "extract.py")
    if verbose == true
      command += " -vv"
    end
    sh(command)
  end

  desc "Compile localizable strings from sources, extracting strings first."
  task :generate => "i18n:extract" do
    cmd = File.join(REPO_ROOT, "i18n", "generate.py")
    sh("#{cmd}")
  end

  desc "Compile localizable strings from sources, extracting strings first, and complain if files are missing."
  task :generate_strict => "i18n:extract" do
    cmd = File.join(REPO_ROOT, "i18n", "generate.py")
    sh("#{cmd} --strict")
  end

  desc "Simulate international translation by generating dummy strings corresponding to source strings."
  task :dummy => "i18n:extract" do
    sh(File.join(REPO_ROOT, "i18n", "dummy.py"))
  end

  namespace :validate do

    desc "Make sure GNU gettext utilities are available"
    task :gettext do
      begin
        select_executable('xgettext')
      rescue
        msg = "Cannot locate GNU gettext utilities, which are required by django for internationalization.\n"
        msg += "(see https://docs.djangoproject.com/en/dev/topics/i18n/translation/#message-files)\n"
        msg += "Try downloading them from http://www.gnu.org/software/gettext/"
        abort(msg.red)
      end
    end

    desc "Make sure config file with username/password exists"
    task :transifex_config do
      config_file = "#{Dir.home}/.transifexrc"
      if !File.file?(config_file) or File.size(config_file)==0
        msg ="Cannot connect to Transifex, config file is missing or empty: #{config_file}\n"
        msg += "See http://help.transifex.com/features/client/#transifexrc"
        abort(msg.red)
      end
    end
  end

  namespace :transifex do
    desc "Push source strings to Transifex for translation"
    task :push => "i18n:validate:transifex_config" do
      cmd = File.join(REPO_ROOT, "i18n", "transifex.py")
      sh("#{cmd} push")
    end

    desc "Pull translated strings from Transifex"
    task :pull => "i18n:validate:transifex_config" do
      cmd = File.join(REPO_ROOT, "i18n", "transifex.py")
      sh("#{cmd} pull")
    end
  end

  desc "Run tests for the internationalization library"
  task :test => [:install_python_prereqs, I18N_REPORT_DIR, :clean_reports_dir] do
    pythonpath_prefix = "PYTHONPATH=#{REPO_ROOT}/i18n:$PYTHONPATH"
    test_sh("i18n", "#{pythonpath_prefix} nosetests #{REPO_ROOT}/i18n/tests --with-xunit --xunit-file=#{I18N_XUNIT_REPORT}")
  end

  # Commands for automating the process of including translations in edx-platform.
  # Will eventually be run by jenkins.
  namespace :robot do
    desc "Pull source strings, generate po and mo files, and validate"
    task :pull => ["i18n:transifex:pull", "i18n:extract", "i18n:dummy", "i18n:generate_strict"] do
      sh('git clean -fdX conf/locale')
      Rake::Task["i18n:test"].invoke
      sh('git add conf/locale')
      sh('git commit --message="Update translations (autogenerated message)" --edit')
    end

    desc "Extract new strings, and push to transifex"
    task :push => ["i18n:extract", "i18n:transifex:push"]
  end

end


# Add i18n tests to the main test command
task :test => :'i18n:test'