[pro-merge] Add token to log urls when in pro mode

This commit is contained in:
Piotr Sarnacki 2014-12-29 16:41:09 +01:00
parent 73f06eba0f
commit 23dd688d09
2 changed files with 18 additions and 4 deletions

View File

@ -103,8 +103,12 @@ Travis.reopen
).property()
plainTextLogUrl: (->
Travis.Urls.plainTextLog(id) if id = @get('log.job.id')
).property('job.log.id')
if id = @get('log.job.id')
url = Travis.Urls.plainTextLog(id)
if Travis.config.pro
url += "&access_token=#{@get('job.log.token')}"
url
).property('job.log.id', 'job.log.token')
toggleTailing: ->
Travis.tailing.toggle()

View File

@ -257,10 +257,20 @@ Travis.reopen
(@get('build.jobs.length') == 1 && @get('build.jobs.firstObject.id'))
).property('job.id', 'build.jobs.firstObject.id', 'build.jobs.length')
job: (->
if id = @get('jobIdForLog')
Travis.Job.find(id)
).property('jobIdForLog')
plainTextLogUrl: (->
if id = @get('jobIdForLog')
Travis.Urls.plainTextLog(id)
).property('jobIdForLog')
url = Travis.Urls.plainTextLog(id)
if Travis.config.pro
token = @get('job.log.token') || @get('build.jobs.firstObject.log.token')
url += "&access_token=#{token}"
url
).property('jobIdForLog', 'job.log.token', 'build.jobs.firstObject.log.token')
canRemoveLog: (->
@get('displayRemoveLog') && @get('hasPermission')