finish fix update manager
This commit is contained in:
parent
cc4cb9f1a2
commit
702aa493c8
|
@ -1,5 +1,5 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
#test0!!!!!!!!
|
#complete!!!!!!!!
|
||||||
#social gems
|
#social gems
|
||||||
gem "omniauth-google-oauth2"
|
gem "omniauth-google-oauth2"
|
||||||
|
|
||||||
|
|
|
@ -134,7 +134,7 @@ class Admin::SitesController < OrbitAdminController
|
||||||
end
|
end
|
||||||
|
|
||||||
def get_update_history
|
def get_update_history
|
||||||
@update_log = %x{git log --pretty=format:"%ad','%s" --date=short}.split("\n").map{|log| log.gsub("'","").split(",")}.to_json
|
@update_log = %x{git log --pretty=format:"%H','%ad','%s" --date=short}.split("\n").map{|log| log.gsub("'","").split(",")}.to_json
|
||||||
render :json => @update_log
|
render :json => @update_log
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -143,41 +143,60 @@ class Admin::SitesController < OrbitAdminController
|
||||||
@new_updates = %x(git log #{@branch}..origin/#{@branch} --pretty=format:"%ad','%s" --date=short).split("\n").map{|log| log.gsub("'","").split(",")}.to_json
|
@new_updates = %x(git log #{@branch}..origin/#{@branch} --pretty=format:"%ad','%s" --date=short).split("\n").map{|log| log.gsub("'","").split(",")}.to_json
|
||||||
render :json => @new_updates
|
render :json => @new_updates
|
||||||
end
|
end
|
||||||
|
def git_reset(commit,type)
|
||||||
|
mul = Multithread.where(key: 'update_manager').first
|
||||||
|
mul = Multithread.create(key: 'update_manager') if mul.nil?
|
||||||
|
mul.update_attributes(status: 'waiting')
|
||||||
|
Thread.new do
|
||||||
|
ubuntu_version = %x[lsb_release -a | grep Release].scan(/\d.*\d/)[0]
|
||||||
|
git = 'git'
|
||||||
|
if Float(ubuntu_version) <= 14.04 && Float(%x[git --version].scan(/\d.\d/)[0]) < 1.9
|
||||||
|
if %x[uname -m].scan('64').count !=0
|
||||||
|
cmd0 = system("wget https://ruling.digital/uploads/asset/git_1.9.1-1_amd64.deb && dpkg -x git_1.9.1-1_amd64.deb ./git_1.9.1")
|
||||||
|
else
|
||||||
|
cmd0 = system("wget https://ruling.digital/uploads/asset/git_1.9.1-1_i386.deb && dpkg -x git_1.9.1-1_i386.deb ./git_1.9.1")
|
||||||
|
end
|
||||||
|
git = 'git_1.9.1/usr/bin/git'
|
||||||
|
end
|
||||||
|
git_add_except_public = Dir['*'].select{|v| v!= 'public'}.collect do |v|
|
||||||
|
"#{git} add -f '#{v}'"
|
||||||
|
end.join(' && ')
|
||||||
|
git_add_all_program = (Dir['app/*'].select{|v| !v.include? 'templates'} + Dir['lib/*'] + Dir['config/*'].select{|v| !v.include? 'mongoid.yml'}).collect do |v|
|
||||||
|
"#{git} add -f '#{v}'"
|
||||||
|
end.join(' && ')
|
||||||
|
time_now = Time.now.strftime('%Y_%m_%d_%H_%M')
|
||||||
|
Bundler.with_clean_env{system("#{git_add_except_public} && #{git} commit -m auto_backup_before_#{type}_#{time_now} && #{git} reset #{commit} --mixed && #{git_add_all_program} && #{git} reset #{commit} --merge && #{git} commit -m complete_#{type}_#{time_now}")}
|
||||||
|
mul.update_attributes(status: 'finish')
|
||||||
|
end
|
||||||
|
end
|
||||||
def update_orbit
|
def update_orbit
|
||||||
store_permissions = check_store_permissions
|
store_permissions = check_store_permissions
|
||||||
if store_permissions["permission_granted"]
|
if params['type'] == 'update'
|
||||||
result = ""
|
if store_permissions["permission_granted"]
|
||||||
need_stash = %x(git diff).blank?
|
git_reset('origin','update')
|
||||||
%x(git stash) unless need_stash
|
render :text => 'waiting'
|
||||||
%x(git fetch origin)
|
|
||||||
pull_result = %x(git pull -r --ff-only 2>&1 origin #{@branch})
|
|
||||||
%x(git stash pop) unless need_stash
|
|
||||||
|
|
||||||
if pull_result.include? "fatal: Not possible to fast-forward, aborting."
|
|
||||||
result = "failed"
|
|
||||||
else
|
else
|
||||||
result = "success"
|
render :json => store_permissions.to_json
|
||||||
# Bundler.with_clean_env { `cd #{Rails.root} && bundle update` }
|
|
||||||
end
|
end
|
||||||
|
elsif params['type'] == 'restore'
|
||||||
render :text => result
|
git_reset(params['id'],'restore')
|
||||||
else
|
render :text => 'waiting'
|
||||||
render :json => store_permissions.to_json
|
elsif params['type'] == 'get_result'
|
||||||
|
render :text => Multithread.where(key: 'update_manager').first.status rescue 'running'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def bundle_install
|
def bundle_install
|
||||||
Bundler.with_clean_env { `cd #{Rails.root} && BUNDLE_GEMFILE=built_in_extensions.rb bundle update && bundle` }
|
Bundler.with_clean_env { system("cd #{Rails.root} && bundle update") }
|
||||||
Bundler.with_clean_env { `cd #{Rails.root} && BUNDLE_GEMFILE=downloaded_extensions.rb bundle update && bundle` }
|
|
||||||
%x(kill -s USR2 `cat tmp/pids/unicorn.pid`)
|
%x(kill -s USR2 `cat tmp/pids/unicorn.pid`)
|
||||||
sleep 5
|
sleep 2
|
||||||
render :nothing => true
|
render :nothing => true
|
||||||
end
|
end
|
||||||
|
|
||||||
def restart_server
|
def restart_server
|
||||||
%x(kill -s USR2 `cat tmp/pids/unicorn.pid`)
|
mode = Rails.env
|
||||||
sleep 5
|
unicorn_rails = %x[which unicorn_rails].sub("\n",'')
|
||||||
|
Bundler.with_clean_env{system("kill -s TERM `cat tmp/pids/unicorn.pid` && unset UNICORN_FD && sleep 1 && bundle exec #{unicorn_rails} -c config/unicorn.rb -D -E #{mode}")}
|
||||||
render :nothing => true
|
render :nothing => true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,312 @@
|
||||||
|
<!-- test for some stuff -->
|
||||||
|
<style type="text/css">
|
||||||
|
.container{
|
||||||
|
}
|
||||||
|
|
||||||
|
#new_update_container{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#update_progress{
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#update_status{
|
||||||
|
/*display: none;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
#update_done{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#update_failed{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel{
|
||||||
|
/*max-height: 400px;*/
|
||||||
|
border-radius: 5px;
|
||||||
|
overflow: hidden;
|
||||||
|
border: 1px solid #DFDFDF;
|
||||||
|
background: #FFF;
|
||||||
|
box-shadow: 0px 0px 10px #CCC;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-heading{
|
||||||
|
font-size: 16px;
|
||||||
|
color: #666;
|
||||||
|
padding: 10px 20px;
|
||||||
|
|
||||||
|
background-color: #fafafa;
|
||||||
|
background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
|
||||||
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
|
||||||
|
background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
|
||||||
|
background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
|
||||||
|
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
|
||||||
|
*zoom: 1;
|
||||||
|
border-bottom: 1px solid #DDD;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table{
|
||||||
|
margin: 0;
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pannel-body{
|
||||||
|
max-height: 400px;
|
||||||
|
overflow: scroll;
|
||||||
|
overflow-x: hidden;
|
||||||
|
overflow-y: hidden;
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pannel-body:hover{
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 5px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background-color: #AAA;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.break{
|
||||||
|
border-left: 1px solid #FCFCFC;
|
||||||
|
border-right: 1px solid #DDD;
|
||||||
|
padding: 10px 0;
|
||||||
|
margin: 0 15px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="container">
|
||||||
|
<div class="row-fluid">
|
||||||
|
<div class="span6">
|
||||||
|
<div id="new_update_container">
|
||||||
|
<div class="panel">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<i class="icon-exclamation-sign"></i>
|
||||||
|
<span class="break"></span>
|
||||||
|
<span class="panel-title"><%= t("update_manager_.available_updates") %></span>
|
||||||
|
<span id="num_new_updates" class="badge badge-important pull-right"></span>
|
||||||
|
<% if !@store_permissions["permission_granted"] %>
|
||||||
|
<span class="break pull-right"></span>
|
||||||
|
<small class="pull-right text-error">
|
||||||
|
<% if @store_permissions["message"].size > 30 %>
|
||||||
|
<a class="tooltipalert text-error" href="#"
|
||||||
|
onclick="return false;" title="<%= @store_permissions["message"] %>"><%= @store_permissions["message"][0..17] + "..." %></a>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$('.tooltipalert').tooltip({
|
||||||
|
position: {
|
||||||
|
my: "center bottom-4",
|
||||||
|
at: "center top"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<% else %>
|
||||||
|
<%= @store_permissions["message"] %>
|
||||||
|
<% end %>
|
||||||
|
</small>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="pannel-body">
|
||||||
|
<table class="table table-striped">
|
||||||
|
<tbody id="new_update_table">
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style="height: 55px;">
|
||||||
|
<% if @store_permissions["permission_granted"] %>
|
||||||
|
<button id="update_btn" class="btn btn-primary pull-right" style="margin: 10px;"><i class="icon-inbox icon-white"></i> <%= t("update_manager_.system_update") %></button>
|
||||||
|
<% else %>
|
||||||
|
<a href="/<%= I18n.locale.to_s %>/admin/designs" class="pull-right">Please register here.</a>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="update_status">
|
||||||
|
<div class="panel">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<i class="icon-info-sign"></i>
|
||||||
|
<span class="break"></span>
|
||||||
|
<span class="panel-title"><%= t("update_manager_.update_status") %></span>
|
||||||
|
<% if !@store_permissions["permission_granted"] %>
|
||||||
|
<small class="pull-right text-error">
|
||||||
|
<% if @store_permissions["message"].size > 30 %>
|
||||||
|
<a class="tooltipalert text-error" href="#"
|
||||||
|
onclick="return false;" title="<%= @store_permissions["message"] %>"><%= @store_permissions["message"][0..17] + "..." %></a>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$('.tooltipalert').tooltip({
|
||||||
|
position: {
|
||||||
|
my: "center bottom-4",
|
||||||
|
at: "center top"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<% else %>
|
||||||
|
<%= @store_permissions["message"] %>
|
||||||
|
<% end %>
|
||||||
|
</small>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="pannel-body">
|
||||||
|
<div id="update_done" class="alert alert-success" style="font-size: 16px; text-align: center; margin: 0px;">
|
||||||
|
<i class="icon-ok-sign"> <%= t("update_manager_.update_done") %></i>
|
||||||
|
</div>
|
||||||
|
<div id="update_failed" class="alert alert-error" style="font-size: 16px; text-align: center; margin: 0px;">
|
||||||
|
<i class="icon-remove"> <%= t("update_manager_.update_faild") %></i>
|
||||||
|
</div>
|
||||||
|
<div id="update_progress">
|
||||||
|
<img src="/assets/spin.gif" width="50"><br/>
|
||||||
|
<span id="progress_msg"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style="padding: 10px 0; height: 65px;">
|
||||||
|
<button id="chech_update_btn" class="btn btn-small btn-inverse pull-right"><i class="icon-refresh icon-white"></i> <%= t("update_manager_.check_update") %></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="span6">
|
||||||
|
<div class="panel">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<i class="icon-th-list"></i>
|
||||||
|
<span class="break"></span>
|
||||||
|
<span class="panel-title"><%= t("update_manager_.update_history") %></span>
|
||||||
|
<span id="num_updates" class="badge badge-success pull-right"></span>
|
||||||
|
</div>
|
||||||
|
<div class="pannel-body" id="update-history-body">
|
||||||
|
<table class="table table-striped">
|
||||||
|
<tbody id="update_history_table">
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
var update_logs;
|
||||||
|
var update_log_display;
|
||||||
|
var new_updates;
|
||||||
|
|
||||||
|
function get_update_history(){
|
||||||
|
$.getJSON("<%= admin_site_get_update_history_path %>",function(data){
|
||||||
|
update_logs = data;
|
||||||
|
update_log_display = 0;
|
||||||
|
$("#num_updates").text(update_logs.length);
|
||||||
|
$("#update_history_table").html("");
|
||||||
|
|
||||||
|
show_update_history();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function show_update_history(){
|
||||||
|
for(var i = 0; i<30; i++){
|
||||||
|
var log = update_logs[update_log_display];
|
||||||
|
update_log_display++;
|
||||||
|
$("#update_history_table").append("<tr data-id='"+log[0]+"'><td width=30%'>"+log[1]+"</td><td width=50%'>"+log[2]+"</td><td width=20%'><button type='button' class='btn btn-primary' onclick='restore_orbit(this)'>restore</button></td></tr>");
|
||||||
|
if((update_log_display+1)>update_logs.length) break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function check_updates(){
|
||||||
|
$("#progress_msg").html("<strong><%= t("update_manager_.checking_update") %></strong>");
|
||||||
|
$("#new_update_container").fadeOut(function(){
|
||||||
|
$("#update_done").fadeOut(function(){
|
||||||
|
$("#update_status").fadeIn(function(){
|
||||||
|
$("#update_progress").fadeIn();
|
||||||
|
$.getJSON("<%= admin_site_check_updates_path %>",function(data){
|
||||||
|
new_updates = data;
|
||||||
|
show_new_updates();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function show_new_updates(){
|
||||||
|
if(new_updates.length){
|
||||||
|
$("#num_new_updates").text(new_updates.length);
|
||||||
|
$.each(new_updates,function(){
|
||||||
|
$("#new_update_table").append("<tr><td>"+$(this)[0]+"</td><td>"+$(this)[1]+"</td></tr>");
|
||||||
|
});
|
||||||
|
$("#update_status").fadeOut(function(){$("#new_update_container").fadeIn();});
|
||||||
|
}else{
|
||||||
|
$("#update_progress").fadeOut(function(){$("#update_done").fadeIn();});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function check_module_updates(){
|
||||||
|
$("#progress_msg").html("<strong><%= t("update_manager_.updating_orbit") %></strong>");
|
||||||
|
$("#new_update_container").fadeOut(function(){
|
||||||
|
$("#update_done").fadeOut(function(){
|
||||||
|
$("#update_status").fadeIn(function(){
|
||||||
|
$("#update_progress").fadeIn();
|
||||||
|
$.get("<%= admin_site_bundle_install_path %>",function(result){
|
||||||
|
$("#update_progress").fadeOut(function(){$("#update_done").fadeIn();});
|
||||||
|
$("#update_status").fadeIn();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function restore_orbit(ele){
|
||||||
|
$("#update_done").hide()
|
||||||
|
$("#update_progress").show()
|
||||||
|
$("#progress_msg").html("<strong>restoring...</strong>");
|
||||||
|
$("#new_update_container").fadeOut(function(){
|
||||||
|
$("#update_status").fadeIn();
|
||||||
|
});
|
||||||
|
id = $(ele).parents('tr').data('id')
|
||||||
|
update_orbit('restore',id)
|
||||||
|
}
|
||||||
|
function update_orbit(type,id){
|
||||||
|
$.get("<%= admin_site_update_orbit_path %>",{type: type,id: id},function(result){
|
||||||
|
if (result=='finish'){
|
||||||
|
$("#progress_msg").html("<strong><%= t("update_manager_.restart_server") %></strong>");
|
||||||
|
$.get("<%= admin_site_restart_server_path %>",function(result){
|
||||||
|
$("#update_progress").fadeOut(function(){$("#update_done").fadeIn();});
|
||||||
|
$("#update_status").fadeIn();
|
||||||
|
get_update_history();
|
||||||
|
});
|
||||||
|
}else if(result=='waiting'){
|
||||||
|
$("#progress_msg").html("<strong><%= t("update_manager_.restart_server") %></strong>");
|
||||||
|
setTimeout(function(){update_orbit('get_result')},1000)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
$(document).ready(function(){
|
||||||
|
check_updates();
|
||||||
|
get_update_history();
|
||||||
|
|
||||||
|
// $("#module_update_btn").click(check_module_updates);
|
||||||
|
|
||||||
|
$("#chech_update_btn").click(check_updates);
|
||||||
|
|
||||||
|
$("#update_btn").click(function(){
|
||||||
|
$("#progress_msg").html("<strong><%= t("update_manager_.updating_orbit") %></strong>");
|
||||||
|
$("#new_update_container").fadeOut(function(){
|
||||||
|
$("#update_status").fadeIn();
|
||||||
|
});
|
||||||
|
update_orbit('update','')
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#update-history-body").scroll(function () {
|
||||||
|
if((update_log_display+1)<update_logs.length){
|
||||||
|
var scroll_pos = ($("#update-history-body").scrollTop()+$("#update-history-body").height())/$("#update_history_table").height()*100;
|
||||||
|
if(scroll_pos>90){
|
||||||
|
show_update_history();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
Loading…
Reference in New Issue