diff options
| author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-19 20:04:58 -0300 |
|---|---|---|
| committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-24 16:17:52 -0300 |
| commit | 782aab1319bdcfbe1634d4b33444e8ce5b57d394 (patch) | |
| tree | 1995c7eae0095c423e0f2795ebb2389bc7992f0d /lib/github/import.rb | |
| parent | ac1634fac9ef2891ef98d499fe6391d315b98b30 (diff) | |
| download | gitlab-ce-782aab1319bdcfbe1634d4b33444e8ce5b57d394.tar.gz | |
Pass a options hash to Github::Client
Diffstat (limited to 'lib/github/import.rb')
| -rw-r--r-- | lib/github/import.rb | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/lib/github/import.rb b/lib/github/import.rb index 333bfa0fe05..17244d8aea1 100644 --- a/lib/github/import.rb +++ b/lib/github/import.rb @@ -27,17 +27,18 @@ module Github self.reset_callbacks :validate end - attr_reader :project, :repository, :cached_label_ids, :cached_user_ids, :errors + attr_reader :project, :repository, :options, :cached_label_ids, :cached_user_ids, :errors - def initialize(project) + def initialize(project, options) @project = project @repository = project.repository + @options = options @cached_label_ids = {} @cached_user_ids = {} @errors = [] end - def execute(owner, repo, token) + def execute(owner, repo) # Fetch repository begin project.create_repository @@ -53,7 +54,7 @@ module Github url = "/repos/#{owner}/#{repo}/labels" loop do - response = Github::Client.new.get(url) + response = Github::Client.new(options).get(url) response.body.each do |raw| begin @@ -81,7 +82,7 @@ module Github url = "/repos/#{owner}/#{repo}/milestones" loop do - response = Github::Client.new.get(url, state: :all) + response = Github::Client.new(options).get(url, state: :all) response.body.each do |raw| begin @@ -109,10 +110,10 @@ module Github url = "/repos/#{owner}/#{repo}/pulls" loop do - response = Github::Client.new.get(url, state: :all, sort: :created, direction: :asc) + response = Github::Client.new(options).get(url, state: :all, sort: :created, direction: :asc) response.body.each do |raw| - pull_request = Github::Representation::PullRequest.new(project, raw) + pull_request = Github::Representation::PullRequest.new(project, raw, options) merge_request = MergeRequest.find_or_initialize_by(iid: pull_request.iid, source_project_id: project.id) next unless merge_request.new_record? && pull_request.valid? @@ -160,10 +161,10 @@ module Github url = "/repos/#{owner}/#{repo}/issues" loop do - response = Github::Client.new.get(url, state: :all, sort: :created, direction: :asc) + response = Github::Client.new(options).get(url, state: :all, sort: :created, direction: :asc) response.body.each do |raw| - representation = Github::Representation::Issue.new(raw) + representation = Github::Representation::Issue.new(raw, options) begin # Every pull request is an issue, but not every issue @@ -215,12 +216,12 @@ module Github def fetch_comments(noteable, type, url) loop do - comments = Github::Client.new.get(url) + comments = Github::Client.new(options).get(url) ActiveRecord::Base.no_touching do comments.body.each do |raw| begin - representation = Github::Representation::Comment.new(raw) + representation = Github::Representation::Comment.new(raw, options) note = Note.new note.project_id = project.id |
