gitlabhq/lib/utils.rb

45 lines
906 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
module Utils
2011-10-20 21:00:00 +02:00
module FileHelper
def binary?(string)
2011-10-20 21:00:00 +02:00
string.each_byte do |x|
x.nonzero? or return true
2011-10-20 21:00:00 +02:00
end
false
end
def image?
mime_type =~ /image/
end
def text?
mime_type =~ /application|text/ && !binary?(data)
end
end
module Colorize
def colorize
system_colorize(data, name)
2011-10-21 14:35:42 +02:00
end
def system_colorize(data, file_name)
2012-03-13 20:07:30 +01:00
options = { :encoding => 'utf-8', :linenos => 'True' }
# Try detect language with pygments
Pygments.highlight data, :filename => file_name, :options => options
rescue
# if it fails use manual detection
2011-10-21 14:35:42 +02:00
ft = handle_file_type(file_name)
2012-03-13 20:07:30 +01:00
Pygments.highlight(data, :lexer => ft, :options => options)
2011-10-20 21:00:00 +02:00
end
2012-03-13 20:07:30 +01:00
def handle_file_type(file_name)
case file_name
2012-03-13 20:07:30 +01:00
when /(\.ru|Gemfile)$/
2011-10-20 21:00:00 +02:00
:ruby
else
:text
end
2011-10-08 23:36:38 +02:00
end
end
end