Merge pull request #324 from travis-ci/remove-log

Remove log
This commit is contained in:
Piotr Sarnacki 2015-01-12 12:56:54 +01:00
commit d69ab156e0
7 changed files with 76 additions and 37 deletions

View File

@ -132,10 +132,8 @@ require 'travis/model'
).property('finishedAt')
canRemoveLog: (->
# This should somehow get the status of removed log, but unfortunately there is
# no easy way to do that at the moment
true
).property()
!@get('log.removed')
).property('log.removed')
slug: (->
"#{@get('repo.slug')} ##{@get('number')}"

View File

@ -39,7 +39,10 @@ require 'travis/log_chunks'
console.log 'log model: fetching log' if Log.DEBUG
@clearParts()
handlers =
json: (json) => @loadParts(json['log']['parts'])
json: (json) =>
if json['log']['removed_at']
@set('removed', true)
@loadParts(json['log']['parts'])
text: (text) => @loadText(text)
Travis.Log.Request.create(id: id, handlers: handlers).run() if id = @get('job.id')

View File

@ -0,0 +1,8 @@
<a href="#" class="close" {{action "close" target=view}}></a>
<p><strong>This action will remove the log permanently!</strong></p>
<p>Do you want to continue?</p>
<p>
<a class="sync_now button">Yes, please!</a>
<span class="or">or</span>
<a href="#" class="cancel">Cancel</a>
</p>

View File

@ -32,16 +32,22 @@
{{/if}}
</li>
{{/if}}
{{#if view.showDownloadLog}}
<li class="icon download-log" title="Download Log">
<a class="download-log" {{bind-attr href="view.plainTextLogUrl"}}></a>
</li>
{{#if view.jobIdForLog}}
{{#if view.showDownloadLog}}
<li class="icon download-log" title="Download Log">
<a class="download-log" {{bind-attr href="view.plainTextLogUrl"}}></a>
</li>
{{/if}}
{{/if}}
{{#if view.displayRemoveLog}}
<li class="icon remove-log" title="Remove Log">
<a href="#" {{action "removeLog" target="view"}}
{{bind-attr class="view.canRemoveLog::disabled"}}></a>
</li>
{{! the next if is a hack for refreshing displayRemoveLog when we change
views, it sometimes doesn't work properly }}
{{#if view.jobIdForLog}}
{{#if view.displayRemoveLog}}
<li class="icon remove-log" title="Remove Log">
<a href="#" name="remove-log-popup" class="open-popup" {{action "removeLogPopup" target=view}}
{{bind-attr class="view.canRemoveLog::disabled"}}></a>
</li>
{{/if}}
{{/if}}
{{#if view.displayCodeClimate}}
<li class="icon code-climate" title="Test Coverage with Code Climate">
@ -53,3 +59,14 @@
</ul>
</div>
<div id="remove-log-popup" class="popup">
<a href="#" class="close" {{action "popupClose" target=view}}></a>
<p><strong>This action will remove the log permanently!</strong></p>
<p>Do you want to continue?</p>
<p>
<a class="sync_now button" {{action "removeLog" target="view"}}>Yes, please!</a>
<span class="or">or</span>
<a href="#" class="cancel" {{action "popupClose" target=view}}>Cancel</a>
</p>
</div>

View File

@ -20,7 +20,7 @@ Travis.NotFoundView = Ember.View.extend
name = event?.target?.name || name
$("##{name}").toggleClass('display')
popupClose: ->
$(event.target).closest('.popup').removeClass('display')
$('.popup').removeClass('display')
popupCloseAll: ->
if view = Travis.View.currentPopupView
view.destroy()

View File

@ -19,12 +19,12 @@ Travis.reopen
).property('controller.repo.slug')
actions:
statusImages: ->
statusImages: () ->
@popupCloseAll()
view = Travis.StatusImagesView.create(toolsView: this)
Travis.View.currentPopupView = view
view.appendTo($('body'))
event.stopPropagation()
return false
ReposEmptyView: Travis.View.extend
template: (->
@ -116,14 +116,14 @@ Travis.reopen
menu: ->
@popupCloseAll()
$('#tools .menu').toggleClass('display')
event.stopPropagation()
return false
regenerateKeyPopup: ->
if @get('canRegenerateKey')
@set('active', true)
@closeMenu()
@popup(event)
event.stopPropagation()
@popup('regenerate-key-popup')
return false
regenerateKey: ->
@popupCloseAll()
@ -181,7 +181,7 @@ Travis.reopen
requeueJob: ->
if @get('canRequeueJob')
@requeue @get('job')
@requeue @get('_job')
cancelBuild: ->
if @get('canCancelBuild')
@ -198,8 +198,9 @@ Travis.reopen
removeLog: ->
@popupCloseAll()
if @get('canRemoveLog')
job = @get('job') || @get('build.jobs.firstObject')
job = @get('_job') || @get('build.jobs.firstObject')
job.removeLog().then ->
Travis.flash(success: 'Log has been successfully removed.')
, (xhr) ->
@ -213,7 +214,7 @@ Travis.reopen
cancelJob: ->
if @get('canCancelJob')
Travis.flash(notice: 'Job cancellation has been scheduled.')
@get('job').cancel().then ->
@get('_job').cancel().then ->
Travis.flash(success: 'Job has been successfully canceled.')
, (xhr) ->
if xhr.status == 422
@ -226,7 +227,13 @@ Travis.reopen
codeClimatePopup: ->
@popupCloseAll()
@popup('code-climate')
event.stopPropagation() if event?
return false
removeLogPopup: ->
if @get('canRemoveLog')
@set('active', true)
@popup('remove-log-popup')
return false
hasPermission: (->
if permissions = @get('currentUser.permissions')
@ -258,16 +265,18 @@ Travis.reopen
@get('jobIdForLog')
).property('jobIdForLog')
jobIdForLog: (->
@get('job.id') ||
(@get('build.jobs.length') == 1 && @get('build.jobs').objectAt(0).get?('id'))
).property('job.id', 'build.jobs.firstObject.id', 'build.jobs.length')
job: (->
_job: (->
if id = @get('jobIdForLog')
Travis.Job.find(id)
).property('jobIdForLog')
jobIdForLog: (->
job = @get('job.id')
unless job
if @get('build.jobs.length') == 1
job = @get('build.jobs').objectAt?(0).get?('id')
job
).property('job.id', 'build.jobs.firstObject.id', 'build.jobs.length')
plainTextLogUrl: (->
if id = @get('jobIdForLog')
@ -279,14 +288,14 @@ Travis.reopen
).property('jobIdForLog', 'job.log.token', 'build.jobs.firstObject.log.token')
canRemoveLog: (->
@get('displayRemoveLog') && @get('hasPermission')
).property('displayRemoveLog', 'hasPermission')
@get('displayRemoveLog')
).property('displayRemoveLog')
displayRemoveLog: (->
#(@get('isJobTab') || (@get('isBuildTab') && @get('build.jobs.length') == 1)) &&
# @get('build.jobs').objectAt(0).get?('canRemoveLog')
false
).property('isJobTab', 'isBuildTab', 'build.jobs.length', 'job.canRemoveLog')
if job = @get('_job')
(@get('isJobTab') || (@get('isBuildTab') && @get('build.jobs.length') == 1)) &&
job.get('canRemoveLog') && @get('hasPermission')
).property('isJobTab', 'isBuildTab', 'build.jobs.length', '_job.canRemoveLog', 'jobIdForLog', 'canRemoveLog', 'hasPermission')
canCancelBuild: (->
@get('displayCancelBuild') && @get('hasPermission')

View File

@ -72,7 +72,8 @@
p:last-child
margin-top: 10px
#regenerate-key
#regenerate-key,
#remove-log-popup
.cancel
text-decoration: underline
p
@ -84,6 +85,8 @@
margin-bottom: 5px
a.button
font-size: 13px
strong
color: $red
#status-images, #regenerate-key
input
@ -108,3 +111,4 @@
padding-left: 15px
img#code-climate-logo
margin-right: 50px