2014-07-08 20:02:08 +00:00
|
|
|
def language_string language_code
|
|
|
|
language_hash = {
|
|
|
|
en: "English",
|
|
|
|
de: "German",
|
|
|
|
he: "Hebrew",
|
|
|
|
cs: "Czech",
|
|
|
|
it: "Italian",
|
|
|
|
mk: "Macedonian",
|
|
|
|
ru: "Russian",
|
|
|
|
fa: "Persian",
|
|
|
|
fr: "French",
|
|
|
|
ia: "Interlingua",
|
|
|
|
}
|
|
|
|
language_hash.fetch(language_code.to_sym)
|
|
|
|
end
|
|
|
|
|
|
|
|
def license(language, language_code, file_name)
|
2014-07-11 17:22:26 +00:00
|
|
|
require "date"
|
2014-07-08 20:02:08 +00:00
|
|
|
date = Date.today.to_s
|
|
|
|
"=={{int:filedesc}}==
|
|
|
|
{{Information
|
|
|
|
|description={{en|1=#{file_name}}}
|
|
|
|
|date=#{date}
|
|
|
|
|source=[[User:LanguageScreenshotBot|Automatically created by LanguageScreenshotBot]]
|
|
|
|
|author=[[User:LanguageScreenshotBot|Automatically created by LanguageScreenshotBot]]
|
|
|
|
|permission=
|
|
|
|
|other_versions=
|
|
|
|
|other_fields=
|
|
|
|
}}
|
|
|
|
|
|
|
|
=={{int:license-header}}==
|
|
|
|
{{Wikipedia-screenshot}}
|
|
|
|
|
|
|
|
[[Category:VisualEditor]]
|
|
|
|
[[Category:#{language}]]"
|
|
|
|
end
|
|
|
|
|
|
|
|
def upload_image file_path
|
|
|
|
language_code = ENV['LANGUAGE_SCREENSHOT_CODE']
|
|
|
|
file_name = File.basename(file_path, "")
|
|
|
|
language = language_string language_code
|
|
|
|
file_license = license(language, language_code, file_name)
|
|
|
|
|
|
|
|
require 'mediawiki_api'
|
|
|
|
client = MediawikiApi::Client.new ENV["MEDIAWIKI_API_UPLOAD_URL"]
|
|
|
|
client.log_in ENV["MEDIAWIKI_USER"], ENV["MEDIAWIKI_PASSWORD"]
|
|
|
|
client.upload_image(file_name, file_path, file_license, true)
|
2014-07-22 13:24:24 +00:00
|
|
|
sleep 5 # Restriction in bot speed: https://commons.wikimedia.org/wiki/Commons:Bots#Bot_speed
|
2014-07-08 20:02:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def upload_images
|
|
|
|
screenshot_directory = ENV["LANGUAGE_SCREENSHOT_PATH"] || "./screenshots"
|
2014-07-11 17:22:26 +00:00
|
|
|
Dir["#{screenshot_directory}/*.png"].each do |file_path|
|
2014-07-08 20:02:08 +00:00
|
|
|
puts "Uploading #{file_path}"
|
|
|
|
upload_image file_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-11 17:22:26 +00:00
|
|
|
ENV["MEDIAWIKI_PASSWORD"] = ENV[ENV["MEDIAWIKI_PASSWORD_VARIABLE"]] if ENV["MEDIAWIKI_PASSWORD_VARIABLE"]
|
|
|
|
upload_images
|