importing.rb revision 5379e11f2c6c49c6df4872d6a55f2ff390969e66
#
# States:
# * pending - Job is enqueued.
# * fetching - Fetching new commits from the remote repository.
# * processing - Inserting fetched commits into the local database-
# * done - Everthing is fine, nothing to do-
# * failed - Something has gone wrong.
#
SOURCE_TYPES = %w( git svn )
STATES = %w( pending fetching processing done failed )
included do
# Ready for pulling
}
after_create ->{ async_remote :clone }, if: :remote?
end
end
# do not allow new actions in specific states
end
update_state! 'pending'
end
# build arguments
args = []
args << source_address if method == 'clone'
# build method name
method = method.to_s
method += '_svn' if source_type == 'svn'
do_or_set_failed do
update_state! 'fetching'
result = git.send(method, *args)
update_state! 'processing'
save_current_ontologies
self.imported_at = Time.now
update_state! 'done'
result
end
end
module ClassMethods
# creates a new repository and imports the contents from the remote repository
def import_remote(type, user, source, name, params={})
raise ArgumentError, "invalid source type: #{type}" unless SOURCE_TYPES.include?(type)
raise Repository::ImportError, "#{source} is not a #{type} repository" unless GitRepository.send "is_#{type}_repository?", source
params[:name] = name
params[:source_type] = type
params[:source_address] = source
r = Repository.new(params)
r.user = user
r.save!
r
end
end
end