travis-web/app/utils/helpers.coffee
2015-07-16 12:28:14 +02:00

167 lines
5.6 KiB
CoffeeScript

`import emojiDictionary from 'travis/utils/emoji-dictionary'`
`import { githubCommit as githubCommitUrl } from 'travis/utils/urls'`
`import configKeysMap from 'travis/utils/keys-map'`
`import config from 'travis/config/environment'`
`import Ember from 'ember'`
timeago = $.timeago
mapObject = $.map
colors = {
default: 'yellow'
passed: 'green'
failed: 'red'
errored: 'red'
canceled: 'gray'
}
mapObject = (elems, callback, arg) ->
value = undefined
key = undefined
ret = []
i = 0
for key of elems
value = callback(elems[key], key, arg)
ret[ret.length] = value if value?
ret.concat.apply [], ret
only = (object) ->
keys = Array::slice.apply(arguments)
object = (if (typeof keys[0] is 'object') then keys.shift() else this)
result = {}
for key of object
result[key] = object[key] unless keys.indexOf(key) is -1
result
intersect = (array, other) ->
array.filter (element) ->
other.indexOf(element) != -1
compact = (object) ->
result = {}
(result[key] = value unless Ember.isEmpty(value)) for key, value of object || {}
result
safe = (string) ->
new Ember.Handlebars.SafeString(string)
colorForState = (state) ->
colors[state] || colors['default']
formatCommit = (sha, branch) ->
formatSha(sha) + if branch then " (#{branch})" else ''
formatSha = (sha) ->
(sha || '').substr(0, 7)
formatConfig = (config) ->
config = only config, Object.keys(configKeysMap)
values = mapObject config, (value, key) ->
value = (if value && value.join then value.join(', ') else value) || ''
if key == 'rvm' && "#{value}".match(/^\d+$/)
value = "#{value}.0"
'%@: %@'.fmt configKeysMap[key], value
if values.length == 0 then '-' else values.join(', ')
formatMessage = (message, options) ->
message = message || ''
message = message.split(/\n/)[0] if options.short
message = _emojize(_escape(message))
if options.repo
message = githubify(message, Ember.get(options.repo, 'owner'), Ember.get(options.repo, 'name'))
if options.pre
message = message.replace /\n/g, '<br/>'
message
timeAgoInWords = (date) ->
timeago date if date
durationFrom = (started, finished) ->
started = started and _toUtc(new Date(_normalizeDateString(started)))
finished = if finished then _toUtc(new Date(_normalizeDateString(finished))) else _nowUtc()
if started && finished then Math.round((finished - started) / 1000) else 0
timeInWords = (duration) ->
days = Math.floor(duration / 86400)
hours = Math.floor(duration % 86400 / 3600)
minutes = Math.floor(duration % 3600 / 60)
seconds = duration % 60
if days > 0
'more than 24 hrs'
else
result = []
result.push hours + ' hr' if hours is 1
result.push hours + ' hrs' if hours > 1
result.push minutes + ' min' if minutes > 0
result.push seconds + ' sec' if seconds > 0
if result.length > 0 then result.join(' ') else '-'
githubify = (text, owner, repo) ->
text = text.replace _githubReferenceRegexp, (reference, matchedOwner, matchedRepo, matchedNumber) ->
_githubReferenceLink(reference, { owner: owner, repo: repo }, { owner: matchedOwner, repo: matchedRepo, number: matchedNumber } )
text = text.replace _githubUserRegexp, (reference, username) ->
_githubUserLink(reference, username)
text = text.replace _githubCommitReferenceRegexp, (reference, matchedOwner, matchedRepo, matchedSHA) ->
_githubCommitReferenceLink(reference, { owner: owner, repo: repo }, { owner: matchedOwner, repo: matchedRepo, sha: matchedSHA })
text
_githubReferenceRegexp = new RegExp("([\\w-]+)?\\/?([\\w-]+)?(?:#|gh-)(\\d+)", 'g')
_githubReferenceLink = (reference, current, matched) ->
owner = matched.owner || current.owner
repo = matched.repo || current.repo
"<a href=\"#{config.sourceEndpoint}/#{owner}/#{repo}/issues/#{matched.number}\">#{reference}</a>"
_githubUserRegexp = new RegExp("\\B@([\\w-]+)", 'g')
_githubUserLink = (reference, username) ->
"<a href=\"#{config.sourceEndpoint}/#{username}\">#{reference}</a>"
_githubCommitReferenceRegexp = new RegExp("([\\w-]+)?\\/([\\w-]+)?@([0-9A-Fa-f]+)", 'g')
_githubCommitReferenceLink = (reference, current, matched) ->
owner = matched.owner || current.owner
repo = matched.repo || current.repo
url = "#{githubCommitUrl("#{owner}/#{repo}", matched.sha)}"
"<a href=\"#{url}\">#{reference}</a>"
_normalizeDateString = (string) ->
if window.JHW
string = string.replace('T', ' ').replace(/-/g, '/')
string = string.replace('Z', '').replace(/\..*$/, '')
string
_nowUtc = ->
# TODO: we overwrite Travis.currentDate in tests, so we need to leave this
# global usage as it is for now, but it should be removed at some point
_toUtc Travis.currentDate()
_toUtc = (date) ->
Date.UTC date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds()
_emojize = (text) ->
emojis = text.match(/:\S+?:/g)
if emojis isnt null
emojis.uniq().forEach (emoji, ix) ->
strippedEmoji = emoji.substring(1, emoji.length - 1)
unless emojiDictionary.indexOf(strippedEmoji) is -1
image = '<img class=\'emoji\' title=\'' + emoji + '\' alt=\'' + emoji + '\' src=\'' + '/images/emoji/' + strippedEmoji + '.png\'/>'
text = text.replace(new RegExp(emoji, 'g'), image)
text
_escape = (text) ->
text.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace />/g, '&gt;'
configKeys = (config) ->
return [] unless config
intersect(Object.keys(config), Object.keys(configKeysMap))
pathFrom = (url) ->
(url || '').split('/').pop()
`export {
configKeys, githubify, timeInWords, durationFrom, timeAgoInWords, formatMessage, formatConfig,
formatSha, formatCommit, colorForState, safe, compact, pathFrom
}`