Compare commits
3 Commits
master
...
ntu_ga_sso
Author | SHA1 | Date |
---|---|---|
Spen | ebca98cd85 | |
rulingcom | d6b165cec6 | |
rulingcom | f0f6e809af |
1
Gemfile
1
Gemfile
|
@ -43,6 +43,7 @@ gem 'resque', :require => 'resque/server' # background jobs
|
||||||
gem 'resque-scheduler' # job scheduling
|
gem 'resque-scheduler' # job scheduling
|
||||||
gem 'resque-restriction'
|
gem 'resque-restriction'
|
||||||
#gem 'rb-readline'
|
#gem 'rb-readline'
|
||||||
|
gem 'roo'
|
||||||
# gem 'ruby-debug19'
|
# gem 'ruby-debug19'
|
||||||
gem 'rubyzip', '< 1.0.0'
|
gem 'rubyzip', '< 1.0.0'
|
||||||
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
|
@ -1,6 +1,4 @@
|
||||||
$(function() {
|
var ListCheck = function(element) {
|
||||||
var ListCheckData = {},
|
|
||||||
ListCheck = function(element) {
|
|
||||||
this.element = $(element);
|
this.element = $(element);
|
||||||
this.element.data('exists', true);
|
this.element.data('exists', true);
|
||||||
if(this.element.context.parentNode.tagName == "TD") {
|
if(this.element.context.parentNode.tagName == "TD") {
|
||||||
|
@ -13,70 +11,47 @@ $(function() {
|
||||||
this.element.before('<i class="icon-check-empty" />');
|
this.element.before('<i class="icon-check-empty" />');
|
||||||
};
|
};
|
||||||
|
|
||||||
$.fn.listCheck = function () {
|
$.fn.listCheck = function (callback) {
|
||||||
$(this).each(function() {
|
this.each(function (i) {
|
||||||
var $this = $(this),
|
|
||||||
$el = $this.find('input[type="checkbox"]');
|
|
||||||
$el.each(function (i) {
|
|
||||||
if(!$(this).data('exists')) {
|
if(!$(this).data('exists')) {
|
||||||
new ListCheck(this);
|
new ListCheck(this);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
$this.on(clickEvent, $el, function(e) {
|
this.on(clickEvent, function(e) {
|
||||||
if($(e.target).prop('checked')) {
|
if($(this).prop('checked')) {
|
||||||
$(e.target).siblings('i').addClass('icon-check').removeClass('icon-check-empty').closest('tr').addClass('checkHit');
|
$(this).siblings('i').addClass('icon-check').removeClass('icon-check-empty').closest('tr').addClass('checkHit');
|
||||||
} else {
|
} else {
|
||||||
$(e.target).siblings('i').addClass('icon-check-empty').removeClass('icon-check').closest('tr').removeClass('checkHit');
|
$(this).siblings('i').addClass('icon-check-empty').removeClass('icon-check').closest('tr').removeClass('checkHit');
|
||||||
};
|
};
|
||||||
if($(e.target).closest('th').hasClass('listCheckHead')) {
|
if ($(this).closest('.listCheckHead').length) {
|
||||||
$this.find('.listCheck input[type="checkbox"]').prop('checked', $(e.target).prop('checked'));
|
$('.listCheck .list-check').prop('checked', $(this).prop('checked'));
|
||||||
if($(e.target).prop('checked')) {
|
if($(this).prop('checked')) {
|
||||||
$this.find('.listCheck i').addClass('icon-check').removeClass('icon-check-empty').closest('tr').addClass('checkHit');
|
$('.listCheck i').addClass('icon-check').removeClass('icon-check-empty').closest('tr').addClass('checkHit');
|
||||||
} else {
|
} else {
|
||||||
$this.find('.listCheck i').addClass('icon-check-empty').removeClass('icon-check').closest('tr').removeClass('checkHit');
|
$('.listCheck i').addClass('icon-check-empty').removeClass('icon-check').closest('tr').removeClass('checkHit');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var _isCheck = $this.find('tbody').find($el).filter(':checked').length,
|
var _isCheck = $('tbody .list-check').filter(':checked').length,
|
||||||
_defaultLength = $this.find('tbody').find($el).length;
|
_defaultLength = $('tbody .list-check').length;
|
||||||
|
|
||||||
if(_isCheck > 0 && _isCheck < _defaultLength) {
|
if(_isCheck > 0 && _isCheck < _defaultLength) {
|
||||||
$this.find('.listCheckHead i').removeClass('icon-check-empty icon-check').addClass('icon-minus');
|
$('.listCheckHead i').removeClass('icon-check-empty icon-check').addClass('icon-minus');
|
||||||
} else if(!_isCheck) {
|
} else if(!_isCheck) {
|
||||||
$this.find('.listCheckHead i').removeClass('icon-minus icon-check').addClass('icon-check-empty');
|
$('.listCheckHead i').removeClass('icon-minus icon-check').addClass('icon-check-empty');
|
||||||
} else {
|
} else {
|
||||||
$this.find('.listCheckHead i').removeClass('icon-check-empty icon-minus').addClass('icon-check');
|
$('.listCheckHead i').removeClass('icon-check-empty icon-minus').addClass('icon-check');
|
||||||
}
|
}
|
||||||
_isCheck ? $this.find('.list-active-btn').removeClass('disabled').data('actionable', true) : $this.find('.list-active-btn').addClass('disabled').data('actionable', false);
|
_isCheck ? $('.list-active-btn').removeClass('disabled').data('actionable', true) : $('.list-active-btn').addClass('disabled').data('actionable', false);
|
||||||
});
|
});
|
||||||
$this.on(clickEvent, '.list-active-btn', function(e) {
|
};
|
||||||
if(!$(this).hasClass('disabled')) {
|
function clearCheck() {
|
||||||
ListCheckData.url = $(this).attr('rel');
|
$('.list-check').each(function() {
|
||||||
ListCheckData.name = $this.find('tbody').find('input[type="checkbox"]').attr('name');
|
$(this).prop('checked', false);
|
||||||
ListCheckData.action = $(this).data('checkAction');
|
})
|
||||||
ListCheckData.values = [];
|
|
||||||
ListCheckData.element = $this
|
|
||||||
$this.find('tbody').find('input[type="checkbox"]').each(function (i) {
|
|
||||||
this.checked && ListCheckData.values.push("ids[]=" + this.value);
|
|
||||||
});
|
|
||||||
console.log(ListCheckData.values.join("&"));
|
|
||||||
$('#dialog').modal('show');
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
});
|
|
||||||
clearCheck($(this));
|
|
||||||
};
|
|
||||||
|
|
||||||
function clearCheck(element) {
|
|
||||||
element.find('input[type="checkbox"]').each(function() {
|
|
||||||
$(this).prop('checked', false).siblings('i').addClass('icon-check-empty').removeClass('icon-check').closest('tr').removeClass('checkHit');
|
|
||||||
});
|
|
||||||
element.find('.list-active-btn').addClass('disabled');
|
|
||||||
};
|
|
||||||
|
|
||||||
function actionSuccess(e) {
|
function actionSuccess(e) {
|
||||||
ListCheckData.element.find('tbody').find('input[type="checkbox"]').each(function() {
|
$("tbody .list-check").each(function() {
|
||||||
switch(e) {
|
switch(e) {
|
||||||
case 'list-be-hide':
|
case 'list-be-hide':
|
||||||
$(this).filter(':checked').closest('tr').addClass('checkHide');
|
$(this).filter(':checked').closest('tr').addClass('checkHide');
|
||||||
|
@ -92,17 +67,32 @@ $(function() {
|
||||||
};
|
};
|
||||||
$('.list-check').siblings('i').removeAttr('class').addClass('icon-check-empty').closest('tr').removeClass('checkHit');
|
$('.list-check').siblings('i').removeAttr('class').addClass('icon-check-empty').closest('tr').removeClass('checkHit');
|
||||||
});
|
});
|
||||||
clearCheck(ListCheckData.element);
|
clearCheck();
|
||||||
}
|
}
|
||||||
|
$(function() {
|
||||||
|
var $t = null,
|
||||||
|
_data = null;
|
||||||
|
clearCheck();
|
||||||
$('.list-check').listCheck();
|
$('.list-check').listCheck();
|
||||||
|
$('.list-active-btn').data('actionable', false).on(clickEvent, function(e) {
|
||||||
|
$t = $(this)
|
||||||
|
_data = $(this).data()
|
||||||
|
_data.actionable ? $('#dialog').modal('show') : "";
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
$('.delete-item').on(clickEvent, function() {
|
$('.delete-item').on(clickEvent, function() {
|
||||||
if(ListCheckData.url.indexOf("?") > -1) {
|
var _v = [];
|
||||||
$.ajax(ListCheckData.url + "&" + ListCheckData.values.join("&")).done(function() {
|
$("tbody .list-check").each(function() {
|
||||||
actionSuccess(ListCheckData.action);
|
this.checked && _v.push("ids[]="+this.value)
|
||||||
|
});
|
||||||
|
var _t = $t.attr("rel");
|
||||||
|
if(_t.indexOf("?") > -1) {
|
||||||
|
$.ajax(_t + "&" + _v.join("&")).done(function() {
|
||||||
|
actionSuccess(_data.checkAction)
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
$.ajax(ListCheckData.url + "?" + ListCheckData.values.join("&")).done(function() {
|
$.ajax(_t + "?" + _v.join("&")).done(function() {
|
||||||
actionSuccess(ListCheckData.action);
|
actionSuccess(_data.checkAction)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
$('#dialog').modal('hide');
|
$('#dialog').modal('hide');
|
||||||
|
|
|
@ -2,19 +2,12 @@ $(function() {
|
||||||
$(".post_preview").click(function(){
|
$(".post_preview").click(function(){
|
||||||
$("#main-wrap").after("<span id='show_preview'></span>");
|
$("#main-wrap").after("<span id='show_preview'></span>");
|
||||||
|
|
||||||
var preview_url = $(this).attr('url');
|
$.post($(this).attr('url'), $(".previewable").serialize() ,function(data){
|
||||||
|
$('#show_preview .modal').modal();
|
||||||
$("form.previewable").ajaxSubmit({
|
|
||||||
beforeSubmit: function(a,f,o){
|
|
||||||
o.dataType = 'script';
|
|
||||||
o.url = preview_url;
|
|
||||||
o.type = 'post';
|
|
||||||
},success: function(msg) {
|
|
||||||
$('#show_preview .modal').modal()
|
|
||||||
$('#show_preview .modal').height(function() {
|
$('#show_preview .modal').height(function() {
|
||||||
return $(window).height() * 0.7;
|
return $(window).height() * 0.7;
|
||||||
});
|
});
|
||||||
}});
|
},'script');
|
||||||
});
|
});
|
||||||
$(".preview_trigger").click(function(){
|
$(".preview_trigger").click(function(){
|
||||||
$("#main-wrap").after("<span id='show_preview'></span>");
|
$("#main-wrap").after("<span id='show_preview'></span>");
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
window.SocialShareButton =
|
||||||
|
openUrl : (url) ->
|
||||||
|
window.open(url)
|
||||||
|
false
|
||||||
|
|
||||||
|
share : (el) ->
|
||||||
|
site = $(el).data('site')
|
||||||
|
title = encodeURIComponent($(el).parent().data('title'))
|
||||||
|
img = encodeURIComponent($(el).parent().data("img"))
|
||||||
|
fb_url = encodeURIComponent($(el).parent().data("fb_url"))
|
||||||
|
url = encodeURIComponent(location.href)
|
||||||
|
switch site
|
||||||
|
when "weibo"
|
||||||
|
SocialShareButton.openUrl("http://v.t.sina.com.cn/share/share.php?url=#{url}&pic=#{img}&title=#{title}&content=utf-8")
|
||||||
|
when "twitter"
|
||||||
|
SocialShareButton.openUrl("https://twitter.com/home?status=#{title}: #{url}")
|
||||||
|
when "douban"
|
||||||
|
SocialShareButton.openUrl("http://www.douban.com/recommend/?url=#{url}&title=#{title}&image=#{img}")
|
||||||
|
when "facebook"
|
||||||
|
SocialShareButton.openUrl("http://www.facebook.com/sharer.php?t=#{title}&u=#{fb_url}")
|
||||||
|
when "qq"
|
||||||
|
SocialShareButton.openUrl("http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=#{url}&title=#{title}&pics=#{img}")
|
||||||
|
when "tqq"
|
||||||
|
SocialShareButton.openUrl("http://share.v.t.qq.com/index.php?c=share&a=index&url=#{url}&title=#{title}&pic=#{img}")
|
||||||
|
when "baidu"
|
||||||
|
SocialShareButton.openUrl("http://apps.hi.baidu.com/share/?url=#{url}&title=#{title}&content=")
|
||||||
|
when "kaixin001"
|
||||||
|
SocialShareButton.openUrl("http://www.kaixin001.com/rest/records.php?url=#{url}&content=#{title}&style=11&pic=#{img}")
|
||||||
|
when "renren"
|
||||||
|
SocialShareButton.openUrl("http://widget.renren.com/dialog/share?resourceUrl=#{url}&title=#{title}&description=")
|
||||||
|
when "google_plus"
|
||||||
|
SocialShareButton.openUrl("https://plus.google.com/share?url=#{url}&t=#{title}")
|
||||||
|
false
|
|
@ -10,7 +10,7 @@ $(document).ready(function() {
|
||||||
type: 'GET',
|
type: 'GET',
|
||||||
url: $(this).attr("rel"),
|
url: $(this).attr("rel"),
|
||||||
dataType: 'script',
|
dataType: 'script',
|
||||||
data: {ids: ids},
|
data: {field: $(this).attr("field"), ids: ids},
|
||||||
success: function (msg) {
|
success: function (msg) {
|
||||||
$("#member-filter").modal('show'); },
|
$("#member-filter").modal('show'); },
|
||||||
error: function(){
|
error: function(){
|
||||||
|
@ -20,6 +20,11 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(document).on('click', ".remove_user", function(){
|
||||||
|
$(this).parent().remove();
|
||||||
|
});
|
||||||
|
|
||||||
$("#remove_users").on('click', function(){
|
$("#remove_users").on('click', function(){
|
||||||
var ids = [];
|
var ids = [];
|
||||||
var users = $('.selected_user input[type="checkbox"]:checked');
|
var users = $('.selected_user input[type="checkbox"]:checked');
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
$(document).ajaxStop(function() {
|
||||||
|
$('.nav').find('.dropdown').on({
|
||||||
|
mouseleave: function() {
|
||||||
|
$(this).removeClass("open");
|
||||||
|
},
|
||||||
|
mouseenter: function() {
|
||||||
|
$(this).addClass("open")
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
|
@ -4,8 +4,8 @@
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
padding: 0 0 0 10px!important;
|
padding: 0 0 0 10px!important;
|
||||||
}
|
}
|
||||||
.listCheckHead input[type="checkbox"],
|
.listCheckHead .list-check,
|
||||||
.listCheck input[type="checkbox"] {
|
.listCheck .list-check {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
margin: -12px 0 0 -1px;
|
margin: -12px 0 0 -1px;
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
||||||
|
|
|
@ -0,0 +1,230 @@
|
||||||
|
/* Member Filter */
|
||||||
|
#select_user #select_user_modal.modal {
|
||||||
|
width: 80%;
|
||||||
|
margin-left: -40%;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body {
|
||||||
|
max-height: 425px;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body form {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body form fieldset {
|
||||||
|
min-height: 360px;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .radio.inline,
|
||||||
|
#select_user #select_user_modal .modal-body .checkbox.inline {
|
||||||
|
display: inline-block;
|
||||||
|
padding-top: 5px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
vertical-align: middle;
|
||||||
|
min-width: 100px;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .form-actions {
|
||||||
|
margin: 20px 0 0;
|
||||||
|
padding: 10px 0 0;
|
||||||
|
background-color: transparent;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano {
|
||||||
|
width: 160px;
|
||||||
|
min-height: 425px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano .pane {
|
||||||
|
right: 6px;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano > .content > .nav-tabs {
|
||||||
|
width: 140px;
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
border-right: 1px solid #ddd;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano > .content > .nav-tabs > li {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano > .content > .nav-tabs > li > a {
|
||||||
|
min-width: 74px;
|
||||||
|
margin-right: 0;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano > .content > .nav-tabs > li > a {
|
||||||
|
margin-right: -1px;
|
||||||
|
-webkit-border-radius: 4px 0 0 4px;
|
||||||
|
-moz-border-radius: 4px 0 0 4px;
|
||||||
|
border-radius: 4px 0 0 4px;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano > .content > .nav-tabs > li > a:hover {
|
||||||
|
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano > .content > .nav-tabs .active > a,
|
||||||
|
#select_user #select_user_modal .modal-body .tabs-left > .nano > .content > .nav-tabs .active > a:hover {
|
||||||
|
border-color: #ddd transparent #ddd #ddd;
|
||||||
|
*border-right-color: #ffffff;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .member-filter-options {
|
||||||
|
float: left;
|
||||||
|
display: inline-block;
|
||||||
|
width: 175px;
|
||||||
|
min-height: 425px;
|
||||||
|
margin-right: 10px;
|
||||||
|
padding: 0 10px 0 0;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .member-filter-options select {
|
||||||
|
width: 165px;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .member-filter-options .btn {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#select_user #select_user_modal .member-filter-result {
|
||||||
|
padding-left: 15px;
|
||||||
|
min-height: 360px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Check Box Card */
|
||||||
|
.checkbox-card {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.checkbox-card li {
|
||||||
|
position: relative;
|
||||||
|
list-style: none;
|
||||||
|
color: #FFFFFF;
|
||||||
|
width: 180px;
|
||||||
|
height: 40px;
|
||||||
|
margin: 0 10px 10px 0;
|
||||||
|
float: left;
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #cccccc;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
-webkit-transition: all .2s linear;
|
||||||
|
-moz-transition: all .2s linear;
|
||||||
|
-o-transition: all .2s linear;
|
||||||
|
transition: all .2s linear;
|
||||||
|
}
|
||||||
|
.checkbox-card li.mark {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
||||||
|
filter: alpha(opacity=0);
|
||||||
|
opacity: 0;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
.checkbox-card li:hover {
|
||||||
|
background-color: #0088cc;
|
||||||
|
}
|
||||||
|
.checkbox-card li:after {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
clear: both;
|
||||||
|
height: 0;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
.checkbox-card li.active:before {
|
||||||
|
-webkit-text-size-adjust : none;
|
||||||
|
font-family: FontAwesome;
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
color: #FFF;
|
||||||
|
text-decoration: inherit;
|
||||||
|
content: "\f00c";
|
||||||
|
position: absolute;
|
||||||
|
right: 0px;
|
||||||
|
top: 0px;
|
||||||
|
line-height: 14px;
|
||||||
|
text-indent: 10px;
|
||||||
|
font-size: 10px;
|
||||||
|
width: 0px;
|
||||||
|
height: 0px;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 0 22px 22px 0;
|
||||||
|
border-color: transparent #51a351 transparent transparent;
|
||||||
|
}
|
||||||
|
.checkbox-card li.active label {
|
||||||
|
}
|
||||||
|
.checkbox-card li label {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
.checkbox-card li input {
|
||||||
|
opacity: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
margin: 0;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
.checkbox-card li label span {
|
||||||
|
-webkit-text-size-adjust : none;
|
||||||
|
font-size: 10px;
|
||||||
|
display: block;
|
||||||
|
width: 130px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
color: #666666;
|
||||||
|
margin-top: -3px;
|
||||||
|
}
|
||||||
|
.checkbox-card li:hover label span,
|
||||||
|
.checkbox-card li:hover label span.user-name {
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
.checkbox-card li label span.user-name {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #363636;
|
||||||
|
padding: 2px 0 0;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
.checkbox-card li .user-pic {
|
||||||
|
float: left;
|
||||||
|
margin-right: 5px;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
#selected_users .selected_user {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
#selected_users .selected_user .remove_user {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
.promoter {
|
||||||
|
border-color: #CCCCCC;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 0 1px;
|
||||||
|
padding: 0 10px 5px 10px;
|
||||||
|
}
|
||||||
|
.promoter > div {
|
||||||
|
border-bottom: 1px solid #CCCCCC;
|
||||||
|
}
|
||||||
|
.promoter > div:after {
|
||||||
|
content: "";
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
.promoter > div > span {
|
||||||
|
display: block;
|
||||||
|
margin-left: 70px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
|
.promoter p {
|
||||||
|
width: 70px;
|
||||||
|
float: left;
|
||||||
|
text-align:right;
|
||||||
|
}*/
|
|
@ -0,0 +1,90 @@
|
||||||
|
.social-share-button-baidu {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") 0px 0px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-delicious {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -16px 0px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-douban {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") 0px -16px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-email {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -16px -16px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-facebook {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -32px 0px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-flickr {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -32px -16px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-google {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") 0px -32px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-google_plus {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -16px -32px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-kaixin001 {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -32px -32px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-qq {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -48px 0px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-renren {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -48px -16px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-tqq {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -48px -32px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-twitter {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") 0px -48px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-weibo {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -16px -48px no-repeat;
|
||||||
|
}
|
||||||
|
.social-share-button-rss {
|
||||||
|
display:inline-block;
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
background:url("/assets/social-share-button.png") -32px -48px no-repeat;
|
||||||
|
}
|
|
@ -36,26 +36,6 @@ class Admin::PagesController < Admin::ItemsController
|
||||||
@item.page_contexts.build(:create_user_id => current_user.id, :update_user_id => current_user.id )
|
@item.page_contexts.build(:create_user_id => current_user.id, :update_user_id => current_user.id )
|
||||||
end
|
end
|
||||||
if @item.update_attributes(params[:page])
|
if @item.update_attributes(params[:page])
|
||||||
unless params[:page]['frontend_field'].nil?
|
|
||||||
frontend_class = []
|
|
||||||
frontend_field_name = []
|
|
||||||
frontend_sat_to_link = []
|
|
||||||
|
|
||||||
params[:page]['frontend_field'].each do |field|
|
|
||||||
frontend_class << field['class']
|
|
||||||
frontend_field_name << field['field_name']
|
|
||||||
frontend_sat_to_link << field['sat_to_link']
|
|
||||||
end
|
|
||||||
|
|
||||||
@item['frontend_class'] = frontend_class
|
|
||||||
@item['frontend_field_name'] = frontend_field_name
|
|
||||||
@item['frontend_sat_to_link'] = frontend_sat_to_link
|
|
||||||
end
|
|
||||||
|
|
||||||
@item['tag'] = params[:page]['tag'] == nil ? [] : params[:page]['tag']
|
|
||||||
|
|
||||||
@item.save
|
|
||||||
|
|
||||||
render 'admin/items/reload_items'
|
render 'admin/items/reload_items'
|
||||||
else
|
else
|
||||||
@error = error_messages_for(@item)
|
@error = error_messages_for(@item)
|
||||||
|
|
|
@ -72,10 +72,7 @@ class Admin::SitesController < OrbitBackendController
|
||||||
end
|
end
|
||||||
|
|
||||||
def system_info
|
def system_info
|
||||||
@disk_free = `df -h /`.gsub("\n","<br/>").html_safe
|
|
||||||
@nginx_version = %x[/opt/nginx/sbin/nginx -v 2>&1].gsub("\n","<br/> ").html_safe
|
|
||||||
@mongo_version = `mongod --version`.split("\n")[0].html_safe
|
|
||||||
@linux_version = `lsb_release -d`.split(":")[1].html_safe
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def search_engine
|
def search_engine
|
||||||
|
|
|
@ -1,95 +1,22 @@
|
||||||
require 'net/http'
|
|
||||||
require 'uri'
|
|
||||||
require 'fileutils'
|
|
||||||
require 'zip/zip'
|
|
||||||
class Admin::TemplateStoreController < OrbitBackendController
|
class Admin::TemplateStoreController < OrbitBackendController
|
||||||
|
|
||||||
|
|
||||||
@@store_domain = STORE_CONFIG[:store_settings]["url"]
|
@@store_domain = STORE_CONFIG[:store_settings]["url"]
|
||||||
def index
|
def index
|
||||||
@store = @@store_domain
|
@store = @@store_domain
|
||||||
@design_ids = Design.all.map{|d| d.template_store_id}
|
|
||||||
@templates = JSON.parse(get_templates)
|
@templates = JSON.parse(get_templates)
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
@store = @@store_domain
|
@store = @@store_domain
|
||||||
@design_ids = Design.all.map{|d| d.template_store_id}
|
|
||||||
@template = JSON.parse(get_template(params[:id])) rescue nil
|
@template = JSON.parse(get_template(params[:id])) rescue nil
|
||||||
end
|
end
|
||||||
|
|
||||||
def download_theme
|
def download_theme
|
||||||
url = @@store_domain + params["url"]
|
render :json => {"success"=>true}.to_json
|
||||||
url_base = url.split('/')[2]
|
|
||||||
url_path = '/'+url.split('/')[3..-1].join('/')
|
|
||||||
Net::HTTP.start(url_base) do |http|
|
|
||||||
open("public/#{params['slug']}.zip", "wb") do |file|
|
|
||||||
http.get(url_path) do |str|
|
|
||||||
file.write(str)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
upload_package("#{params['slug']}.zip", params["id"])
|
|
||||||
File.delete("public/#{params['slug']}.zip")
|
|
||||||
render :json => {"success"=>true,"url"=>@@store_domain + params["url"]}.to_json
|
|
||||||
end
|
end
|
||||||
protected
|
protected
|
||||||
|
|
||||||
def upload_package(package_name,template_store_id)
|
|
||||||
|
|
||||||
temp_file = Tempfile.new("temp_file")
|
|
||||||
original_file = File.open("#{Rails.root}/public/#{package_name}")
|
|
||||||
temp_file.write(original_file.read.force_encoding('UTF-8'))
|
|
||||||
temp_file.rewind
|
|
||||||
filename = File.basename(original_file,".zip")
|
|
||||||
unzip_design(temp_file, filename, template_store_id)
|
|
||||||
temp_file.close
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
def unzip_design(file, zip_name, template_store_id)
|
|
||||||
Zip::ZipFile.open(file) { |zip_file|
|
|
||||||
design = Design.new.from_json(zip_file.read("#{zip_name}/info.json"))
|
|
||||||
design.template_store_id = template_store_id
|
|
||||||
Dir.mktmpdir('f_path') { |dir|
|
|
||||||
themes_entries = []
|
|
||||||
javascripts_entries = []
|
|
||||||
images_entries = []
|
|
||||||
|
|
||||||
zip_file.entries.each do |entry|
|
|
||||||
case (path = entry.to_s)
|
|
||||||
when /\A(#{zip_name})\/(default\.css)\z/ #for default css
|
|
||||||
design.build_css_default(:file => get_temp_file(zip_file, dir, entry))
|
|
||||||
when /\A(#{zip_name})\/(reset\.css)\z/ #for reset css
|
|
||||||
design.build_css_reset(:file => get_temp_file(zip_file, dir, entry))
|
|
||||||
when /\A(#{zip_name})\/(layout\.html)\z/ #for layout html
|
|
||||||
design.build_layout(:file => get_temp_file(zip_file, dir, entry))
|
|
||||||
when /\A(#{zip_name})\/(themes)\/.*(\.css)\z/ #for themes css
|
|
||||||
themes_entries << entry
|
|
||||||
when /\A(#{zip_name})\/(javascripts)\/.*(\.js)\z/ #for js
|
|
||||||
javascripts_entries << entry
|
|
||||||
when /\A(#{zip_name})\/(images)\/.*((\.jpg)|(\.png)|(\.gif))\z/ #for img
|
|
||||||
images_entries << entry
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
['themes', 'javascripts', 'images'].each do |type|
|
|
||||||
eval("#{type}_entries").each do |entry|
|
|
||||||
eval("design.#{type}").build(:file => get_temp_file(zip_file, dir, entry))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
}
|
|
||||||
design.save
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def get_temp_file(zip_file, dir, entry)
|
|
||||||
filename = File.basename(entry.to_s)
|
|
||||||
temp_file = File.new(dir + '/' + filename, 'w+')
|
|
||||||
temp_file.write (zip_file.read entry ).force_encoding('UTF-8')
|
|
||||||
temp_file
|
|
||||||
end
|
|
||||||
|
|
||||||
def get_template(id)
|
def get_template(id)
|
||||||
uri = URI.parse("#{@@store_domain}/api/templates/#{id}")
|
uri = URI.parse("#{@@store_domain}/api/templates/#{id}")
|
||||||
http = Net::HTTP.new(uri.host, uri.port)
|
http = Net::HTTP.new(uri.host, uri.port)
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
class OrbitBackendController < ApplicationController
|
class OrbitBackendController < ApplicationController
|
||||||
include OrbitCategory::Categorizing
|
include OrbitCategory::Categorizing
|
||||||
include OrbitCoreLib::Authorization
|
include OrbitCoreLib::Authorization
|
||||||
include OrbitCoreLib::PermissionUtility
|
|
||||||
include OrbitTag::Tagging
|
include OrbitTag::Tagging
|
||||||
include AdminHelper
|
include AdminHelper
|
||||||
include ApplicationHelper
|
include ApplicationHelper
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
class SamlLoginsController < ApplicationController
|
||||||
|
|
||||||
|
require "net/http"
|
||||||
|
require "uri"
|
||||||
|
require 'rexml/document'
|
||||||
|
include REXML
|
||||||
|
|
||||||
|
def index
|
||||||
|
|
||||||
|
if params[:wa] == "wsignoutcleanup1.0" #logout
|
||||||
|
|
||||||
|
redirect_to :root
|
||||||
|
|
||||||
|
else #login
|
||||||
|
|
||||||
|
|
||||||
|
@wresult = params[:wresult]
|
||||||
|
@wctx = params[:wctx]
|
||||||
|
|
||||||
|
@main_url = LIST[:sites][@wctx]['url']
|
||||||
|
@main_public_key = LIST[:sites][@wctx]['key']
|
||||||
|
|
||||||
|
@doc = REXML::Document.new @wresult
|
||||||
|
|
||||||
|
public_key = OpenSSL::PKey::RSA.new(@main_public_key)
|
||||||
|
encrypted_data = public_key.public_encrypt(@doc.elements["//saml:AttributeValue"].text)
|
||||||
|
|
||||||
|
redirect_to "http://#{@main_url}/user_login?" + { :wresult => encrypted_data }.to_param
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
|
@ -0,0 +1,40 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
|
class SessionsController < Devise::SessionsController
|
||||||
|
prepend_before_filter :require_no_authentication, :only => [ :new, :create ]
|
||||||
|
|
||||||
|
|
||||||
|
def create
|
||||||
|
@site = Site.first
|
||||||
|
|
||||||
|
private_key = OpenSSL::PKey::RSA.new(@site.private_key)
|
||||||
|
wresult = private_key.private_decrypt(request.params['wresult'])
|
||||||
|
|
||||||
|
@ids = wresult.split("@")
|
||||||
|
|
||||||
|
login_uid = @ids[0]
|
||||||
|
|
||||||
|
resource = User.first(conditions:{user_id: login_uid})
|
||||||
|
|
||||||
|
if !resource.blank?
|
||||||
|
resource_name = resource.class.to_s.downcase
|
||||||
|
sign_in(resource_name, resource)
|
||||||
|
session[:user_id_type] = "myntu"
|
||||||
|
redirect_to after_sign_in_path_for(resource)
|
||||||
|
else
|
||||||
|
flash[:error] = "很抱歉,您無此權限或帳號登入本站,請洽本站管理員<br />Sorry, you don't have the account or authority to login. Please contact the website administrator."
|
||||||
|
redirect_to :root
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy
|
||||||
|
@user_id_type = session[:user_id_type]
|
||||||
|
sign_out
|
||||||
|
if @user_id_type == "myntu"
|
||||||
|
redirect_to "https://adfs.ntu.edu.tw/adfs/ls/?wa=wsignout1.0&wreply=https://galogin.ntu.edu.tw"
|
||||||
|
else
|
||||||
|
redirect_to root_path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
|
@ -195,6 +195,7 @@ module ApplicationHelper
|
||||||
stylesheets << "<link href='#{page.design.css_reset.file.url}' rel='stylesheet' type='text/css' />\n" if page.design.css_reset
|
stylesheets << "<link href='#{page.design.css_reset.file.url}' rel='stylesheet' type='text/css' />\n" if page.design.css_reset
|
||||||
# stylesheets << "<link href='#{asset_path 'banner_nav.css'}' rel='stylesheet' type='text/css' />\n"
|
# stylesheets << "<link href='#{asset_path 'banner_nav.css'}' rel='stylesheet' type='text/css' />\n"
|
||||||
# stylesheets << "<link href='#{asset_path 'default_widget.css'}' rel='stylesheet' type='text/css' />\n"
|
# stylesheets << "<link href='#{asset_path 'default_widget.css'}' rel='stylesheet' type='text/css' />\n"
|
||||||
|
stylesheets << "<link href='/assets/social-share-button.css' rel='stylesheet' type='text/css' />\n"
|
||||||
stylesheets << "<link href='#{page.design.css_default.file.url}' rel='stylesheet' type='text/css' />\n" if page.design.css_default
|
stylesheets << "<link href='#{page.design.css_default.file.url}' rel='stylesheet' type='text/css' />\n" if page.design.css_default
|
||||||
theme = page.design.themes.detect{ |d| d.id == page.theme_id }
|
theme = page.design.themes.detect{ |d| d.id == page.theme_id }
|
||||||
stylesheets << "<link href='#{theme.file.url}' rel='stylesheet' type='text/css' />\n" if theme
|
stylesheets << "<link href='#{theme.file.url}' rel='stylesheet' type='text/css' />\n" if theme
|
||||||
|
@ -203,8 +204,12 @@ module ApplicationHelper
|
||||||
|
|
||||||
def page_javascripts(page, edit=nil)
|
def page_javascripts(page, edit=nil)
|
||||||
javascripts = ''
|
javascripts = ''
|
||||||
|
unless edit
|
||||||
|
javascripts << "<script type='text/javascript' src='/assets/orbit-bar-search.js'></script>\n"
|
||||||
|
end
|
||||||
# javascripts << "<script type='text/javascript' src='/assets/lib/jquery.preload-min.js'></script>\n"
|
# javascripts << "<script type='text/javascript' src='/assets/lib/jquery.preload-min.js'></script>\n"
|
||||||
# javascripts << "<script type='text/javascript' src='/assets/jquery.cycle.all.latest.js'></script>\n"
|
# javascripts << "<script type='text/javascript' src='/assets/jquery.cycle.all.latest.js'></script>\n"
|
||||||
|
javascripts << "<script type='text/javascript' src='/assets/lib/social-share-button.js'></script>\n"
|
||||||
page.design.javascripts.each do |js|
|
page.design.javascripts.each do |js|
|
||||||
javascripts << "<script type='text/javascript' src='#{js.file.url}'></script>"
|
javascripts << "<script type='text/javascript' src='#{js.file.url}'></script>"
|
||||||
end
|
end
|
||||||
|
@ -301,7 +306,7 @@ module ApplicationHelper
|
||||||
|
|
||||||
# NTU link
|
# NTU link
|
||||||
def get_link(site_number)
|
def get_link(site_number)
|
||||||
"http://#{request.host}:2#{site_number}00"
|
"http://#{site_number}.#{request.domain(3)}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def sortable(column, title = nil, options = {})
|
def sortable(column, title = nil, options = {})
|
||||||
|
|
|
@ -12,13 +12,13 @@ module OrbitBackendHelper
|
||||||
|
|
||||||
def show_form_status_field(object)
|
def show_form_status_field(object)
|
||||||
#by_object = (!object.is_expired? and object.is_pending?)
|
#by_object = (!object.is_expired? and object.is_pending?)
|
||||||
by_user = ((object.category.user_is_authorized_by_title?(current_user,"category_approval_#{@module_app.key}") rescue nil) or is_manager? or is_admin?)
|
by_user = ((object.category.authed_users("approval_#{@module_app.key}").include?(current_user) rescue nil) or is_manager? or is_admin? or is_sub_manager?)
|
||||||
by_user
|
by_user
|
||||||
end
|
end
|
||||||
|
|
||||||
def show_approval_link(object)
|
def show_approval_link(object)
|
||||||
by_object = (!object.is_expired? and object.is_pending?)
|
by_object = (!object.is_expired? and object.is_pending?)
|
||||||
by_user = ((object.category.user_is_authorized_by_title?(current_user,"category_approval_#{@module_app.key}") rescue nil) or is_manager? or is_admin?)
|
by_user = ((object.category.authed_users("approval_#{@module_app.key}").include?(current_user) rescue nil) or is_manager? or is_admin? or is_sub_manager?)
|
||||||
by_object and by_user
|
by_object and by_user
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -306,7 +306,7 @@ module OrbitBackendHelper
|
||||||
content_tag :li, link_to(t(quick[:translation] || :authorization_), eval("#{quick[:link]}"), class: "preview_trigger #{quick[:class]}")
|
content_tag :li, link_to(t(quick[:translation] || :authorization_), eval("#{quick[:link]}"), class: "preview_trigger #{quick[:class]}")
|
||||||
end
|
end
|
||||||
when 'edit'
|
when 'edit'
|
||||||
if authorization && approvable || is_manager?
|
if authorization && approvable
|
||||||
content_tag :li, link_to(t(quick[:translation] || :edit), quick[:link].nil? ? '#' : eval("#{quick[:link]}('#{object.id}'#{link_option})"), class: quick[:class], data: eval("#{quick[:data]}"))
|
content_tag :li, link_to(t(quick[:translation] || :edit), quick[:link].nil? ? '#' : eval("#{quick[:link]}('#{object.id}'#{link_option})"), class: quick[:class], data: eval("#{quick[:data]}"))
|
||||||
end
|
end
|
||||||
when 'delete'
|
when 'delete'
|
||||||
|
@ -320,20 +320,10 @@ module OrbitBackendHelper
|
||||||
if show_reject_reason(object)
|
if show_reject_reason(object)
|
||||||
content_tag :li, link_to(t(quick[:translation] || :rejected_reason) + ' ' + truncate(object.not_checked_reason, :length => 10), '#', rel: "tooltip", 'data-original-title' => (wrap_string_with(object.not_checked_reason, :line_width => 24)), class: "reject_info #{quick[:class]}")
|
content_tag :li, link_to(t(quick[:translation] || :rejected_reason) + ' ' + truncate(object.not_checked_reason, :length => 10), '#', rel: "tooltip", 'data-original-title' => (wrap_string_with(object.not_checked_reason, :line_width => 24)), class: "reject_info #{quick[:class]}")
|
||||||
end
|
end
|
||||||
else
|
|
||||||
if quick[:define_link]
|
|
||||||
if quick[:condition_option]
|
|
||||||
if eval("#{quick[:condition_option]}")
|
|
||||||
content_tag :li, link_to(t(quick[:translation]), eval("#{quick[:define_link]}"), class: quick[:class])
|
|
||||||
end
|
|
||||||
else
|
|
||||||
content_tag :li, link_to(t(quick[:translation]), eval("#{quick[:define_link]}"), class: quick[:class])
|
|
||||||
end
|
|
||||||
else
|
else
|
||||||
content_tag :li, link_to(t(quick[:translation]), eval("#{quick[:link]}('#{object.id}')"), class: quick[:class])
|
content_tag :li, link_to(t(quick[:translation]), eval("#{quick[:link]}('#{object.id}')"), class: quick[:class])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
def get_sorted_objects(objects, field)
|
def get_sorted_objects(objects, field)
|
||||||
if field
|
if field
|
||||||
|
@ -355,7 +345,7 @@ module OrbitBackendHelper
|
||||||
if object.is_a?(klass.constantize)
|
if object.is_a?(klass.constantize)
|
||||||
autorized ||= object.user_can_sub_manage?(current_user)
|
autorized ||= object.user_can_sub_manage?(current_user)
|
||||||
else
|
else
|
||||||
autorized ||= object.send(klass.underscore).user_can_sub_manage?(current_user)
|
autorized ||= object.send(klass.underscore).user_can_sub_manage?(current_user) rescue nil
|
||||||
end
|
end
|
||||||
autorized
|
autorized
|
||||||
end
|
end
|
||||||
|
@ -443,10 +433,6 @@ module OrbitBackendHelper
|
||||||
res << "<li class='active'>#{t(:search_engine)}</li>"
|
res << "<li class='active'>#{t(:search_engine)}</li>"
|
||||||
when 'site_info'
|
when 'site_info'
|
||||||
res << "<li class='active'>#{t(:site_info)}</li>"
|
res << "<li class='active'>#{t(:site_info)}</li>"
|
||||||
when 'update_manager'
|
|
||||||
res << "<li class='active'>#{t(:update_manager)}</li>"
|
|
||||||
when 'system_info'
|
|
||||||
res << "<li class='active'>#{t("site.system_preference")}</li>"
|
|
||||||
end
|
end
|
||||||
when 'items'
|
when 'items'
|
||||||
res << "<li class='active'>#{t(:structure)}</li>"
|
res << "<li class='active'>#{t(:structure)}</li>"
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
class GetAnnouncementFromRss
|
||||||
|
@queue = :high
|
||||||
|
|
||||||
|
def self.perform()
|
||||||
|
%x(ruby "#{Rails.root}/lib/rss_ntu_job.rb")
|
||||||
|
end
|
||||||
|
end
|
|
@ -2,30 +2,28 @@ class CronMail < ActionMailer::Base
|
||||||
default :from => "orbit_test@rulingcom.com"
|
default :from => "orbit_test@rulingcom.com"
|
||||||
|
|
||||||
def get_settings
|
def get_settings
|
||||||
@site = Site.first
|
# @@smtp_settings = {
|
||||||
|
# :address => "smtp.gmail.com",
|
||||||
|
# :port => '587',
|
||||||
|
# :domain => "smtp.gmail.com",
|
||||||
|
# :authentication => "plain",
|
||||||
|
# :user_name => "redmine@rulingcom.com",
|
||||||
|
# :password => "rulingredmine",
|
||||||
|
# :tls => true,
|
||||||
|
# :enable_starttls_auto => true
|
||||||
|
# }
|
||||||
@@smtp_settings = {
|
@@smtp_settings = {
|
||||||
:enable_starttls_auto => @site['site_settings']['enable_starttls_auto'],
|
:address => @site['mail_settings']['address'],
|
||||||
:address => @site['site_settings']['address'],
|
:port => @site['mail_settings']['port'],
|
||||||
:port => @site['site_settings']['port'],
|
:domain => @site['mail_settings']['domain'],
|
||||||
:domain => @site['site_settings']['domain'],
|
:authentication => @site['mail_settings']['authentication'],
|
||||||
:authentication => @site['site_settings']['authentication'],
|
:user_name => @site['mail_settings']['user_name'],
|
||||||
:user_name => @site['site_settings']['user_name'],
|
:password => @site['mail_settings']['password'],
|
||||||
:password => @site['site_settings']['password']
|
:tls => @site['mail_settings']['tls'],
|
||||||
|
:enable_starttls_auto => @site['mail_settings']['enable_starttls_auto']
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.smtp_settings
|
|
||||||
@site = Site.first
|
|
||||||
@@smtp_settings = {
|
|
||||||
:enable_starttls_auto => @site['site_settings']['enable_starttls_auto'],
|
|
||||||
:address => @site['site_settings']['address'],
|
|
||||||
:port => @site['site_settings']['port'],
|
|
||||||
:domain => @site['site_settings']['domain'],
|
|
||||||
:authentication => @site['site_settings']['authentication'],
|
|
||||||
:user_name => @site['site_settings']['user_name'],
|
|
||||||
:password => @site['site_settings']['password']
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def time_check(msg)
|
def time_check(msg)
|
||||||
get_settings
|
get_settings
|
||||||
|
|
|
@ -7,7 +7,6 @@ class Design
|
||||||
field :intro, :type => String
|
field :intro, :type => String
|
||||||
field :title, :type => String
|
field :title, :type => String
|
||||||
field :version, :type => String
|
field :version, :type => String
|
||||||
field :template_store_id, :type => String
|
|
||||||
|
|
||||||
mount_uploader :zip_file, AssetUploader
|
mount_uploader :zip_file, AssetUploader
|
||||||
|
|
||||||
|
|
|
@ -194,7 +194,6 @@ class ModuleApp
|
||||||
# authorization
|
# authorization
|
||||||
def update_auth_approval_users
|
def update_auth_approval_users
|
||||||
user_ids = self.auth_approvals.inject([]) do |users, auth|
|
user_ids = self.auth_approvals.inject([]) do |users, auth|
|
||||||
auth = auth.class.find(auth.id)
|
|
||||||
users += auth.authorized_users.map{|user| user.id}
|
users += auth.authorized_users.map{|user| user.id}
|
||||||
end
|
end
|
||||||
self.update_attribute(:auth_approval_users, user_ids.uniq)
|
self.update_attribute(:auth_approval_users, user_ids.uniq)
|
||||||
|
|
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
<li title="<%= t('update_manager') %>"><%= link_to admin_site_update_manager_path(@site), :class => active_for_action('sites', 'update_manager') do %><span><i class="icon-refresh"></i></span><%end%></li>
|
<li title="<%= t('update_manager') %>"><%= link_to admin_site_update_manager_path(@site), :class => active_for_action('sites', 'update_manager') do %><span><i class="icon-refresh"></i></span><%end%></li>
|
||||||
|
|
||||||
<li title="<%= t("site.system_preference") %>"><%= link_to admin_site_system_info_path(@site), :class => active_for_action('sites', 'system_info') do %><span><i class="icons-info-2"></i></span><%end%></li>
|
<!-- <li title="System Info"><a href="/orbit_4.0.1/admin/system_info/index.shtml?sidebarNavList=8&subNavBlockList=0"><span><i class="icons-info-2"></i></span></a></li>
|
||||||
</ul>
|
--> </ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="sub-nav-arrow"></div>
|
<div class="sub-nav-arrow"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
<div class="form-actions">
|
<div class="form-actions">
|
||||||
<button type="button" class="btn" data-dismiss="modal"><%= t(:cancel) %></button>
|
<button type="button" class="btn" data-dismiss="modal"><%= t(:cancel) %></button>
|
||||||
<%= submit_tag t(:submit), class: "btn btn-primary" %>
|
<%= submit_tag t(:submit), class: "btn btn-primary" %>
|
||||||
|
<%= hidden_field_tag field, @field %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
@ -53,6 +54,7 @@
|
||||||
<div class="form-actions condition">
|
<div class="form-actions condition">
|
||||||
<button type="button" class="btn" data-dismiss="modal"><%= t(:cancel) %></button>
|
<button type="button" class="btn" data-dismiss="modal"><%= t(:cancel) %></button>
|
||||||
<%= submit_tag t(:submit), class: "btn btn-primary" %>
|
<%= submit_tag t(:submit), class: "btn btn-primary" %>
|
||||||
|
<%= hidden_field_tag field, @field %>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<% unless users.blank? %>
|
||||||
|
<div class="promoter-block">
|
||||||
|
<p class="promoter-title"><%= t(:promoter) %>:</p>
|
||||||
|
<ul>
|
||||||
|
<% users.each do |user| %>
|
||||||
|
<li class="promoter">
|
||||||
|
<p>
|
||||||
|
<%= link_to user.name, "mailto:#{user.email}", class: "promoter-name" %> / <span class="promoter-phone"><%= user.office_tel %></span>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
|
@ -0,0 +1,16 @@
|
||||||
|
<% content_for :page_specific_javascript do -%>
|
||||||
|
<%= javascript_include_tag "member-selection" %>
|
||||||
|
<%= javascript_include_tag "lib/jquery.nanoscroller" %>
|
||||||
|
<%= javascript_include_tag "lib/checkbox.card" %>
|
||||||
|
<% end -%>
|
||||||
|
<% content_for :page_specific_css do -%>
|
||||||
|
<%= stylesheet_link_tag "member_select" %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div id="selected_users">
|
||||||
|
<%= render partial: 'admin/member_selects/user', collection: users, locals: {field: field} %>
|
||||||
|
<%= hidden_field_tag field %>
|
||||||
|
</div>
|
||||||
|
<%= link_to t(:add), '#', class: 'btn btn-primary btn-small select_user_modal', rel: select_members_admin_member_selects_path, field: field %>
|
||||||
|
</div>
|
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
<li title="<%= t('update_manager') %>"><%= link_to admin_site_update_manager_path(@site), :class => active_for_action('sites', 'update_manager') do %><span><i class="icon-refresh"></i></span><%end%></li>
|
<li title="<%= t('update_manager') %>"><%= link_to admin_site_update_manager_path(@site), :class => active_for_action('sites', 'update_manager') do %><span><i class="icon-refresh"></i></span><%end%></li>
|
||||||
|
|
||||||
<li title="<%= t("site.system_preference") %>"><%= link_to admin_site_system_info_path(@site), :class => active_for_action('sites', 'system_info') do %><span><i class="icons-info-2"></i></span><%end%></li>
|
<!-- <li title="System Info"><a href="/orbit_4.0.1/admin/system_info/index.shtml?sidebarNavList=8&subNavBlockList=0"><span><i class="icons-info-2"></i></span></a></li>
|
||||||
</ul>
|
--> </ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="sub-nav-arrow"></div>
|
<div class="sub-nav-arrow"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label muted"><%= t 'mail.domain' %></label>
|
<label class="control-label muted"><%= t 'mail.domain' %></label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<%= f.text_field :domain, :value => (@site['site_settings']['domain'] rescue nil), :class=>"input-large", :placeholder=>"Domain" %>
|
<%= f.text_field :port, :value => (@site['site_settings']['port'] rescue nil), :class=>"input-large", :placeholder=>"Domain" %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label muted"><%= t 'mail.password' %></label>
|
<label class="control-label muted"><%= t 'mail.password' %></label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<%= f.password_field :password, :value => (@site['site_settings']['password'] rescue nil), :class=>"input-large", :placeholder=>"Password" %>
|
<%= f.text_field :password, :value => (@site['site_settings']['password'] rescue nil), :class=>"input-large", :placeholder=>"Password" %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
<h1><%= I18n.t("site.system_preference") %></h1>
|
||||||
|
<ul class="nav nav-tabs" id="myTab">
|
||||||
|
<li class="active"><a href="#summary" data-toggle="tab"><%= I18n.t("site.system_preference_.tab_summary") %></a></li>
|
||||||
|
<li><a href="#commits" data-toggle="tab"><%= I18n.t("site.system_preference_.tab_commits") %></a></li>
|
||||||
|
<li><a href="#backups" data-toggle="tab"><%= I18n.t("site.system_preference_.tab_backups") %></a></li>
|
||||||
|
<li><a href="#resque_logs" data-toggle="tab"><%= I18n.t("site.system_preference_.tab_logs") %></a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="tab-content">
|
||||||
|
<div class="tab-pane active in" id="summary">
|
||||||
|
<h2><%= I18n.t("site.system_preference_.summary.disk_space") %>:</h2>
|
||||||
|
<%= content_tag :p,@site.disk_space.gsub(/\n/,"<br />").html_safe if @site.disk_space %>
|
||||||
|
<h2><%= I18n.t("site.system_preference_.summary.code_update_at") %>: </h2>
|
||||||
|
<% @site.system_package_info.each do |index,value| %>
|
||||||
|
<h2><%= index.titleize %> <%= I18n.t("site.system_preference_.summary.version") %>:</h2>
|
||||||
|
<%= content_tag :p,value %>
|
||||||
|
<% end %>
|
||||||
|
<h2><%= I18n.t("site.system_preference_.summary.weekness_report") %>:<%= '' %></h2>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane" id="commits">
|
||||||
|
<% if @git_commit_list_file %>
|
||||||
|
<% @git_commit_list_file.lines do |line|%>
|
||||||
|
<%= line %><br/>
|
||||||
|
<% end%>
|
||||||
|
<% else %>
|
||||||
|
<div class="well"><%= I18n.t("site.system_preference_.summary.no_data") %></div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane" id="backups">
|
||||||
|
<%if @db_backup_list_file %>
|
||||||
|
<% @db_backup_list_file.lines do |line|%>
|
||||||
|
<%=line %><br/>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<div class="well"><%= I18n.t("site.system_preference_.summary.no_data") %></div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane" id="resque_logs">
|
||||||
|
<%if @db_backup_list_file %>
|
||||||
|
<% @resque_logs_file.lines do |line|%>
|
||||||
|
<%=line %><br/>
|
||||||
|
<% end if @resque_logs_file%>
|
||||||
|
<%else %>
|
||||||
|
<div class="well"><%= I18n.t("site.system_preference_.summary.no_data") %></div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -1,126 +1,5 @@
|
||||||
<%= stylesheet_link_tag "lib/wrap-nav" %>
|
|
||||||
<%= stylesheet_link_tag "lib/main-list" %>
|
|
||||||
<%= stylesheet_link_tag "lib/main-forms" %>
|
|
||||||
<%= stylesheet_link_tag "lib/fileupload.css" %>
|
|
||||||
<%= stylesheet_link_tag "lib/togglebox.css" %>
|
|
||||||
<%= stylesheet_link_tag "lib/list-check.css" %>
|
|
||||||
|
|
||||||
<%= javascript_include_tag "lib/site_set" %>
|
|
||||||
<%= javascript_include_tag "lib/list-check" %>
|
|
||||||
|
|
||||||
<% content_for :side_bar do %>
|
<% content_for :side_bar do %>
|
||||||
<%= render :partial => 'layouts/side_bar', :locals => {:link_name => t('site.settings'), :link_url => admin_site_site_info_path(@site), :icon => 'icons-cog', :side_bar_content => 'admin/sites/side_bar'} %>
|
<%= render :partial => 'layouts/side_bar', :locals => {:link_name => t('site.settings'), :link_url => admin_site_site_info_path(@site), :icon => 'icons-cog', :side_bar_content => 'admin/sites/side_bar'} %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<form class="form-horizontal main-forms">
|
system_info.html.erb
|
||||||
<fieldset>
|
|
||||||
<div class="input-area">
|
|
||||||
<div class="nav-name"><strong><%= t("preferences.classification") %></strong></div>
|
|
||||||
<ul class="nav nav-pills language-nav">
|
|
||||||
<li class="active"><a href="#overview" data-toggle="tab"><%= t("site.system_preference_.tab_summary") %></a></li>
|
|
||||||
<li><a href="#mail-cron-logs" data-toggle="tab"><%= t("site.system_preference_.tab_send_reminders_log") %></a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<div class="tab-content">
|
|
||||||
<!-- Overview -->
|
|
||||||
<div id="overview" class="tab-pane fade in active">
|
|
||||||
<h3 class="muted"><%= t("site.system_preference_.summary.disk_space") %></h3>
|
|
||||||
<blockquote>
|
|
||||||
<p>
|
|
||||||
<%= @disk_free %>
|
|
||||||
</p>
|
|
||||||
</blockquote>
|
|
||||||
<h3 class="muted">Nginx <%= t("site.system_preference_.summary.version") %></h3>
|
|
||||||
<blockquote>
|
|
||||||
<p>
|
|
||||||
<%= @nginx_version %>
|
|
||||||
</p>
|
|
||||||
</blockquote>
|
|
||||||
</span>
|
|
||||||
<h3 class="muted">MongoDB <%= t("site.system_preference_.summary.version") %></h3>
|
|
||||||
<blockquote>
|
|
||||||
<p>
|
|
||||||
<%= @mongo_version %>
|
|
||||||
</p>
|
|
||||||
</blockquote>
|
|
||||||
<h3 class="muted">Linux <%= t("site.system_preference_.summary.version") %></h3>
|
|
||||||
<blockquote>
|
|
||||||
<p>
|
|
||||||
<%= @linux_version %>
|
|
||||||
</p>
|
|
||||||
</blockquote>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Email Log -->
|
|
||||||
<div id="mail-cron-logs" class="tab-pane fade">
|
|
||||||
<ul class="nav nav-pills">
|
|
||||||
<li class="active">
|
|
||||||
<a href="#send-log" data-toggle="tab"><%= t(:email_log) %></a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="#waiting-sent" data-toggle="tab"><%= t(:email_queue) %></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="tab-content">
|
|
||||||
<div class="tab-pane fade in active list-check" id="send-log">
|
|
||||||
<p class="">
|
|
||||||
<a href="#" class="btn list-active-btn disabled" data-check-action="list-be-remove" rel="/panel/announcement/back_end/bulletins/delete"><i class="icons-trash"></i></a>
|
|
||||||
</p>
|
|
||||||
<table class="table main-list table-striped">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>
|
|
||||||
<input type="checkbox" name="to_delete[]" value="b" />
|
|
||||||
</th>
|
|
||||||
<th><%= t(:sent_date) %></th>
|
|
||||||
<th><%= t(:subject) %></th>
|
|
||||||
<th><%= t(:mail_to) %></th>
|
|
||||||
<th><%= t(:mail_user) %></th>
|
|
||||||
<th><%= t(:mail_from_app) %></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<div class="tab-pane fade in list-check" id="waiting-sent">
|
|
||||||
<p class="">
|
|
||||||
<a href="#" class="btn list-active-btn disabled" data-check-action="list-be-remove" rel="/panel/announcement/back_end/bulletins/delete"><i class="icons-trash"></i></a>
|
|
||||||
</p>
|
|
||||||
<table class="table main-list table-striped">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>
|
|
||||||
<input type="checkbox" name="to_delete[]" value="b" />
|
|
||||||
</th>
|
|
||||||
<th><%= t(:sent_date) %></th>
|
|
||||||
<th><%= t(:subject) %></th>
|
|
||||||
<th><%= t(:mail_to) %></th>
|
|
||||||
<th><%= t(:mail_from_app) %></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</fieldset>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<div id="dialog" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="Delete item" aria-hidden="true">
|
|
||||||
<div class="modal-header">
|
|
||||||
<a class="close" data-dismiss="modal">×</a>
|
|
||||||
<h3><%= t(:sure?) %></h3>
|
|
||||||
</div>
|
|
||||||
<div class="modal-body">
|
|
||||||
<span class="text-warning text-center"><%= t(:this_action_can_not_be_restore) %></span>
|
|
||||||
</div>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button class="btn" data-dismiss="modal" aria-hidden="true"><%= t(:close) %></button>
|
|
||||||
<button class="delete-item btn btn-danger"><%= t(:delete_) %></button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -60,11 +60,7 @@
|
||||||
<span class="item-price">Free</span>
|
<span class="item-price">Free</span>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<% if @design_ids.include?(template["_id"]["$oid"]) %>
|
<%= link_to "Download", "javascript:void(0);", "data-url" => template['template']['template']['url'], :class=> 'btn btn-primary download-link' %>
|
||||||
<%= link_to "Installed", "javascript:void(0);", "data-url" => template['template']['template']['url'], :class=> 'btn btn-success download-link', "disabled"=>"disabled", "data-name"=>template['title'], "data-slug"=>template["_slugs"][0], "data-id"=>template["_id"]["$oid"] %>
|
|
||||||
<% else %>
|
|
||||||
<%= link_to "Download", "javascript:void(0);", "data-url" => template['template']['template']['url'], :class=> 'btn btn-primary download-link', "data-name"=>template['title'], "data-slug"=>template["_slugs"][0], "data-id"=>template["_id"]["$oid"] %>
|
|
||||||
<% end %>
|
|
||||||
</li>
|
</li>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
@ -75,20 +71,20 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
(function(){
|
(function(){
|
||||||
$("a.download-link").on(clickEvent,function(){
|
$("a.download-link").on(clickEvent,function(){
|
||||||
if($(this).attr("disabled") == "disabled")return false;
|
var el = $(this),
|
||||||
var el = $(this);
|
downloadurl = $(this).data("url");
|
||||||
|
|
||||||
el.removeClass("btn-primary").addClass("btn-info").text("Installing").attr('disabled',"disabled");
|
el.removeClass("btn-primary").addClass("btn-info").text("Installing").attr('disabled',"disabled");
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url : "<%= admin_template_store_download_theme_path %>",
|
url : "<%= admin_template_store_download_theme_path %>",
|
||||||
data : el.data(),
|
data : {"url" : downloadurl},
|
||||||
dataType : "json",
|
dataType : "json",
|
||||||
type : "post"
|
type : "post",
|
||||||
}).done(function(data){
|
success : function(data){
|
||||||
if(data.success){
|
if(data.success){
|
||||||
el.removeClass('btn-info').addClass('btn-success').text("Installed");
|
el.removeClass('btn-info').addClass('btn-success').text("Installed");
|
||||||
}
|
}
|
||||||
}).fail(function(){
|
}
|
||||||
el.removeClass('btn-info').addClass('btn-danger').text("Error, please try again.").removeAttr('disabled');
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})()
|
})()
|
||||||
|
|
|
@ -8,11 +8,7 @@
|
||||||
<div id="item-info">
|
<div id="item-info">
|
||||||
<%= image_tag "#{@store}#{@template['preview']['preview']['thumb']['url']}", :class => "item-thumb" %>
|
<%= image_tag "#{@store}#{@template['preview']['preview']['thumb']['url']}", :class => "item-thumb" %>
|
||||||
<h2 class="item-name"><%= @template['title'] %></h2>
|
<h2 class="item-name"><%= @template['title'] %></h2>
|
||||||
<% if @design_ids.include?(@template["_id"]["$oid"]) %>
|
<%= link_to "Download", "javascript:void(0);", "data-url" => @template['template']['template']['url'], :class=> 'btn btn-primary download-link' %>
|
||||||
<%= link_to "Installed", "javascript:void(0);", "data-url" => @template['template']['template']['url'], :class=> 'btn btn-success download-link', "disabled"=>"disabled", "data-name"=>@template['title'], "data-slug"=>@template["_slugs"][0], "data-id"=>@template["_id"]["$oid"] %>
|
|
||||||
<% else %>
|
|
||||||
<%= link_to "Download", "javascript:void(0);", "data-url" => @template['template']['template']['url'], :class=> 'btn btn-primary download-link', "data-name"=>@template['title'], "data-slug"=>@template["_slugs"][0], "data-id"=>@template["_id"]["$oid"] %>
|
|
||||||
<% end %>
|
|
||||||
<ul class="item-extra-info">
|
<ul class="item-extra-info">
|
||||||
<li><span class="title">views</span><span class="count"><%= Random.new.rand(10..100) %></span></li>
|
<li><span class="title">views</span><span class="count"><%= Random.new.rand(10..100) %></span></li>
|
||||||
<!-- <li><span class="title">color</span><span class="color-tag green"></span></li> -->
|
<!-- <li><span class="title">color</span><span class="color-tag green"></span></li> -->
|
||||||
|
@ -68,22 +64,21 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
(function(){
|
(function(){
|
||||||
$("a.download-link").on(clickEvent,function(){
|
$("a.download-link").on(clickEvent,function(){
|
||||||
if($(this).attr("disabled") == "disabled")return false;
|
var el = $(this),
|
||||||
var el = $(this);
|
downloadurl = $(this).data("url");
|
||||||
|
|
||||||
el.removeClass("btn-primary").addClass("btn-info").text("Installing").attr('disabled',"disabled");
|
el.removeClass("btn-primary").addClass("btn-info").text("Installing").attr('disabled',"disabled");
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url : "<%= admin_template_store_download_theme_path %>",
|
url : "<%= admin_template_store_download_theme_path %>",
|
||||||
data : el.data(),
|
data : {"url" : downloadurl},
|
||||||
dataType : "json",
|
dataType : "json",
|
||||||
type : "post"
|
type : "post",
|
||||||
}).done(function(data){
|
success : function(data){
|
||||||
if(data.success){
|
if(data.success){
|
||||||
el.removeClass('btn-info').addClass('btn-success').text("Installed");
|
el.removeClass('btn-info').addClass('btn-success').text("Installed");
|
||||||
}
|
}
|
||||||
}).fail(function(){
|
}
|
||||||
el.removeClass('btn-info').addClass('btn-danger').text("Error, please try again.").removeAttr('disabled');
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})()
|
})()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
|
|
||||||
<div id="module-content">
|
<div id="module-content">
|
||||||
<div class="nano">
|
<div class="nano">
|
||||||
<div class="content list-check">
|
<div class="content">
|
||||||
<%=render :partial => @right_partial %>
|
<%=render :partial => @right_partial %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -12,10 +12,11 @@
|
||||||
<input name="utf8" type="hidden" value="" />
|
<input name="utf8" type="hidden" value="" />
|
||||||
<input name="authenticity_token" type="hidden" value="" />
|
<input name="authenticity_token" type="hidden" value="" />
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="other-sign-in">
|
<div class="other-sign-in">
|
||||||
<a class="btn btn-primary" type="submit">Other Sign In</a>
|
<% @request_hosts = request.host_with_port.split(".") %>
|
||||||
|
<a class="btn btn-primary" type="submit" href="https://adfs.ntu.edu.tw/adfs/ls/?wa=wsignin1.0&wtrealm=https://galogin.ntu.edu.tw/saml_login&wctx=<%= @request_hosts[0] %>">使用計中帳號登入</a>
|
||||||
<p>or</p>
|
<p>or</p>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="form-block">
|
<div class="form-block">
|
||||||
<div class="form-list clearfix">
|
<div class="form-list clearfix">
|
||||||
<form class="content" accept-charset="UTF-8" action="/users/sign_in" method="post">
|
<form class="content" accept-charset="UTF-8" action="/users/sign_in" method="post">
|
||||||
|
|
|
@ -13,6 +13,16 @@
|
||||||
</form>
|
</form>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<!-- ntu sites -->
|
||||||
|
<li id="orbit-tag" class="dropdown">
|
||||||
|
<a class="dropdown-toggle orbit-bar-language" data-icons="" href="#" data-toggle="dropdown"></a>
|
||||||
|
<ul class="dropdown-menu language-menu">
|
||||||
|
<% t('ntu.site_names').each do |site| %>
|
||||||
|
<li><%= link_to site[1], get_link(site[0]) %></li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
<!-- Language -->
|
<!-- Language -->
|
||||||
<li id="orbit-language" class="dropdown">
|
<li id="orbit-language" class="dropdown">
|
||||||
<a href="#" role="button" class="dropdown-toggle" data-toggle="dropdown"><%= t(:_locale, :locale => I18n.locale) %></a>
|
<a href="#" role="button" class="dropdown-toggle" data-toggle="dropdown"><%= t(:_locale, :locale => I18n.locale) %></a>
|
||||||
|
@ -36,7 +46,7 @@
|
||||||
<% if @site.desktop_closed %>
|
<% if @site.desktop_closed %>
|
||||||
<li><%= link_to content_tag(:i, nil, class: 'icons-screen') + ' ' + t(:desktop), desktop_path, tabindex: '-1' %></li>
|
<li><%= link_to content_tag(:i, nil, class: 'icons-screen') + ' ' + t(:desktop), desktop_path, tabindex: '-1' %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
<li><%= link_to content_tag(:i, nil, class: 'icons-logout') + ' ' + t(:logout), destroy_user_session_path, tabindex: '-1' %></li>
|
<li><%= link_to content_tag(:i, nil, class: 'icons-logout') + ' ' + t(:logout), user_logout_path, tabindex: '-1' %></li>
|
||||||
<li class="divider"></li>
|
<li class="divider"></li>
|
||||||
<li><a tabindex="-1" href="#"><i class="icons-lifebuoy"></i> <%= t(:help) %></a></li>
|
<li><a tabindex="-1" href="#"><i class="icons-lifebuoy"></i> <%= t(:help) %></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -56,6 +66,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<%= form_for :user, url: user_session_path, html: {class: 'container'} do |f| %>
|
<%= form_for :user, url: user_session_path, html: {class: 'container'} do |f| %>
|
||||||
|
|
||||||
|
<div class="other-sign-in">
|
||||||
|
<% @request_hosts = request.host_with_port.split(".") %>
|
||||||
|
<a class="btn btn-primary" type="submit" href="https://adfs.ntu.edu.tw/adfs/ls/?wa=wsignin1.0&wtrealm=https://galogin.ntu.edu.tw/saml_login&wctx=<%= @request_hosts[0] %>">使用計中帳號登入</a>
|
||||||
|
<p>or</p>
|
||||||
|
</div>
|
||||||
<div class="input-prepend">
|
<div class="input-prepend">
|
||||||
<span class="add-on">
|
<span class="add-on">
|
||||||
<i class="icon-user"></i>
|
<i class="icon-user"></i>
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
function InsertPreviewImage(){
|
function InsertPreviewImage(){
|
||||||
if($("iframe").contents().find('.news_image').length){
|
if($("iframe").contents().find('.news_image').length){
|
||||||
$("iframe").contents().find('.news_image').append("<a href='' target='_blank'><img src='"+preview_img+"' width='320' /></a>");
|
$("iframe").contents().find('.news_image').append("<a href='' target='_blank'><img src='"+preview_img+"' width='320' height='240' /></a>");
|
||||||
}else{
|
}else{
|
||||||
setTimeout(InsertPreviewImage,1000);
|
setTimeout(InsertPreviewImage,1000);
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,5 +63,15 @@ Orbit::Application.configure do
|
||||||
config.action_mailer.delivery_method = :smtp
|
config.action_mailer.delivery_method = :smtp
|
||||||
config.action_mailer.perform_deliveries = true
|
config.action_mailer.perform_deliveries = true
|
||||||
config.action_mailer.raise_delivery_errors = true
|
config.action_mailer.raise_delivery_errors = true
|
||||||
|
config.action_mailer.smtp_settings = {
|
||||||
|
:enable_starttls_auto => true,
|
||||||
|
:openssl_verify_mode => 'none',
|
||||||
|
:address => 'smtp.sendgrid.net',
|
||||||
|
:port => '587',
|
||||||
|
:domain => "new.tp.rulingcom.com",
|
||||||
|
:authentication => "plain",
|
||||||
|
:user_name => "rulingcom",
|
||||||
|
:password => "bjo4xjp6"
|
||||||
|
}
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
if defined?(PhusionPassenger)
|
|
||||||
PhusionPassenger.on_event(:starting_worker_process) do |forked|
|
|
||||||
if forked
|
|
||||||
Resque.redis.client.disconnect
|
|
||||||
Resque.redis = Redis.new(:host => 'localhost', :port => 6379)
|
|
||||||
Resque.redis.namespace = Site.first.resque_namespace rescue APP_CONFIG['orbit']
|
|
||||||
else
|
|
||||||
# We're in conservative spawning mode. We don't need to do anything.
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -80,3 +80,48 @@ default_widget_style:
|
||||||
- style3
|
- style3
|
||||||
- style4
|
- style4
|
||||||
- style5
|
- style5
|
||||||
|
|
||||||
|
sites:
|
||||||
|
www:
|
||||||
|
url: www.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx3fDAM40XvEiM5oG7YbA\nKnhc5Dyv/ZhVDzyrg95QB0ylBPtSs6g5xgkSSQMnIpAUCzdVIMrUd/A6DuH6f+T5\nccshgh3aDj3wISfgYZc9e7WY1csOItq9lOr6YG4HEABSyjVCcX/RrB8kCuuIGcvR\nRnvu/4fFb93vsVYHwGuivTYRJ+8VM8fOtIFCvbCxZsFj6r5cMl4qI4g4vaIn3xf2\ndXUCICebvdIBfMAdW29yaCScEap1oawEfdXtKCD5vYvAaRZ85jLY/FV5dYhbe1dz\n9G7+B1HI7VBm5bKV0MI1ZH2MTRczaqjLGf6ZF0FbMmcMYLx8iEGL1z0/hgOTcNT6\nrQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
ga:
|
||||||
|
url: www.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx3fDAM40XvEiM5oG7YbA\nKnhc5Dyv/ZhVDzyrg95QB0ylBPtSs6g5xgkSSQMnIpAUCzdVIMrUd/A6DuH6f+T5\nccshgh3aDj3wISfgYZc9e7WY1csOItq9lOr6YG4HEABSyjVCcX/RrB8kCuuIGcvR\nRnvu/4fFb93vsVYHwGuivTYRJ+8VM8fOtIFCvbCxZsFj6r5cMl4qI4g4vaIn3xf2\ndXUCICebvdIBfMAdW29yaCScEap1oawEfdXtKCD5vYvAaRZ85jLY/FV5dYhbe1dz\n9G7+B1HI7VBm5bKV0MI1ZH2MTRczaqjLGf6ZF0FbMmcMYLx8iEGL1z0/hgOTcNT6\nrQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
doc:
|
||||||
|
url: doc.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4aE7R0/49UBf5v4rbNiA\nnaXjPZ9rio9fjkaAZeow62yaZtoGurqf44BVj/cjQVUmLnMU4WDcZMI0osLa15+H\ndXSGCP8Upmvi+eA2UqhhBZts1IQ33rPMAjePAbpSGbNRxous0VpH7cc9BxMffQwh\nsygcbghUCEE3dVWdTFGokvgxkBzaKKTNbiqhmbuc8QIuzOvFFGkZHgqlxFHcaNYZ\n7KZJxqvuKSXsJcxIsQKzDiAPI11J3zgRdIf/CFVQv5g15gl1ieQgFdGc3jplsBcd\nrdLApPZ39+BWr9a/Gj9lgP6Ll5G/cM4Uq18a7TCWJIC9PNGw8bBDJTjnUEqmOu3R\nZQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
cashier:
|
||||||
|
url: cashier.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9wliL8gFsRn0DVZusd2h\nSoj6aQWkKq1UU6fj3vzcrb1adMy8RnKogTW6z1W9wxrcrI/GfyRz9Wop0+9+XNYx\nDH+QQ+/1po/O/MkPBGZ6WxXpH2BSCncdJdYZ9qLvlJHHRhFtczcSQki693MCDUCy\nMrMDvmL4YOowHExD7A5qrCIaYnbNcUCYMKluSLxR52AUeAuYjCwZbkgEwIQRdZ+M\n3JMgTD/9GFsvZ4c5x6n1cUnKCJNyyUIvI8jThtOnySCU8ZN17nWfKb1Cxavt17Vp\nGSdyIIL2SO9+rjOFW3PrAyX5P3xEgPYoDxA1QsYLYbj189qA0sT17xf9H7KcNzyP\n7wIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
general:
|
||||||
|
url: general.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvyFUUFyaEJgsR+bYhTXx\nOA60kw82ohyHCDzkoHDT/k2xS520RZR0AzxT449qD3XfRr0+7F0c6rMx/2pBG7hS\nlHjgrTX7eQ70wV8H4OApriDIp1UDemm4+fKxcPZ6vhWqzp+3ijPdhJXe7OC9D89I\n9QKdlHPBxKFnUrBJiqn3cHGLpRrYTsKpI/Nl7VW4UJJh0k7R7P1Jqry0e+HalOLB\nBu5kl5z6iYBPy1gJ4psDHWuoNboxIgIsVR1SSLM7Mooebwx2qjm3W4VQuc7eQk0g\nh7KH4B8CrK4bC+K6lAS3ZzmTlA6M1WZPtIKv3XqEYCkyomMnkdTNZQYKbCKKlLBo\ntQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
social:
|
||||||
|
url: social.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqB8htGdGzDPs3GA76REG\nyjM0eEYdXV6ugi4hPZEViCOBg3POC5RZslA5oTCYYWfTVui8jHC2CPD3AYQLG67Z\n79g2miLHEEyDzG7dp//dc85qp0FYR2JII1y26fJutMVCgn0hth6OpfjPB2QhkgZf\nat+Ico5ppDYIx+4jX8xQr4qqRlUIAmECMAE5ATiAUqfv117GJG/fR3AsKZPYm2U1\nFhSpKT2mvC0AiqstZzxYEm4srl1ZjpJPJ7uU+ewvi/EhRyLWFGPmygP6fvg4IaKS\nG00dx7FGedyLVcSaxJCoCX5Z98hIYEStanCSzuR3FQEL0JaB8ZKKWY8dsB+U1v46\nQwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
property:
|
||||||
|
url: property.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1bmnJSRmxcehehuKBwSQ\nXiuYhAxzUOmptIk0sgciB1hK8++anXMaHXf3QA6UiXWjNyU+g2ZL1nVfVl0Qd3Ps\nxM2+hSeZRus2sw0g7CQea7NkAqLGQrpicnZ8Fgcb+0qwgClk0RVBXwJzfTDu6V+5\nL9lLEKWnSdHmoGkxkZTPMAtJpXYx9SMLtljPYGkMWKY2C1cBqPdMOl/rKTUZ9dYp\n2eJ13NTXDJJgDJOhDFHevzK/I6kwxdJbetNo4IO1dhQdbPionR5SNkkCNZvfy3k3\n68+xopPKH3xECCIuxorcePx0hyoeXS8vdmJ09VKHVUz08LBYGq2S/36V5LIc1P/6\nSQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
procurement:
|
||||||
|
url: procurement.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAze/Yr3vrpRBpeu7ohyEP\nboPvZ476dtANbvW+rMuDyKeGD5FfoZYwzF+AbMIK6KfleWizObnMM8ABC0LdBuag\nQ0Brk4FMxyKz0aXlSgG3OZiZXJaaWm2/+gqghgpBLpAPMRFnEmK2y11b/EgCxurV\nl+RZ/MgrIviRGipnU7GXfG4O7Ai21oD4lzKt3WbvuWgBdgtEsYpZMIyddWrhkUki\noM39Vm72mCyKPkysCVYCnYaMwDXVx/SKuTRHiVQZ4GNIv74rwp7BOCkfDZ8HrNLH\nr3ObCB8X0Bh9GqUUj7gYu3cFmx8lXer7qkGtGUq2wNUM0CBc01EODVO9e9RQnulA\n3wIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
fss:
|
||||||
|
url: fss.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzsvi4FfIQokfP2QmiRTs\nzuxjPg7oPK7pLHNQC/AyY35H0vmkXGTc74pVvLbfSuaprLO10WVzE4bGGQmhmls1\nDqeY7EyHg1vs7GHQm1932n+Va+qDToSx7S+Zs1ZOglYAdEzBI3dyhefIcDtNUfty\n0i64RGiEzDH4yV5lecilXo5Q4/7W/HNdtw8Oe//LopOZ2Mj+Eq7Tk70WkGFDV73Z\n/jIBLBn51g2P9nrsid63OLe1X8u0l9+xSGff0fR1VlqbElBRACCrAmPvs9ceOW7H\n+yLw71elR4nMDm+/dx/zimeYUj0WaY2A3/O8xucPhSP22YCRiO1jEsAEvMXkCU9p\n8wIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
medicine:
|
||||||
|
url: medicine.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwx7zQLnde6Azy/03bIxg\nkp5rM0DsKKkBbX8C5vhUADxaC2zVmVJuF0NnTGCWutNSSYsKWRKzFwEoZdzJ+8XS\nr8f9kRdEB0yu3Akv+EhZyHA7yVGyFvNAhPGVuekSmpDlpFFKanAqlhBzrhByku5A\nTqp2fXi3zHMoP6WX8QXb6SpG/y4CBpjXCI1qLCAJRw0Fkt7yMXkJnjO2q7zCKAnU\nnv6DVz5yDuBiZPfYlW09KHVWxSehgk5fvLu9Jb/s1XklPwEw1m5BPhIA1YG0QelR\nXk9Pdvwb7aM59LZx1xQZYcku0KGSqLo9rCDTD8YT47226v921yeM36Az8t8e4egU\nzwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
police:
|
||||||
|
url: police.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzKawlFWAMzA/uV/kcewd\nmtj8PcqxosmnSh7ZzJ0DumG2ieeP9oDBicqbqIEaeJVvrRzYJD2a+u8x5KKMKB8J\nHbMUpCBFlIpkDMjU/oZVMcYT9pcH51QWNvCgHG7prVykSGFz1JRvjSP6cwuZKBFd\nFFneOViETqoMIO1DbRLXsGfPvMOJY9C1xDwv1dLv0Wbj7M9N6eNz06a50bu3I4gl\nMumxWnZUabXL3G62S/Si4NM7J2jOUnkEOxJWOhcAX/iiqS9T8AHu84um2+mLQpfB\nJJFFIWCIAtU78VnIN5JSWwjFU5TsiSyCFYpGXKxUFD25cFmt3SfG0gwmrFis5Pdn\nhwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
construction:
|
||||||
|
url: construction.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvxJcKnPUDaNNyhdGpedL\n+h2OI9RDDZUTkHcvX1UvBNvlX2+dvok6sHQh2AhZoNyCUFZTbp2CRSNfIM5jXigD\nfHA3KzpN7cmGG7W7nIdBBkZU/ly4HFvkD7mGoEymB0JYgZkz59CXBx+3Zg6KLSYY\nZDoOw6wikrl643So2zFZvwHJpDkRkmX5oWWYqXOZxaZnkgbhvA3KdcH9+C1aEBYY\npY2K2MJt86k0ahW/CJfVRDb9CWSxAGir1RAPu9bRV9y9WWKKGWekH0/IqhhJPT8q\nl3v6PB1Oc6ltbOyYkS2xHbmvRxjORzGen0Xcbjzo4N8HBEoPe0Uc5iP0Y50GDjEL\nEQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
sec:
|
||||||
|
url: sec.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApsVKJ8Cvr/A0dmHR+vDS\nAYjVzGqMNJ/4pO7GwMzUZMNSkpq3b9CIjrIGg/QKj7woTHnKM39vczu5gxPXJGYN\nIo+PnWsibMDjcz2Vm8s11XXIPho/Ce+hQkWpWGzxpaH7Z/qLKSwiwHdHhlgN3fWw\njR8jYhreQYfohkRGR70h8A9TTU4YkFY/+8yIdwGns61+5tK981kMbVkm+pcgL0cP\nMN08I7MM+c87COY6IO27jVb/ALPAYpo+QUdAfEp5hlI7BQW95nB7LHOnxAm7lLTD\nhbdETUssieQUicwgDpGa2aD769nH+V3UCp0nA4yPDWyJJyKEWsD5EEK24VAcotql\nkwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
info:
|
||||||
|
url: info.ga.ntu.edu.tw
|
||||||
|
key: "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5MLcsMcedzVWjw7pd/lr\nf8GdrzV6rubsJgEBJbC2OdrloHc+7uxEwWiYNTfg4j46nY/zCuTqzV/Wcfni5pY8\n0yuOmZdH9LjK0PW5BgXYJwe/bZkQmQcIQhkoSPghR8o+kZlI0a3+3gs4eAkpxB21\nPR5Rg2fvzDkaO3WcHf13HymayIk9wn4i0NdLUXgKSWcz5XNJtVBh6jtMkDq7ioOH\nQZT9OAODFw5CW/TvXBJaAvSEdDHsCNTE4vgJO1h6qowC27mErgjilA7TM81JFp40\nwexOW/gXHc4gCsj9BY39tDTqa56QIbJjKdqx7iyHUr1jMFmII1osS1ZVATco9RrM\naQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
|
||||||
|
|
|
@ -192,8 +192,6 @@ en:
|
||||||
link: Editing link
|
link: Editing link
|
||||||
page: Editing page
|
page: Editing page
|
||||||
email: Email
|
email: Email
|
||||||
email_log: Email Log
|
|
||||||
email_queue: Waiting to be sent
|
|
||||||
enable: Enable
|
enable: Enable
|
||||||
enabled_for: Enabled for
|
enabled_for: Enabled for
|
||||||
end: End
|
end: End
|
||||||
|
@ -225,13 +223,11 @@ en:
|
||||||
groups: Groups
|
groups: Groups
|
||||||
help: Help
|
help: Help
|
||||||
hidden: Hidden
|
hidden: Hidden
|
||||||
is_hidden: Hidden
|
|
||||||
hide: Hide
|
hide: Hide
|
||||||
hits: Hits
|
hits: Hits
|
||||||
homepage: Homepage
|
homepage: Homepage
|
||||||
horizontal: Horizontal
|
horizontal: Horizontal
|
||||||
hot: Hot
|
hot: Hot
|
||||||
is_hot: Hot
|
|
||||||
image: Image
|
image: Image
|
||||||
images: Images
|
images: Images
|
||||||
info: Information
|
info: Information
|
||||||
|
@ -278,9 +274,6 @@ en:
|
||||||
setting: Mail settings
|
setting: Mail settings
|
||||||
tls: TLS
|
tls: TLS
|
||||||
user_name: User Name
|
user_name: User Name
|
||||||
mail_from_app: Mail From App
|
|
||||||
mail_to: Mail To
|
|
||||||
mail_user: Mail User
|
|
||||||
manager: Manager
|
manager: Manager
|
||||||
markup: Markup
|
markup: Markup
|
||||||
markup_options: Markup options
|
markup_options: Markup options
|
||||||
|
@ -347,13 +340,11 @@ en:
|
||||||
public_r_tag: System Widget
|
public_r_tag: System Widget
|
||||||
text: Text Area
|
text: Text Area
|
||||||
passed: Approved
|
passed: Approved
|
||||||
is_checked: Approved
|
|
||||||
password: Password
|
password: Password
|
||||||
password_change: Change password
|
password_change: Change password
|
||||||
password_confirmation: Password confirmation
|
password_confirmation: Password confirmation
|
||||||
password_current: Current password
|
password_current: Current password
|
||||||
pending: Pending
|
pending: Pending
|
||||||
is_pending: Pending
|
|
||||||
personal_plugins:
|
personal_plugins:
|
||||||
author : "Author"
|
author : "Author"
|
||||||
edit_brief_intro : "Edit Brief Intro."
|
edit_brief_intro : "Edit Brief Intro."
|
||||||
|
@ -387,6 +378,7 @@ en:
|
||||||
system_email: System Email
|
system_email: System Email
|
||||||
preview: Preview
|
preview: Preview
|
||||||
profile: Profile
|
profile: Profile
|
||||||
|
promoter: Promoter
|
||||||
publications: Publications
|
publications: Publications
|
||||||
purchase: Purchase
|
purchase: Purchase
|
||||||
quantity: Quantity
|
quantity: Quantity
|
||||||
|
@ -396,7 +388,6 @@ en:
|
||||||
register: Register
|
register: Register
|
||||||
registered: Registered
|
registered: Registered
|
||||||
rejected: Rejected
|
rejected: Rejected
|
||||||
is_rejected: Rejected
|
|
||||||
rejected_reason: 'Reason:'
|
rejected_reason: 'Reason:'
|
||||||
rejected_reason_empty: "Approval rejected, no referencable information"
|
rejected_reason_empty: "Approval rejected, no referencable information"
|
||||||
related_links: Related Links
|
related_links: Related Links
|
||||||
|
@ -434,7 +425,6 @@ en:
|
||||||
index: Index
|
index: Index
|
||||||
summary: Summary
|
summary: Summary
|
||||||
thumbnail: Thumbnail
|
thumbnail: Thumbnail
|
||||||
sent_date: Sent Date
|
|
||||||
settings: Site Setting
|
settings: Site Setting
|
||||||
site:
|
site:
|
||||||
backend_openness_on: Backend Openness
|
backend_openness_on: Backend Openness
|
||||||
|
@ -465,7 +455,6 @@ en:
|
||||||
tab_commits: Commits
|
tab_commits: Commits
|
||||||
tab_summary: Summary
|
tab_summary: Summary
|
||||||
tab_logs: Logs
|
tab_logs: Logs
|
||||||
tab_send_reminders_log: Send reminders log
|
|
||||||
summary:
|
summary:
|
||||||
code_update_at: Code Update histroy
|
code_update_at: Code Update histroy
|
||||||
disk_space: Disk Free
|
disk_space: Disk Free
|
||||||
|
@ -495,7 +484,6 @@ en:
|
||||||
sub_role: Sub Role
|
sub_role: Sub Role
|
||||||
sub_role_field: Sub Role Field
|
sub_role_field: Sub Role Field
|
||||||
sub_role_info: " Sub Role Info."
|
sub_role_info: " Sub Role Info."
|
||||||
subject: Subject
|
|
||||||
subtitle: Subtitle
|
subtitle: Subtitle
|
||||||
submit: Submit
|
submit: Submit
|
||||||
submit_approval: Submit approval
|
submit_approval: Submit approval
|
||||||
|
@ -519,12 +507,10 @@ en:
|
||||||
text: Text
|
text: Text
|
||||||
theme: Theme
|
theme: Theme
|
||||||
themes: Themes
|
themes: Themes
|
||||||
this_action_can_not_be_restore: This action can not be restored, are you sure you want to delete?
|
|
||||||
title: Title
|
title: Title
|
||||||
to_search: Set as Search Key
|
to_search: Set as Search Key
|
||||||
to_show: Display in frontend
|
to_show: Display in frontend
|
||||||
top: Top
|
top: Top
|
||||||
is_top: Top
|
|
||||||
total_visitors: Total Visitors
|
total_visitors: Total Visitors
|
||||||
traffic: Traffic
|
traffic: Traffic
|
||||||
type: Field Type
|
type: Field Type
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
en:
|
||||||
|
|
||||||
|
ntu:
|
||||||
|
rss_origin: Back to NTU Announcements
|
||||||
|
site_names:
|
||||||
|
"www": "Dean of General Affairs"
|
||||||
|
"sec": "Office of the Dean and Secretariat"
|
||||||
|
"doc": "Documentation Division"
|
||||||
|
"general": "General Service Division"
|
||||||
|
"property": "Property Management Division"
|
||||||
|
"construction": "Construction and Maintenance Division"
|
||||||
|
"cashier": "Cashier Division"
|
||||||
|
"procurement": "Procurement Division"
|
||||||
|
"fss": "Facilities Service Division"
|
||||||
|
"police": "Campus Security"
|
||||||
|
"social": "General Affairs Division, College of Social Science"
|
||||||
|
"medicine": "General Service Division, College of Medicine"
|
|
@ -0,0 +1,17 @@
|
||||||
|
zh_tw:
|
||||||
|
|
||||||
|
ntu:
|
||||||
|
rss_origin: 回臺大校園公佈欄
|
||||||
|
site_names:
|
||||||
|
"www": "總務處"
|
||||||
|
"sec": "總務長室暨總務處秘書室"
|
||||||
|
"doc": "文書組"
|
||||||
|
"general": "事務組"
|
||||||
|
"property": "保管組"
|
||||||
|
"construction": "營繕組"
|
||||||
|
"cashier": "出納組"
|
||||||
|
"procurement": "採購組"
|
||||||
|
"fss": "經營管理組"
|
||||||
|
"police": "駐警隊"
|
||||||
|
"social": "社科院總務分處"
|
||||||
|
"medicine": "醫學院總務分處"
|
|
@ -192,8 +192,6 @@ zh_tw:
|
||||||
link: 編輯連結
|
link: 編輯連結
|
||||||
page: 編輯頁面
|
page: 編輯頁面
|
||||||
email: 電子郵件
|
email: 電子郵件
|
||||||
email_log: 寄送紀錄
|
|
||||||
email_queue: 待寄送郵件
|
|
||||||
enable: 開啟
|
enable: 開啟
|
||||||
enabled_for: 啟用
|
enabled_for: 啟用
|
||||||
end: 結束
|
end: 結束
|
||||||
|
@ -278,9 +276,6 @@ zh_tw:
|
||||||
setting: 電子郵件設定
|
setting: 電子郵件設定
|
||||||
tls: 電子郵件TLS
|
tls: 電子郵件TLS
|
||||||
user_name: 電子郵件帳號
|
user_name: 電子郵件帳號
|
||||||
mail_from_app: 寄送模組
|
|
||||||
mail_to: 收件者
|
|
||||||
mail_user: 寄件者
|
|
||||||
manager: 管理者
|
manager: 管理者
|
||||||
markup: 輸入模式
|
markup: 輸入模式
|
||||||
markup_options: 標註選項
|
markup_options: 標註選項
|
||||||
|
@ -348,13 +343,11 @@ zh_tw:
|
||||||
public_r_tag: 系統模塊
|
public_r_tag: 系統模塊
|
||||||
text: 文字區域
|
text: 文字區域
|
||||||
passed: 通過審核
|
passed: 通過審核
|
||||||
is_checked: 通過審核
|
|
||||||
password: 密碼
|
password: 密碼
|
||||||
password_change: 更改密碼
|
password_change: 更改密碼
|
||||||
password_confirmation: 確認密碼
|
password_confirmation: 確認密碼
|
||||||
password_current: 目前的密碼
|
password_current: 目前的密碼
|
||||||
pending: 待審核
|
pending: 待審核
|
||||||
is_pending: 待審核
|
|
||||||
personal_plugins:
|
personal_plugins:
|
||||||
author : "著作人"
|
author : "著作人"
|
||||||
edit_brief_intro : "編輯摘要"
|
edit_brief_intro : "編輯摘要"
|
||||||
|
@ -387,6 +380,7 @@ zh_tw:
|
||||||
sidebar_nav: 側欄導引
|
sidebar_nav: 側欄導引
|
||||||
system_email: 系統信箱
|
system_email: 系統信箱
|
||||||
profile: 基本資料
|
profile: 基本資料
|
||||||
|
promoter: 承辦人
|
||||||
publications: 著作
|
publications: 著作
|
||||||
purchase: 購買
|
purchase: 購買
|
||||||
quantity: 數量
|
quantity: 數量
|
||||||
|
@ -396,7 +390,6 @@ zh_tw:
|
||||||
register: 註冊
|
register: 註冊
|
||||||
registered: 已註冊
|
registered: 已註冊
|
||||||
rejected: 拒絕
|
rejected: 拒絕
|
||||||
is_rejected: 拒絕
|
|
||||||
rejected_reason: 拒絕原因:'
|
rejected_reason: 拒絕原因:'
|
||||||
rejected_reason_empty: "拒絕核准, 沒有參考資訊"
|
rejected_reason_empty: "拒絕核准, 沒有參考資訊"
|
||||||
related_links: 相關連結
|
related_links: 相關連結
|
||||||
|
@ -434,7 +427,6 @@ zh_tw:
|
||||||
index: 檢索
|
index: 檢索
|
||||||
summary: 摘要
|
summary: 摘要
|
||||||
thumbnail: 縮圖
|
thumbnail: 縮圖
|
||||||
sent_date: 寄送日期
|
|
||||||
settings: 基本設定
|
settings: 基本設定
|
||||||
site:
|
site:
|
||||||
frontend_closed: 前台關閉?
|
frontend_closed: 前台關閉?
|
||||||
|
@ -465,7 +457,6 @@ zh_tw:
|
||||||
tab_commits: 程式版本
|
tab_commits: 程式版本
|
||||||
tab_summary: 總覽
|
tab_summary: 總覽
|
||||||
tab_logs: 排程工作日誌
|
tab_logs: 排程工作日誌
|
||||||
tab_send_reminders_log: 寄送提醒紀錄
|
|
||||||
summary:
|
summary:
|
||||||
code_update_at: 程式更新紀錄
|
code_update_at: 程式更新紀錄
|
||||||
disk_space: 硬碟空間
|
disk_space: 硬碟空間
|
||||||
|
@ -495,7 +486,6 @@ zh_tw:
|
||||||
sub_role: 子身份
|
sub_role: 子身份
|
||||||
sub_role_field: 子身份欄位
|
sub_role_field: 子身份欄位
|
||||||
sub_role_info: 子身份資料
|
sub_role_info: 子身份資料
|
||||||
subject: 主題
|
|
||||||
subtitle: 副標題
|
subtitle: 副標題
|
||||||
submit: 送出
|
submit: 送出
|
||||||
submit_approval: 送出已核准
|
submit_approval: 送出已核准
|
||||||
|
@ -519,7 +509,6 @@ zh_tw:
|
||||||
text: 內文
|
text: 內文
|
||||||
theme: 套用頁面樣式
|
theme: 套用頁面樣式
|
||||||
themes: 主題
|
themes: 主題
|
||||||
this_action_can_not_be_restore: 刪除後將無法還原,您確定要刪除嗎?
|
|
||||||
title: 標題
|
title: 標題
|
||||||
to_search: 加入搜尋條件
|
to_search: 加入搜尋條件
|
||||||
to_show: 是否顯示於前台
|
to_show: 是否顯示於前台
|
||||||
|
|
|
@ -9,3 +9,9 @@ generate_system_summary:
|
||||||
class: GenerateSystemSummary
|
class: GenerateSystemSummary
|
||||||
args:
|
args:
|
||||||
description: Generate the system status such as disk free space,package version list for showing at site tab
|
description: Generate the system status such as disk free space,package version list for showing at site tab
|
||||||
|
|
||||||
|
get_announcement_from_rss:
|
||||||
|
cron: 0 0 [2,12] * * *
|
||||||
|
class: GetAnnouncementFromRss
|
||||||
|
args:
|
||||||
|
description: Loop through the announcement RSS until 24h ago
|
||||||
|
|
|
@ -8,6 +8,13 @@ Orbit::Application.routes.draw do
|
||||||
match "/users_passwd" => "desktop/registrations#update", :as => :users_passwd, :via => :put
|
match "/users_passwd" => "desktop/registrations#update", :as => :users_passwd, :via => :put
|
||||||
end
|
end
|
||||||
|
|
||||||
|
devise_scope :user do
|
||||||
|
get 'user_login' => 'sessions#create'
|
||||||
|
match 'user_logout' => 'sessions#destroy'
|
||||||
|
end
|
||||||
|
|
||||||
|
match "saml_login" => 'saml_logins#index'
|
||||||
|
|
||||||
mount Resque::Server, :at => "/admin/resque"
|
mount Resque::Server, :at => "/admin/resque"
|
||||||
mount Rack::GridFS::Endpoint.new(:db => Mongoid.database,:lookup=>:path), :at => "gridfs"
|
mount Rack::GridFS::Endpoint.new(:db => Mongoid.database,:lookup=>:path), :at => "gridfs"
|
||||||
|
|
||||||
|
|
|
@ -234,7 +234,7 @@ module OrbitCoreLib
|
||||||
when :sub_manager
|
when :sub_manager
|
||||||
@open ||= check_sub_manager
|
@open ||= check_sub_manager
|
||||||
when :approver
|
when :approver
|
||||||
@open ||= check_approver
|
@open ||= check_sub_manager
|
||||||
when :user
|
when :user
|
||||||
@open ||= true
|
@open ||= true
|
||||||
when :visitor
|
when :visitor
|
||||||
|
|
|
@ -0,0 +1,157 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
|
require 'rss'
|
||||||
|
require 'mongo'
|
||||||
|
|
||||||
|
SITES = { "總務處-各單位公告" => "0",
|
||||||
|
"總務處-文書組" => "1",
|
||||||
|
"總務處-出納組" => "2",
|
||||||
|
"總務處-事務組" => "3",
|
||||||
|
"總務處-保管組" => "5",
|
||||||
|
"總務處-採購組" => "6",
|
||||||
|
"總務處-經營管理組" => "7",
|
||||||
|
"總務處-駐衛警察隊" => "9",
|
||||||
|
"總務處-營繕組" => "10",
|
||||||
|
"總務處-總務處" => "11",
|
||||||
|
"社會科學院-社會科學院總務分處" => "4",
|
||||||
|
"醫學院-醫學院總務分處" => "8" }
|
||||||
|
|
||||||
|
SITE_KEYS = SITES.keys
|
||||||
|
|
||||||
|
DB_BASE_NAME = "production_new"
|
||||||
|
|
||||||
|
all = {}
|
||||||
|
continue = true
|
||||||
|
i = 1
|
||||||
|
yesterday = Time.now - 86400
|
||||||
|
|
||||||
|
while continue do
|
||||||
|
open("http://ann.cc.ntu.edu.tw/asp/rss.asp?page=#{i}") do |rss|
|
||||||
|
feed = RSS::Parser.parse(rss.read.encode('utf-8', 'big5', invalid: :replace, undef: :replace, replace: '').gsub('<pubDate>Wes,', '<pubDate>Wed,').gsub(/(encoding=\"big5\")/, 'encoding="utf-8"'))
|
||||||
|
feed.items.each do |item|
|
||||||
|
if item.pubDate > yesterday
|
||||||
|
if SITE_KEYS.include?(item.author)
|
||||||
|
author = item.author.strip
|
||||||
|
category = item.category.to_s.gsub(/\<(\/)*category\>/, '')
|
||||||
|
if all[author]
|
||||||
|
all[author][item.link.strip] = {title: item.title.strip, author: author, link: item.link.strip, date: item.pubDate, category: category, description: item.description.gsub("\r\n", '<br/>').strip}
|
||||||
|
else
|
||||||
|
all[author] = {item.link.strip => {title: item.title.strip, author: author, link: item.link.strip, date: item.pubDate, category: category, description: item.description.gsub("\r\n", '<br/>').strip}}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
continue = false
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
i += 1
|
||||||
|
end
|
||||||
|
|
||||||
|
# Get corresponding category_id or create a new one
|
||||||
|
def get_category_id(category, categories, coll_cat, bulletin_module_id)
|
||||||
|
if categories.keys.include? "rss_#{category}"
|
||||||
|
[categories["rss_#{category}"], categories]
|
||||||
|
else
|
||||||
|
cat = {
|
||||||
|
_type: "Category",
|
||||||
|
module_app_id: bulletin_module_id,
|
||||||
|
key: "rss_#{category}",
|
||||||
|
disable: false,
|
||||||
|
custom: false,
|
||||||
|
title: {:zh_tw => category},
|
||||||
|
created_at: Time.now,
|
||||||
|
updated_at: Time.now
|
||||||
|
}
|
||||||
|
|
||||||
|
categories["rss_#{category}"] = result = coll_cat.save(cat)
|
||||||
|
[result, categories]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Get categories and id based on a given site number
|
||||||
|
def get_mongo_and_categories(site_number="0")
|
||||||
|
db = Mongo::Connection.new("localhost", 27017).db("#{DB_BASE_NAME}_#{site_number}")
|
||||||
|
|
||||||
|
bulletin_module_id = db["module_apps"].find(key: "announcement").first
|
||||||
|
|
||||||
|
coll_bulletin = db["bulletins"]
|
||||||
|
coll_buffer_cat = db["buffer_categories"]
|
||||||
|
coll_cat = db["categories"]
|
||||||
|
coll_bulletin_cat = db["categories"].find(module_app_id: bulletin_module_id["_id"])
|
||||||
|
|
||||||
|
categories = coll_bulletin_cat.find().to_a.inject({}) do |categories, category|
|
||||||
|
categories[category['key']] = category['_id']
|
||||||
|
categories
|
||||||
|
end
|
||||||
|
[categories, coll_bulletin, coll_cat, bulletin_module_id["_id"],coll_buffer_cat]
|
||||||
|
end
|
||||||
|
|
||||||
|
# Get main site (總務處) categories
|
||||||
|
@main_categories, @main_coll_bulletin, @main_coll_cat, @main_bulletin_module_id, @main_coll_buffer_cat = get_mongo_and_categories
|
||||||
|
@copy_categories, @copy_coll_bulletin, @copy_coll_cat, @copy_bulletin_module_id, @copy_coll_buffer_cat = get_mongo_and_categories('11')
|
||||||
|
|
||||||
|
all.each do |key, value| # Loop through all the authors
|
||||||
|
site_number = SITES[key]
|
||||||
|
categories, coll_bulletin, coll_cat, bulletin_module_id, coll_buffer_cat = get_mongo_and_categories(site_number) # Get current's site categories
|
||||||
|
value.each_value do |bul| # Loop through all the items
|
||||||
|
category_id, categories = get_category_id(bul[:category], categories, coll_cat, bulletin_module_id)
|
||||||
|
unless coll_bulletin.find_one(rss_link: bul[:link])
|
||||||
|
bulletin = { _type: "Bulletin",
|
||||||
|
postdate: bul[:date],
|
||||||
|
created_at: bul[:date],
|
||||||
|
updated_at: bul[:date],
|
||||||
|
public: true,
|
||||||
|
is_checked: true,
|
||||||
|
is_pending: false,
|
||||||
|
is_rejected: false,
|
||||||
|
category_id: category_id,
|
||||||
|
title: {:zh_tw => bul[:title]},
|
||||||
|
text: {:zh_tw => bul[:description]},
|
||||||
|
available_for_en: false,
|
||||||
|
available_for_zh_tw: true,
|
||||||
|
rss_link: bul[:link],
|
||||||
|
is_top: false,
|
||||||
|
is_hot: false,
|
||||||
|
is_hidden: false }
|
||||||
|
bs = coll_bulletin.save(bulletin)
|
||||||
|
|
||||||
|
buffer_cat = { _type: "BufferCategory",
|
||||||
|
category_id: category_id,
|
||||||
|
categorizable_type: "Bulletin",
|
||||||
|
categorizable_id: bs }
|
||||||
|
coll_buffer_cat.save(buffer_cat)
|
||||||
|
|
||||||
|
unless site_number.eql?("0") || @main_coll_bulletin.find_one(rss_link: bul[:link]) # Copy the item to the main site
|
||||||
|
|
||||||
|
category_id, @main_categories = get_category_id(bul[:category], @main_categories, @main_coll_cat, @main_bulletin_module_id)
|
||||||
|
main_bulletin = bulletin.clone
|
||||||
|
main_bulletin['_id'] = BSON::ObjectId.new
|
||||||
|
main_bulletin[:category_id] = category_id
|
||||||
|
@main_coll_bulletin.save(main_bulletin)
|
||||||
|
|
||||||
|
main_buffer_cat = { _type: "BufferCategory",
|
||||||
|
category_id: category_id,
|
||||||
|
categorizable_type: "Bulletin",
|
||||||
|
categorizable_id: main_bulletin['_id'] }
|
||||||
|
@main_coll_buffer_cat.save(main_buffer_cat)
|
||||||
|
|
||||||
|
category_id, @copy_categories = get_category_id(bul[:category], @copy_categories, @copy_coll_cat, @copy_bulletin_module_id)
|
||||||
|
copy_bulletin = bulletin.clone
|
||||||
|
copy_bulletin['_id'] = BSON::ObjectId.new
|
||||||
|
copy_bulletin[:category_id] = category_id
|
||||||
|
@copy_coll_bulletin.save(copy_bulletin)
|
||||||
|
|
||||||
|
copy_buffer_cat = { _type: "BufferCategory",
|
||||||
|
category_id: category_id,
|
||||||
|
categorizable_type: "Bulletin",
|
||||||
|
categorizable_id: copy_bulletin['_id'] }
|
||||||
|
@copy_coll_buffer_cat.save(copy_buffer_cat)
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,6 @@ class Panel::Announcement::BackEnd::BulletinsController < OrbitBackendController
|
||||||
end
|
end
|
||||||
|
|
||||||
def preview
|
def preview
|
||||||
params['bulletin']['image'] = nil
|
|
||||||
bulletin = Bulletin.new params
|
bulletin = Bulletin.new params
|
||||||
@preview_obj = bulletin.to_preview
|
@preview_obj = bulletin.to_preview
|
||||||
@preview_obj.save
|
@preview_obj.save
|
||||||
|
@ -65,6 +64,7 @@ class Panel::Announcement::BackEnd::BulletinsController < OrbitBackendController
|
||||||
# GET /bulletins/1/edit
|
# GET /bulletins/1/edit
|
||||||
def edit
|
def edit
|
||||||
@bulletin = Bulletin.find(params[:id])
|
@bulletin = Bulletin.find(params[:id])
|
||||||
|
@users = @bulletin.get_users
|
||||||
@tags = get_tags
|
@tags = get_tags
|
||||||
is_authorized_sub_manager = @bulletin.category.auth_sub_manager.authorized_user_ids rescue nil
|
is_authorized_sub_manager = @bulletin.category.auth_sub_manager.authorized_user_ids rescue nil
|
||||||
|
|
||||||
|
|
|
@ -24,10 +24,13 @@ class Bulletin
|
||||||
|
|
||||||
field :create_user_id
|
field :create_user_id
|
||||||
field :update_user_id, :class_name => "User"
|
field :update_user_id, :class_name => "User"
|
||||||
|
field :user_ids
|
||||||
|
|
||||||
field :view_count, :type => Integer, :default => 0
|
field :view_count, :type => Integer, :default => 0
|
||||||
|
|
||||||
field :public, :type => Boolean, :default => true
|
field :public, :type => Boolean, :default => true
|
||||||
|
field :rss_link
|
||||||
|
|
||||||
|
|
||||||
mount_uploader :image, ImageUploader
|
mount_uploader :image, ImageUploader
|
||||||
|
|
||||||
|
@ -149,6 +152,9 @@ class Bulletin
|
||||||
preview_object
|
preview_object
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_users
|
||||||
|
User.find(self.user_ids) rescue []
|
||||||
|
end
|
||||||
|
|
||||||
protected
|
protected
|
||||||
|
|
||||||
|
|
|
@ -65,6 +65,14 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Promoter -->
|
||||||
|
<div class="control-group">
|
||||||
|
<label class="control-label muted"><%= t(:promoter) %></label>
|
||||||
|
<div class="controls">
|
||||||
|
<%= render partial: 'admin/member_selects/selection_box', locals: {field: 'bulletin[user_ids][]', users: @users} %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Status Module -->
|
<!-- Status Module -->
|
||||||
|
|
|
@ -36,6 +36,21 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% unless @bulletin.rss_link.blank? %>
|
||||||
|
<div>
|
||||||
|
<%= link_to t('ntu.rss_origin'), @bulletin.rss_link %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<% unless @bulletin.user_ids.blank? %>
|
||||||
|
<div class="promoter">
|
||||||
|
<div>
|
||||||
|
<%= render partial: 'admin/member_selects/promoter_front', locals: {users: @bulletin.get_users} %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<%= share_links(@bulletin, 'announcement') %>
|
<%= share_links(@bulletin, 'announcement') %>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -87,6 +87,7 @@ class Panel::Archive::BackEnd::ArchiveFilesController < OrbitBackendController
|
||||||
# GET /archive_files/1/edit
|
# GET /archive_files/1/edit
|
||||||
def edit
|
def edit
|
||||||
@archive_file = ArchiveFile.find(params[:id])
|
@archive_file = ArchiveFile.find(params[:id])
|
||||||
|
@users = @archive_file.get_users
|
||||||
if !current_user.admin?
|
if !current_user.admin?
|
||||||
redirect_to :action => :index
|
redirect_to :action => :index
|
||||||
else
|
else
|
||||||
|
|
|
@ -22,6 +22,8 @@ class ArchiveFile
|
||||||
field :title, localize: true
|
field :title, localize: true
|
||||||
field :create_user_id
|
field :create_user_id
|
||||||
field :update_user_id, :class_name => "User"
|
field :update_user_id, :class_name => "User"
|
||||||
|
field :user_ids
|
||||||
|
|
||||||
|
|
||||||
scope :can_display,where(is_hidden: false)
|
scope :can_display,where(is_hidden: false)
|
||||||
|
|
||||||
|
@ -73,6 +75,10 @@ class ArchiveFile
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_users
|
||||||
|
User.find(self.user_ids) rescue []
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
def get_file_icon( file_data )
|
def get_file_icon( file_data )
|
||||||
file_icon = "<span class=\"o-archives-file-type\">#{file_data.split('.')[-1]}</span>".html_safe
|
file_icon = "<span class=\"o-archives-file-type\">#{file_data.split('.')[-1]}</span>".html_safe
|
||||||
|
|
|
@ -54,6 +54,14 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Promoter -->
|
||||||
|
<div class="control-group">
|
||||||
|
<label class="control-label muted"><%= t(:promoter) %></label>
|
||||||
|
<div class="controls">
|
||||||
|
<%= render partial: 'admin/member_selects/selection_box', locals: {field: 'archive_file[user_ids][]', users: @users} %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Status Module -->
|
<!-- Status Module -->
|
||||||
|
|
|
@ -9,19 +9,19 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th class="column-ctrl col-title"><%= sortable(:title, t("archive.Title"))%></th>
|
<th class="column-ctrl col-title"><%= sortable(:title, t("archive.Title"))%></th>
|
||||||
<th class="column-ctrl col-file"><%= t("archive.Files")%></th>
|
<th class="column-ctrl col-file"><%= t("archive.Files")%></th>
|
||||||
<th class="column-ctrl col-category"><%= sortable(:archive_file_category, t("archive.Category"))%></th>
|
<th class="column-ctrl col-promoter"><%= t(:promoter)%></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
||||||
<% @archive_files.each_with_index do |post,i| %>
|
<% @archive_files.each_with_index do |post,i| %>
|
||||||
<tr <% if ( (i + 1) % 2 ) == 0 %> class="even" <% end %>>
|
<tr <% if ( (i + 1) % 2 ) == 0 %> class="even" <% end %>>
|
||||||
<td>
|
<td class="col-title">
|
||||||
<div class="o-archives-title"><%= post.title %>
|
<div class="o-archives-title"><%= post.title %>
|
||||||
<% if !post.is_hot.blank? %><span class="o-archives-hot"><%= t('hot')%></span><% end %>
|
<% if !post.is_hot.blank? %><span class="o-archives-hot"><%= t('hot')%></span><% end %>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td class="col-file">
|
||||||
<div class="o-archives-list-item">
|
<div class="o-archives-list-item">
|
||||||
<% if !post.archive_file_multiples.blank? %>
|
<% if !post.archive_file_multiples.blank? %>
|
||||||
<ol>
|
<ol>
|
||||||
|
@ -37,9 +37,21 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td><div class="o-archives-category">
|
<td class="col-promoter">
|
||||||
<%= post.category.title if !post.category.blank? %>
|
<% unless post.get_users.blank? %>
|
||||||
</div></td>
|
<div class="promoter-block">
|
||||||
|
<ul>
|
||||||
|
<% post.get_users.each do |user| %>
|
||||||
|
<li class="promoter">
|
||||||
|
<p>
|
||||||
|
<%= link_to user.name, "mailto:#{user.email}", class: "promoter-name" %> / <span class="promoter-phone"><%= user.office_tel %></span>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
|
45
vendor/built_in_modules/ask/app/controllers/panel/ask/back_end/asK_requests_controller.rb
vendored
Normal file
45
vendor/built_in_modules/ask/app/controllers/panel/ask/back_end/asK_requests_controller.rb
vendored
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
|
class Panel::Ask::BackEnd::AskRequestsController < OrbitBackendController
|
||||||
|
include AdminHelper
|
||||||
|
#include OrbitControllerLib::DivisionForDisable
|
||||||
|
|
||||||
|
#before_filter :for_app_manager
|
||||||
|
skip_before_filter :verify_authenticity_token
|
||||||
|
open_for_visitor :only => [:transferred_request]
|
||||||
|
|
||||||
|
def transferred_request
|
||||||
|
app_title = request.fullpath.split('/')[2]
|
||||||
|
module_app ||= ModuleApp.first(conditions: {:key => app_title} )
|
||||||
|
|
||||||
|
if request.headers["HTTP_X_AUTH_TOKEN"] == '3kjlfksjDFJ'
|
||||||
|
if !module_app.categories.where("title.en" => "Transferred Question").any?
|
||||||
|
ask_category = module_app.categories.build
|
||||||
|
ask_category.title_translations = { "zh_tw" => "轉介的問題", "en" => "Transferred Question" }
|
||||||
|
ask_category.save!
|
||||||
|
end
|
||||||
|
|
||||||
|
module_app.categories.enabled
|
||||||
|
category = module_app.categories.where("title.en" => "Transferred Question").first
|
||||||
|
|
||||||
|
@transferred_question = AskQuestion.new(
|
||||||
|
name: params['name'],
|
||||||
|
identity: params['identity'],
|
||||||
|
email: params['email'],
|
||||||
|
phone: params['phone'],
|
||||||
|
tax: params['tax'],
|
||||||
|
title: params['title'],
|
||||||
|
content: params['content'],
|
||||||
|
category_id: category.id)
|
||||||
|
|
||||||
|
@transferred_question.ask_reply = AskReply.new
|
||||||
|
@transferred_question.ask_reply.update_attributes(status: "待處理 (轉)")
|
||||||
|
@transferred_question.save
|
||||||
|
|
||||||
|
render :nothing => true
|
||||||
|
else
|
||||||
|
render :status => 500
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
class Panel::Ask::BackEnd::AskAcknowledgementsController < OrbitBackendController
|
class Panel::Ask::BackEnd::AskAcknowledgementsController < OrbitBackendController
|
||||||
include AdminHelper
|
#include AdminHelper
|
||||||
include OrbitControllerLib::DivisionForDisable
|
#include OrbitControllerLib::DivisionForDisable
|
||||||
|
|
||||||
before_filter :for_app_manager
|
#before_filter :for_app_manager
|
||||||
|
open_for_manager
|
||||||
|
|
||||||
def initialize
|
#def initialize
|
||||||
super
|
# super
|
||||||
@app_title = 'ask_acknowledgement'
|
# @app_title = 'ask_acknowledgement'
|
||||||
end
|
#end
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@ask_acknowledgement = AskAcknowledgement.first || AskAcknowledgement.create
|
@ask_acknowledgement = AskAcknowledgement.first || AskAcknowledgement.create
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
class Panel::Ask::BackEnd::AskAdminsController < OrbitBackendController
|
class Panel::Ask::BackEnd::AskAdminsController < OrbitBackendController
|
||||||
|
|
||||||
include AdminHelper
|
#include AdminHelper
|
||||||
include OrbitControllerLib::DivisionForDisable
|
#include OrbitControllerLib::DivisionForDisable
|
||||||
|
|
||||||
before_filter :for_app_manager
|
#before_filter :for_app_manager
|
||||||
|
open_for_manager
|
||||||
|
|
||||||
def initialize
|
#def initialize
|
||||||
super
|
# super
|
||||||
@app_title = 'ask_admins'
|
# @app_title = 'ask_admins'
|
||||||
end
|
#end
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@ask_admins = AskAdmin.all
|
@ask_admins = AskAdmin.all
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
require 'csv'
|
|
||||||
|
|
||||||
class Panel::Ask::BackEnd::AskQuestionsController < OrbitBackendController
|
class Panel::Ask::BackEnd::AskQuestionsController < OrbitBackendController
|
||||||
|
|
||||||
def initialize
|
require 'csv'
|
||||||
super
|
|
||||||
@app_title = 'ask_questions'
|
# def initialize
|
||||||
end
|
# super
|
||||||
|
# @app_title = 'ask_questions'
|
||||||
|
# end
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@ask_questions = AskQuestion.all
|
@ask_questions = AskQuestion.all
|
||||||
|
@ -53,10 +53,12 @@ class Panel::Ask::BackEnd::AskQuestionsController < OrbitBackendController
|
||||||
Rails.application.config.mongoid.use_activesupport_time_zone = true
|
Rails.application.config.mongoid.use_activesupport_time_zone = true
|
||||||
date_start = "#{params[:export]['start(1i)']}-#{params[:export]['start(2i)']}-#{params[:export]['start(3i)']}"
|
date_start = "#{params[:export]['start(1i)']}-#{params[:export]['start(2i)']}-#{params[:export]['start(3i)']}"
|
||||||
date_end = "#{params[:export]['end(1i)']}-#{params[:export]['end(2i)']}-#{params[:export]['end(3i)']}"
|
date_end = "#{params[:export]['end(1i)']}-#{params[:export]['end(2i)']}-#{params[:export]['end(3i)']}"
|
||||||
@ask_questions = AskQuestion.includes(:ask_category).includes(:ask_reply).where(:created_at.gte => date_start, :created_at.lte => date_end)
|
#@ask_questions = AskQuestion.includes(:ask_category).includes(:ask_reply).where(:created_at.gte => date_start, :created_at.lte => date_end)
|
||||||
|
@ask_questions = AskQuestion.where(:created_at.gte => date_start, :created_at.lte => date_end)
|
||||||
|
|
||||||
csv = CSV.generate do |csv|
|
csv = CSV.generate do |csv|
|
||||||
csv << [ t('category'),
|
csv << [ t('status'),
|
||||||
|
t('category'),
|
||||||
AskQuestion.human_attribute_name(:name),
|
AskQuestion.human_attribute_name(:name),
|
||||||
AskQuestion.human_attribute_name(:identity),
|
AskQuestion.human_attribute_name(:identity),
|
||||||
AskQuestion.human_attribute_name(:email),
|
AskQuestion.human_attribute_name(:email),
|
||||||
|
@ -68,7 +70,8 @@ class Panel::Ask::BackEnd::AskQuestionsController < OrbitBackendController
|
||||||
AskReply.human_attribute_name(:comment)]
|
AskReply.human_attribute_name(:comment)]
|
||||||
@ask_questions.each do |ask_question|
|
@ask_questions.each do |ask_question|
|
||||||
ask_question.ask_reply ||= AskReply.new
|
ask_question.ask_reply ||= AskReply.new
|
||||||
csv << [ ask_question.ask_category.name,
|
csv << [ ask_question.ask_reply.status,
|
||||||
|
ask_question.category.title,
|
||||||
ask_question.name,
|
ask_question.name,
|
||||||
ask_question.identity,
|
ask_question.identity,
|
||||||
ask_question.email,
|
ask_question.email,
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# encoding: utf-8
|
||||||
class Panel::Ask::BackEnd::AskRepliesController < OrbitBackendController
|
class Panel::Ask::BackEnd::AskRepliesController < OrbitBackendController
|
||||||
|
|
||||||
include AdminHelper
|
include AdminHelper
|
||||||
|
@ -13,19 +14,122 @@ class Panel::Ask::BackEnd::AskRepliesController < OrbitBackendController
|
||||||
def create
|
def create
|
||||||
@ask_question = AskQuestion.find(params[:ask_question_id])
|
@ask_question = AskQuestion.find(params[:ask_question_id])
|
||||||
@ask_question.ask_reply = AskReply.new(params[:ask_reply])
|
@ask_question.ask_reply = AskReply.new(params[:ask_reply])
|
||||||
|
@ask_reply = @ask_question.ask_reply
|
||||||
@ask_question.save
|
@ask_question.save
|
||||||
|
|
||||||
if @ask_question.ask_reply.send_email?
|
if @ask_question.ask_reply.send_email?
|
||||||
Resque.enqueue(SendAskReplyMail, @ask_reply.ask_question.id)
|
Resque.enqueue(SendAskReplyMail, @ask_reply.ask_question.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
status_stack = []
|
||||||
|
new_status = ""
|
||||||
|
params[:ask_reply][:depts].each do |dns|
|
||||||
|
# host = dns.split(":").first # local test
|
||||||
|
|
||||||
|
begin
|
||||||
|
status_stack << send_request(dns, @ask_reply.ask_question, @ask_reply) # local test, switch host to dns if on server
|
||||||
|
rescue
|
||||||
|
status_stack << "fail"
|
||||||
|
end
|
||||||
|
end if params[:ask_reply][:status] == "轉介其他單位"
|
||||||
|
|
||||||
|
success_count = status_stack.count("success")
|
||||||
|
failed_count = status_stack.count("fail")
|
||||||
|
|
||||||
|
if failed_count == 0 && success_count > 0
|
||||||
|
new_status = "轉介其他單位"
|
||||||
|
elsif failed_count > 0 && success_count > 0
|
||||||
|
new_status = "部份轉介失敗"
|
||||||
|
elsif failed_count > 0 && success_count == 0
|
||||||
|
new_status = "轉介失敗"
|
||||||
|
elsif failed_count == 0 && success_count == 0 && @ask_reply.status == "待處理"
|
||||||
|
new_status = "待處理"
|
||||||
|
elsif failed_count == 0 && success_count == 0 && @ask_reply.status == "已處理"
|
||||||
|
new_status = "已處理"
|
||||||
|
elsif failed_count == 0 && success_count == 0 && @ask_reply.status == "轉介其他單位"
|
||||||
|
new_status = "轉介失敗"
|
||||||
|
end
|
||||||
|
|
||||||
|
@ask_reply.update_attributes(status: new_status)
|
||||||
|
|
||||||
redirect_to panel_ask_back_end_ask_questions_path, notice: t('ask.reply_success')
|
redirect_to panel_ask_back_end_ask_questions_path, notice: t('ask.reply_success')
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
|
||||||
@ask_reply = AskReply.find(params[:id])
|
@ask_reply = AskReply.find(params[:id])
|
||||||
@ask_reply.update_attributes(params[:ask_reply])
|
@ask_reply.update_attributes(params[:ask_reply])
|
||||||
|
|
||||||
if @ask_reply.send_email?
|
if @ask_reply.send_email?
|
||||||
Resque.enqueue(SendAskReplyMail, @ask_reply.ask_question.id)
|
Resque.enqueue(SendAskReplyMail, @ask_reply.ask_question.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
status_stack = []
|
||||||
|
new_status = ""
|
||||||
|
params[:ask_reply][:depts].each do |dns|
|
||||||
|
# host = dns.split(":").first # local test
|
||||||
|
|
||||||
|
begin
|
||||||
|
status_stack << send_request(dns, @ask_reply.ask_question, @ask_reply) # local test, switch host to dns if on server
|
||||||
|
rescue
|
||||||
|
status_stack << "fail"
|
||||||
|
end
|
||||||
|
end if params[:ask_reply][:status] == "轉介其他單位"
|
||||||
|
|
||||||
|
success_count = status_stack.count("success")
|
||||||
|
failed_count = status_stack.count("fail")
|
||||||
|
|
||||||
|
if failed_count == 0 && success_count > 0
|
||||||
|
new_status = "轉介其他單位"
|
||||||
|
elsif failed_count > 0 && success_count > 0
|
||||||
|
new_status = "部份轉介失敗"
|
||||||
|
elsif failed_count > 0 && success_count == 0
|
||||||
|
new_status = "轉介失敗"
|
||||||
|
elsif failed_count == 0 && success_count == 0 && @ask_reply.status == "待處理"
|
||||||
|
new_status = "待處理"
|
||||||
|
elsif failed_count == 0 && success_count == 0 && @ask_reply.status == "已處理"
|
||||||
|
new_status = "已處理"
|
||||||
|
elsif failed_count == 0 && success_count == 0 && @ask_reply.status == "轉介其他單位"
|
||||||
|
new_status = "轉介失敗"
|
||||||
|
end
|
||||||
|
|
||||||
|
@ask_reply.update_attributes(status: new_status)
|
||||||
|
|
||||||
redirect_to panel_ask_back_end_ask_questions_path, notice: t('ask.reply_success')
|
redirect_to panel_ask_back_end_ask_questions_path, notice: t('ask.reply_success')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def send_request(dep_dns, current_question, current_reply)
|
||||||
|
require 'net/http'
|
||||||
|
require 'uri'
|
||||||
|
require 'json'
|
||||||
|
|
||||||
|
uri_path = "/panel/ask/back_end/ask_requests/transferred_request"
|
||||||
|
http = Net::HTTP.new(dep_dns, 80) # port 4000 for local test, switch to port 80 for deployment
|
||||||
|
req = Net::HTTP::Post.new(uri_path)
|
||||||
|
|
||||||
|
body = {
|
||||||
|
'name' => current_question.name,
|
||||||
|
'title' => current_question.title,
|
||||||
|
'identity' => current_question.identity,
|
||||||
|
'email' => current_question.email,
|
||||||
|
'phone' => current_question.phone,
|
||||||
|
'tax' => current_question.tax,
|
||||||
|
'content' => current_question.content
|
||||||
|
}
|
||||||
|
|
||||||
|
status = ""
|
||||||
|
req.set_form_data(body)
|
||||||
|
req.add_field 'X-Auth-Token', '3kjlfksjDFJ'
|
||||||
|
response = http.request(req)
|
||||||
|
|
||||||
|
if response.code == "200"
|
||||||
|
status = "success"
|
||||||
|
else
|
||||||
|
status = "fail"
|
||||||
|
end
|
||||||
|
|
||||||
|
return status
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -6,6 +6,7 @@ class AskReply
|
||||||
field :comment, type: String
|
field :comment, type: String
|
||||||
field :status, type: String
|
field :status, type: String
|
||||||
field :send_email, type: Boolean, detault: false
|
field :send_email, type: Boolean, detault: false
|
||||||
|
field :depts, :type => Array
|
||||||
|
|
||||||
belongs_to :ask_question
|
belongs_to :ask_question
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,3 +1,45 @@
|
||||||
|
<script type="text/javascript">
|
||||||
|
var local_host = "<%= request.host %>";
|
||||||
|
|
||||||
|
// var local_host = "<%= request.host_with_port %>"; // local test
|
||||||
|
|
||||||
|
if (local_host[0] == "g" && local_host[1] == "a") {
|
||||||
|
local_host = "www." + local_host;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hide_current_host_name(localhost) {
|
||||||
|
$('input[type=checkbox]').each(function() {
|
||||||
|
if ($(this).val() == local_host) {
|
||||||
|
$(this).addClass("hide");
|
||||||
|
$(this).next().addClass("hide");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(function() {
|
||||||
|
|
||||||
|
$('.dept_options').hide();
|
||||||
|
|
||||||
|
if ($("#ask_reply_status").val() == '轉介其他單位') {
|
||||||
|
|
||||||
|
hide_current_host_name(local_host);
|
||||||
|
|
||||||
|
$('.dept_options').show();
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#ask_reply_status").change(function() {
|
||||||
|
|
||||||
|
hide_current_host_name(local_host);
|
||||||
|
|
||||||
|
$('.dept_options').slideUp();
|
||||||
|
if ($(this).find('option:selected').attr('value') == '轉介其他單位') {
|
||||||
|
$('.dept_options').slideDown();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
<div id="ask_question_reply">
|
<div id="ask_question_reply">
|
||||||
<%= form_for @ask_reply, url: @url, method: @method do |f| %>
|
<%= form_for @ask_reply, url: @url, method: @method do |f| %>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
|
@ -32,6 +74,26 @@
|
||||||
['轉介其他單位', '轉介其他單位']
|
['轉介其他單位', '轉介其他單位']
|
||||||
] %></td>
|
] %></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="5" class="dept_options">
|
||||||
|
<div class="checkbox">
|
||||||
|
<!-- <%= check_box("school", "depts", {:multiple => true}, (request.host + ":3000"), nil) %><%= label_tag((request.host + ":3000"), "測試站 3000") %>
|
||||||
|
<%= check_box("school", "depts", {:multiple => true}, (request.host + ":4000"), nil) %><%= label_tag((request.host + ":4000"), "測試站 4000") %> -->
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "www.ga.ntu.edu.tw", nil) %><%= label_tag("www.ga.ntu.edu.tw", "總務處") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "sec.ga.ntu.edu.tw", nil) %><%= label_tag("sec.ga.ntu.edu.tw", "總務長室暨總務處秘書室") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "doc.ga.ntu.edu.tw", nil) %><%= label_tag("doc.ga.ntu.edu.tw", "文書組") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "general.ga.ntu.edu.tw", nil) %><%= label_tag("general.ga.ntu.edu.tw", "事務組") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "property.ga.ntu.edu.tw", nil) %><%= label_tag("property.ga.ntu.edu.tw", "保管組") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "construction.ga.ntu.edu.tw", nil) %><%= label_tag("construction.ga.ntu.edu.tw", "營繕組") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "cashier.ga.ntu.edu.tw", nil) %><%= label_tag("cashier.ga.ntu.edu.tw", "出納組") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "procurement.ga.ntu.edu.tw", nil) %><%= label_tag("procurement.ga.ntu.edu.tw", "採購組") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "fss.ga.ntu.edu.tw", nil) %><%= label_tag("fss.ga.ntu.edu.tw", "經營管理組") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "police.ga.ntu.edu.tw", nil) %><%= label_tag("police.ga.ntu.edu.tw", "駐警隊") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "social.ga.ntu.edu.tw", nil) %><%= label_tag("social.ga.ntu.edu.tw", "社科院總務分處") %>
|
||||||
|
<%= check_box("ask_reply", "depts", {:multiple => true}, "medicine.ga.ntu.edu.tw", nil) %><%= label_tag("medicine.ga.ntu.edu.tw", "醫學院總務分處") %>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5">
|
<td colspan="5">
|
||||||
<%= f.label :send_email %><%= f.radio_button :send_email, 1, checked: @ask_reply.send_email? %><%= t('ask.yes') %>
|
<%= f.label :send_email %><%= f.radio_button :send_email, 1, checked: @ask_reply.send_email? %><%= t('ask.yes') %>
|
||||||
|
|
|
@ -84,8 +84,11 @@ $(document).ready(function(){
|
||||||
<%= f.text_area :content, rows: 8, class: 'input-xlarge' %>
|
<%= f.text_area :content, rows: 8, class: 'input-xlarge' %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
|
<%= f.label t('ask.validate_code'), class: 'control-label required' %>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
|
<label><%= t('ask.validate_code_note') %></label>
|
||||||
<%= gotcha_error %>
|
<%= gotcha_error %>
|
||||||
<%= gotcha%>
|
<%= gotcha%>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -17,6 +17,8 @@ en:
|
||||||
admin: Administrator
|
admin: Administrator
|
||||||
new_question: New question
|
new_question: New question
|
||||||
pending: Pending
|
pending: Pending
|
||||||
|
validate_code: Verification code
|
||||||
|
validate_code_note: Please answer the following verification questions.
|
||||||
mongoid:
|
mongoid:
|
||||||
attributes:
|
attributes:
|
||||||
ask_question:
|
ask_question:
|
||||||
|
|
|
@ -22,6 +22,8 @@ zh_tw:
|
||||||
admin: 管理者
|
admin: 管理者
|
||||||
new_question: 新的發問
|
new_question: 新的發問
|
||||||
pending: 待處理
|
pending: 待處理
|
||||||
|
validate_code: 驗證碼
|
||||||
|
validate_code_note: 請回答下列驗證問句。
|
||||||
mongoid:
|
mongoid:
|
||||||
attributes:
|
attributes:
|
||||||
ask_question:
|
ask_question:
|
||||||
|
|
|
@ -15,6 +15,8 @@ Rails.application.routes.draw do
|
||||||
resources :ask_categories
|
resources :ask_categories
|
||||||
resources :ask_acknowledgements
|
resources :ask_acknowledgements
|
||||||
resources :ask_admins
|
resources :ask_admins
|
||||||
|
|
||||||
|
match "ask_requests/transferred_request" => "ask_requests#transferred_request", :as => 'transferred_request', :via => :post
|
||||||
end
|
end
|
||||||
|
|
||||||
namespace :front_end do
|
namespace :front_end do
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
<% @job_title_field = @member_lists.get_member_list_attribute_field("staff","job_title") %>
|
<% @job_title_field = @member_lists.get_member_list_attribute_field("staff","job_title") %>
|
||||||
<% @job_business_field = @member_lists.get_member_list_attribute_field("staff","business") %>
|
<% @job_business_field = @member_lists.get_member_list_attribute_field("staff","business") %>
|
||||||
|
<% @job_agent_field = @member_lists.get_member_list_attribute_field("staff","agent") %>
|
||||||
|
|
||||||
<% if @item.frontend_style == 'Single' or @item.frontend_style == 'Two' %>
|
<% if @item.frontend_style == 'Single' or @item.frontend_style == 'Two' %>
|
||||||
|
|
||||||
|
@ -58,6 +59,15 @@
|
||||||
<%= @job_business %>
|
<%= @job_business %>
|
||||||
</li>
|
</li>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% @job_agent = @member_lists.get_member_list_attribute_value(member.id,@job_agent_field.id).get_value_by_locale(I18n.locale)
|
||||||
|
if @job_agent != 'NoData' and !@job_agent.blank?
|
||||||
|
%>
|
||||||
|
<li><b class="o-members-label">
|
||||||
|
<%= @job_agent_field.title %></b>
|
||||||
|
<%= @job_agent %>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
@ -110,6 +120,15 @@
|
||||||
<%= @job_business %>
|
<%= @job_business %>
|
||||||
</li>
|
</li>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% @job_agent = @member_lists.get_member_list_attribute_value(member.id,@job_agent_field.id).get_value_by_locale(I18n.locale)
|
||||||
|
if @job_agent != 'NoData' and !@job_agent.blank?
|
||||||
|
%>
|
||||||
|
<li><b class="o-members-label">
|
||||||
|
<%= @job_agent_field.title %></b>
|
||||||
|
<%= @job_agent %>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
@ -153,6 +172,7 @@
|
||||||
<td><span class="name"><%= t("users.name")%></span></td>
|
<td><span class="name"><%= t("users.name")%></span></td>
|
||||||
<td><span class="tel"><%= t("users.office_tel")%></span></td>
|
<td><span class="tel"><%= t("users.office_tel")%></span></td>
|
||||||
<td><span class="business"><%= @job_business_field.title %></span></td>
|
<td><span class="business"><%= @job_business_field.title %></span></td>
|
||||||
|
<td><span class="agent"><%= @job_agent_field.title %></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
|
@ -181,6 +201,15 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<span class="agent">
|
||||||
|
<% @job_agent = @member_lists.get_member_list_attribute_value(member.id,@job_agent_field.id).get_value_by_locale(I18n.locale)
|
||||||
|
if @job_agent != 'NoData' and !@job_agent.blank?
|
||||||
|
%>
|
||||||
|
<%= @job_agent %>
|
||||||
|
<% end %>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -48,6 +48,7 @@ class Panel::PageContent::BackEnd::PageContextsController < OrbitBackendControll
|
||||||
# GET /page_contexts/1/edit
|
# GET /page_contexts/1/edit
|
||||||
def edit
|
def edit
|
||||||
@page_context = PageContext.find(params[:id])
|
@page_context = PageContext.find(params[:id])
|
||||||
|
@users = @page_context.get_users
|
||||||
end
|
end
|
||||||
|
|
||||||
# POST /page_contexts
|
# POST /page_contexts
|
||||||
|
|
|
@ -15,6 +15,7 @@ class PageContext
|
||||||
field :update_user_id
|
field :update_user_id
|
||||||
field :version, :type => Integer , :default => 0
|
field :version, :type => Integer , :default => 0
|
||||||
field :view_count, :type => Integer, :default => 0
|
field :view_count, :type => Integer, :default => 0
|
||||||
|
field :user_ids
|
||||||
|
|
||||||
field :archived, :type => Boolean, :default => false
|
field :archived, :type => Boolean, :default => false
|
||||||
# field :current, :type => Boolean, :default => false
|
# field :current, :type => Boolean, :default => false
|
||||||
|
@ -37,4 +38,8 @@ class PageContext
|
||||||
self.page.title
|
self.page.title
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_users
|
||||||
|
User.find(self.user_ids) rescue []
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
|
@ -4,6 +4,33 @@
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<div class="input-area">
|
<div class="input-area">
|
||||||
|
|
||||||
|
<!-- Module Tabs -->
|
||||||
|
<div class="nav-name"><strong><%= t(:module) %></strong></div>
|
||||||
|
<ul class="nav nav-pills module-nav">
|
||||||
|
<li class="active">
|
||||||
|
<a href="#basic" data-toggle="tab"><%= t(:basic) %></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!-- Module -->
|
||||||
|
<div class="tab-content module-area">
|
||||||
|
|
||||||
|
<!-- Basic Module -->
|
||||||
|
<div class="tab-pane fade in active" id="basic">
|
||||||
|
|
||||||
|
<!-- Promoter -->
|
||||||
|
<div class="control-group">
|
||||||
|
<label class="control-label muted"><%= t(:promoter) %></label>
|
||||||
|
<div class="controls">
|
||||||
|
<%= render partial: 'admin/member_selects/selection_box', locals: {field: 'page_context[user_ids][]', users: @users} %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Language Tabs -->
|
<!-- Language Tabs -->
|
||||||
<div class="nav-name"><strong><%= t(:language) %></strong></div>
|
<div class="nav-name"><strong><%= t(:language) %></strong></div>
|
||||||
<ul class="nav nav-pills language-nav">
|
<ul class="nav nav-pills language-nav">
|
||||||
|
|
|
@ -8,4 +8,4 @@
|
||||||
|
|
||||||
<div class="page_content"><%= @page_context.context.html_safe rescue '' %></div>
|
<div class="page_content"><%= @page_context.context.html_safe rescue '' %></div>
|
||||||
|
|
||||||
|
<%= render partial: 'admin/member_selects/promoter_front', locals: {users: @page_context.get_users} %>
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span1"><%= t('personal_book.year') %></th>
|
<th class="span1"><%= t('personal_book.year') %></th>
|
||||||
<th><%= t('personal_book.book_title') %></th>
|
<th><%= t('personal_book.book_title') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span1"><%= t('personal_conference.year') %></th>
|
<th class="span1"><%= t('personal_conference.year') %></th>
|
||||||
<th><%= t('module_name.personal_conference') %></th>
|
<th><%= t('module_name.personal_conference') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span2"><%= t('date_') %></th>
|
<th class="span2"><%= t('date_') %></th>
|
||||||
<th><%= t('personal_diploma.school_name') %></th>
|
<th><%= t('personal_diploma.school_name') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span2"><%= t('date_') %></th>
|
<th class="span2"><%= t('date_') %></th>
|
||||||
<th><%= t('personal_experience.organizationt_title') %></th>
|
<th><%= t('personal_experience.organizationt_title') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span1"><%= t('personal_honor.year') %></th>
|
<th class="span1"><%= t('personal_honor.year') %></th>
|
||||||
<th><%= t('personal_honor.award_name') %></th>
|
<th><%= t('personal_honor.award_name') %></th>
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span1"><%= t('personal_journal.year') %></th>
|
<th class="span1"><%= t('personal_journal.year') %></th>
|
||||||
<th><%= t('module_name.personal_journal') %></th>
|
<th><%= t('module_name.personal_journal') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span1"><%= t('personal_lab.year') %></th>
|
<th class="span1"><%= t('personal_lab.year') %></th>
|
||||||
<th><%= t('personal_lab.lab_title') %></th>
|
<th><%= t('personal_lab.lab_title') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span2"><%= t('personal_patent.publication_date') %></th>
|
<th class="span2"><%= t('personal_patent.publication_date') %></th>
|
||||||
<th><%= t('personal_patent.patent_title') %></th>
|
<th><%= t('personal_patent.patent_title') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span2"><%= t('personal_project.period') %></th>
|
<th class="span2"><%= t('personal_project.period') %></th>
|
||||||
<th><%= t('personal_project.project_title') %></th>
|
<th><%= t('personal_project.project_title') %></th>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<% if is_admin? %>
|
<% if is_admin? %>
|
||||||
<th><input type="checkbox" /></th>
|
<th><input type="checkbox" class="list-check" /></th>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<th class="span2"><%= t('personal_research.publication_date') %></th>
|
<th class="span2"><%= t('personal_research.publication_date') %></th>
|
||||||
<th><%= t('personal_research.research_title') %></th>
|
<th><%= t('personal_research.research_title') %></th>
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
require 'csv'
|
|
||||||
|
|
||||||
class Panel::Survey::BackEnd::SurveysController < OrbitBackendController
|
class Panel::Survey::BackEnd::SurveysController < OrbitBackendController
|
||||||
|
|
||||||
|
require 'csv'
|
||||||
|
require 'iconv'
|
||||||
|
require 'roo'
|
||||||
|
|
||||||
include AdminHelper
|
include AdminHelper
|
||||||
include OrbitControllerLib::DivisionForDisable
|
include OrbitControllerLib::DivisionForDisable
|
||||||
|
|
||||||
|
@ -105,6 +107,145 @@ class Panel::Survey::BackEnd::SurveysController < OrbitBackendController
|
||||||
redirect_to panel_survey_back_end_surveys_url(:direction => params[:direction], :sort => params[:sort], :sort_options => params[:sort_options])
|
redirect_to panel_survey_back_end_surveys_url(:direction => params[:direction], :sort => params[:sort], :sort_options => params[:sort_options])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def set_import
|
||||||
|
@survey = ::Survey.find(params[:id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def import
|
||||||
|
@survey = ::Survey.find(params[:id])
|
||||||
|
@chart_data, @survey_questions, @survey_answers = @survey.generate_chart_data
|
||||||
|
@file = params[:file]
|
||||||
|
|
||||||
|
case File.extname(@file.original_filename)
|
||||||
|
when ".csv" then @spreadsheet = Roo::CSV.new(@file.path, csv_options: {encoding: Encoding::Big5})
|
||||||
|
# when ".xls" then Excel.new(file.path, nil, :ignore)
|
||||||
|
# when ".xlsx" then Excelx.new(file.path, nil, :ignore)
|
||||||
|
else raise "Unknown file type: #{file.original_filename}"
|
||||||
|
end
|
||||||
|
|
||||||
|
# Modify titles if changed
|
||||||
|
titles = @spreadsheet.row(1) - [" "]
|
||||||
|
@survey_questions.each_with_index do |question, index|
|
||||||
|
question.update_attributes(title: titles[index])
|
||||||
|
end
|
||||||
|
|
||||||
|
@survey_answers.destroy
|
||||||
|
|
||||||
|
# Start and end of speadsheet
|
||||||
|
@end_row = @spreadsheet.count
|
||||||
|
|
||||||
|
@max_row_start = 0
|
||||||
|
@survey_questions.each do |question|
|
||||||
|
case question.type
|
||||||
|
when ::SurveyQuestion::Radio, ::SurveyQuestion::Select, ::SurveyQuestion::Check
|
||||||
|
if question.survey_question_options.count > @max_row_start
|
||||||
|
@max_row_start = question.survey_question_options.count
|
||||||
|
end
|
||||||
|
when ::SurveyQuestion::Radiogroup
|
||||||
|
if question.survey_question_options.count * question.survey_question_radiogroups.count > @max_row_start
|
||||||
|
@max_row_start = question.survey_question_options.count * question.survey_question_radiogroups.count
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
@start_row = @max_row_start + 2
|
||||||
|
|
||||||
|
# Modify multiline options if changed
|
||||||
|
(@start_row..@end_row).each do |row|
|
||||||
|
@answer_model = @survey.survey_answers.new
|
||||||
|
@survey_questions.each_with_index do |question, index|
|
||||||
|
case question.type
|
||||||
|
|
||||||
|
when ::SurveyQuestion::Oneline, ::SurveyQuestion::Multiline
|
||||||
|
@answer_model[question.id.to_s] = @spreadsheet.row(row)[index * 2]
|
||||||
|
|
||||||
|
when ::SurveyQuestion::Radio, ::SurveyQuestion::Select
|
||||||
|
if !@spreadsheet.row(row)[index*2].nil? && @spreadsheet.row(row)[index*2] != " "
|
||||||
|
@answer_model[question.id.to_s] = @spreadsheet.row(row)[index*2]
|
||||||
|
end
|
||||||
|
|
||||||
|
when ::SurveyQuestion::Check
|
||||||
|
if !@spreadsheet.row(row)[index*2].nil? && @spreadsheet.row(row)[index*2] != " "
|
||||||
|
@answer_model[question.id.to_s] = @spreadsheet.row(row)[index*2].split("\"").select.each_with_index { |str, i| i.odd? }
|
||||||
|
end
|
||||||
|
|
||||||
|
when ::SurveyQuestion::Radiogroup
|
||||||
|
radio_groups = []
|
||||||
|
spreadsheet_radiogroups_lines =
|
||||||
|
question.survey_question_options.count * question.survey_question_radiogroups.count + 2
|
||||||
|
|
||||||
|
# Grab each radiogroups line for update
|
||||||
|
(2...spreadsheet_radiogroups_lines).each do |line|
|
||||||
|
radio_groups << @spreadsheet.row(line)[index * 2]
|
||||||
|
end
|
||||||
|
|
||||||
|
# Grab answers info
|
||||||
|
answers = []
|
||||||
|
if not @spreadsheet.row(row)[index * 2].blank?
|
||||||
|
answers << eval(@spreadsheet.row(row)[index * 2])
|
||||||
|
end
|
||||||
|
|
||||||
|
# Save the answers
|
||||||
|
answers.each do |answer|
|
||||||
|
options = Hash[question.survey_question_options.collect { |o| [ o.id.to_s, o.name ] }]
|
||||||
|
# @answer_model = @survey.survey_answers.new
|
||||||
|
@answer_model[question.id.to_s] = {}
|
||||||
|
|
||||||
|
answer.each do |option, value|
|
||||||
|
@answer_model[question.id.to_s][options.invert[option]] = value
|
||||||
|
end
|
||||||
|
|
||||||
|
# @answer_model.save!
|
||||||
|
end
|
||||||
|
|
||||||
|
# Parse the needed info in the array
|
||||||
|
radio_titles = []
|
||||||
|
radio_options = []
|
||||||
|
radio_groups.each do |group|
|
||||||
|
option_with_radio = group.split(' - ')
|
||||||
|
radio_titles << option_with_radio[0]
|
||||||
|
radio_options << option_with_radio[1]
|
||||||
|
end
|
||||||
|
|
||||||
|
# Update the spreadsheet info to the DB
|
||||||
|
groups_of_options = []
|
||||||
|
groups_of_radios = []
|
||||||
|
radio_titles.each_slice(question.survey_question_radiogroups.count) do |options|
|
||||||
|
groups_of_options << options
|
||||||
|
end
|
||||||
|
|
||||||
|
radio_options.each_slice(question.survey_question_radiogroups.count) do |options|
|
||||||
|
groups_of_radios << options
|
||||||
|
end
|
||||||
|
|
||||||
|
# Update option names
|
||||||
|
question.survey_question_options.each_with_index do |option, index|
|
||||||
|
groups_of_options[index].each do |modified_option|
|
||||||
|
if option.name_translations["zh_tw"] != modified_option
|
||||||
|
option.update_attributes(name: modified_option)
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Update radio names
|
||||||
|
question.survey_question_radiogroups.each_with_index do |option, index|
|
||||||
|
groups_of_radios.each do |radios|
|
||||||
|
if radios[index] != option.name_translations["zh_tw"]
|
||||||
|
option.update_attributes(name: radios[index])
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
@answer_model.save!
|
||||||
|
|
||||||
|
end #end row
|
||||||
|
|
||||||
|
redirect_to panel_survey_back_end_surveys_url, :notice => :success
|
||||||
|
end
|
||||||
|
|
||||||
def export
|
def export
|
||||||
@survey = ::Survey.find(params[:id])
|
@survey = ::Survey.find(params[:id])
|
||||||
@chart_data, @survey_questions, @survey_answers = @survey.generate_chart_data
|
@chart_data, @survey_questions, @survey_answers = @survey.generate_chart_data
|
||||||
|
|
|
@ -13,7 +13,8 @@
|
||||||
<li><%= link_to t('survey.duplicate_it'), duplicate_it_panel_survey_back_end_survey_path(survey, :page => params[:page]) %></li>
|
<li><%= link_to t('survey.duplicate_it'), duplicate_it_panel_survey_back_end_survey_path(survey, :page => params[:page]) %></li>
|
||||||
<li><%= link_to t('survey.jump'), jump_panel_survey_back_end_survey_path(survey, :page => params[:page]) %></li>
|
<li><%= link_to t('survey.jump'), jump_panel_survey_back_end_survey_path(survey, :page => params[:page]) %></li>
|
||||||
<li><%= link_to t('survey.set_answers'), set_answers_panel_survey_back_end_survey_path(survey, :page => params[:page]) %></li>
|
<li><%= link_to t('survey.set_answers'), set_answers_panel_survey_back_end_survey_path(survey, :page => params[:page]) %></li>
|
||||||
<li><%= link_to t('survey.export_csv'), export_panel_survey_back_end_survey_path(survey, :format => :csv), :target => '_blank' %></li>
|
<li><%= link_to t('survey.export_csv'), export_panel_survey_back_end_survey_path(survey, :format => :csv) %></li>
|
||||||
|
<li><%= link_to t('survey.import_csv'), set_import_panel_survey_back_end_survey_path(survey) %></li>
|
||||||
<li><%= link_to t('survey.chart'), result_panel_survey_front_end_survey_path(survey, :force_chart => true, :standalone => true), :target => '_blank' %></li>
|
<li><%= link_to t('survey.chart'), result_panel_survey_front_end_survey_path(survey, :force_chart => true, :standalone => true), :target => '_blank' %></li>
|
||||||
<li><%= link_to t(:delete_), panel_survey_back_end_survey_path(survey), :confirm => t('sure?'), :method => :delete, :remote => true %></li>
|
<li><%= link_to t(:delete_), panel_survey_back_end_survey_path(survey), :confirm => t('sure?'), :method => :delete, :remote => true %></li>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
|
18
vendor/built_in_modules/survey/app/views/panel/survey/back_end/surveys/set_import.html.erb
vendored
Normal file
18
vendor/built_in_modules/survey/app/views/panel/survey/back_end/surveys/set_import.html.erb
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<%= form_tag import_panel_survey_back_end_survey_path(@survey), multipart: true do %>
|
||||||
|
<table class="table main-list">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th class="span2"><%= t('survey.title') %></th>
|
||||||
|
<th class="span2"></th>
|
||||||
|
<th class="span2"></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody id="tbody_surveys" class="sort-holder">
|
||||||
|
<tr>
|
||||||
|
<td><%= @survey.title %></td>
|
||||||
|
<td><%= file_field_tag :file %></td>
|
||||||
|
<td><%= submit_tag t("survey.import_csv"), :class => 'btn' %></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<% end %>
|
|
@ -24,6 +24,7 @@ en:
|
||||||
answer_error: Unsuccessful answer
|
answer_error: Unsuccessful answer
|
||||||
|
|
||||||
answers_list: Answers List
|
answers_list: Answers List
|
||||||
|
import_csv: Import CSV
|
||||||
export_csv: Export CSV
|
export_csv: Export CSV
|
||||||
chart: Chart
|
chart: Chart
|
||||||
set_answers: Set Answers
|
set_answers: Set Answers
|
||||||
|
|
|
@ -25,6 +25,7 @@ zh_tw:
|
||||||
answer_error: 問卷填寫錯誤
|
answer_error: 問卷填寫錯誤
|
||||||
|
|
||||||
answers_list: 結果清單
|
answers_list: 結果清單
|
||||||
|
import_csv: 匯入CSV
|
||||||
export_csv: 匯出CSV
|
export_csv: 匯出CSV
|
||||||
chart: 結果圖表
|
chart: 結果圖表
|
||||||
set_answers: 設定結果
|
set_answers: 設定結果
|
||||||
|
|
|
@ -9,6 +9,8 @@ Rails.application.routes.draw do
|
||||||
end
|
end
|
||||||
member do
|
member do
|
||||||
get 'export'
|
get 'export'
|
||||||
|
get 'set_import'
|
||||||
|
post 'import'
|
||||||
get 'set_answers'
|
get 'set_answers'
|
||||||
get 'jump'
|
get 'jump'
|
||||||
get 'duplicate_it'
|
get 'duplicate_it'
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
source "http://rubygems.org"
|
||||||
|
|
||||||
|
# Declare your gem's dependencies in survey_b.gemspec.
|
||||||
|
# Bundler will treat runtime dependencies like base dependencies, and
|
||||||
|
# development dependencies will be added by default to the :development group.
|
||||||
|
gemspec
|
||||||
|
|
||||||
|
# jquery-rails is used by the dummy application
|
||||||
|
gem "jquery-rails"
|
||||||
|
|
||||||
|
# Declare any dependencies that are still in development here instead of in
|
||||||
|
# your gemspec. These might include edge Rails or gems from your path or
|
||||||
|
# Git. Remember to move these dependencies to your gemspec before releasing
|
||||||
|
# your gem to rubygems.org.
|
||||||
|
|
||||||
|
# To use debugger
|
||||||
|
# gem 'debugger'
|
|
@ -0,0 +1,20 @@
|
||||||
|
Copyright 2013 YOURNAME
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -0,0 +1,3 @@
|
||||||
|
= SurveyB
|
||||||
|
|
||||||
|
This project rocks and uses MIT-LICENSE.
|
|
@ -0,0 +1,38 @@
|
||||||
|
#!/usr/bin/env rake
|
||||||
|
begin
|
||||||
|
require 'bundler/setup'
|
||||||
|
rescue LoadError
|
||||||
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
||||||
|
end
|
||||||
|
begin
|
||||||
|
require 'rdoc/task'
|
||||||
|
rescue LoadError
|
||||||
|
require 'rdoc/rdoc'
|
||||||
|
require 'rake/rdoctask'
|
||||||
|
RDoc::Task = Rake::RDocTask
|
||||||
|
end
|
||||||
|
|
||||||
|
RDoc::Task.new(:rdoc) do |rdoc|
|
||||||
|
rdoc.rdoc_dir = 'rdoc'
|
||||||
|
rdoc.title = 'SurveyB'
|
||||||
|
rdoc.options << '--line-numbers'
|
||||||
|
rdoc.rdoc_files.include('README.rdoc')
|
||||||
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Bundler::GemHelper.install_tasks
|
||||||
|
|
||||||
|
require 'rake/testtask'
|
||||||
|
|
||||||
|
Rake::TestTask.new(:test) do |t|
|
||||||
|
t.libs << 'lib'
|
||||||
|
t.libs << 'test'
|
||||||
|
t.pattern = 'test/**/*_test.rb'
|
||||||
|
t.verbose = false
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
task :default => :test
|
|
@ -0,0 +1,23 @@
|
||||||
|
class ApplicationController < ActionController::Base
|
||||||
|
protect_from_forgery
|
||||||
|
before_filter :set_locale
|
||||||
|
|
||||||
|
# Set I18n.locale
|
||||||
|
def set_locale
|
||||||
|
# update session if passed
|
||||||
|
session[:locale] = params[:locale] if params[:locale]
|
||||||
|
|
||||||
|
# set locale based on session or default
|
||||||
|
begin
|
||||||
|
# check if locale is valid for non site pages
|
||||||
|
if !VALID_LOCALES.include?(session[:locale])
|
||||||
|
I18n.locale = I18n.default_locale
|
||||||
|
else
|
||||||
|
I18n.locale = session[:locale]
|
||||||
|
end
|
||||||
|
rescue
|
||||||
|
I18n.locale = I18n.default_locale
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
81
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/back_end/periods_controller.rb
vendored
Normal file
81
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/back_end/periods_controller.rb
vendored
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
class Panel::SurveyB::BackEnd::PeriodsController < OrbitBackendController
|
||||||
|
|
||||||
|
# include AdminHelper
|
||||||
|
# include OrbitControllerLib::DivisionForDisable
|
||||||
|
|
||||||
|
# before_filter :for_app_manager
|
||||||
|
|
||||||
|
open_for_manager
|
||||||
|
|
||||||
|
# def initialize
|
||||||
|
# super
|
||||||
|
# @app_title = 'survey_b'
|
||||||
|
# end
|
||||||
|
|
||||||
|
|
||||||
|
# before_filter :force_order_for_user,:only => :index
|
||||||
|
# before_filter :for_app_sub_manager,:except => :index
|
||||||
|
|
||||||
|
|
||||||
|
def index
|
||||||
|
@periods = SurveyBPeriod.page params[:page]
|
||||||
|
respond_to do |format|
|
||||||
|
format.html # index.html.erb
|
||||||
|
format.xml { render :xml => @periods }
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def new
|
||||||
|
@period = SurveyBPeriod.new
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
format.html # new.html.erb
|
||||||
|
format.xml { render :xml => @period }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
@period = SurveyBPeriod.new params[:survey_b_period]
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
if @period.save
|
||||||
|
format.html { redirect_to(panel_survey_b_back_end_periods_url) }
|
||||||
|
format.xml { render :xml => @period, :status => :created, :location => @period }
|
||||||
|
else
|
||||||
|
format.html { render :action => "new" }
|
||||||
|
format.xml { render :xml => @period.errors, :status => :unprocessable_entity }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
@period = SurveyBPeriod.find(params[:id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def update
|
||||||
|
@period = SurveyBPeriod.find(params[:id])
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
if @period.update_attributes(params[:survey_b_period])
|
||||||
|
format.html { redirect_to(panel_survey_b_back_end_periods_url(:page => params[:page])) }
|
||||||
|
format.xml { head :ok }
|
||||||
|
else
|
||||||
|
format.html { render :action => "edit" }
|
||||||
|
format.xml { render :xml => @period.errors, :status => :unprocessable_entity }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy
|
||||||
|
@period = SurveyBPeriod.find(params[:id])
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
if @period.destroy
|
||||||
|
format.html { redirect_to(panel_survey_b_back_end_periods_url(:page => params[:page])) }
|
||||||
|
format.xml { head :ok }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
37
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/back_end/settings_controller.rb
vendored
Normal file
37
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/back_end/settings_controller.rb
vendored
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
class Panel::SurveyB::BackEnd::SettingsController < OrbitBackendController
|
||||||
|
|
||||||
|
# include AdminHelper
|
||||||
|
# include OrbitControllerLib::DivisionForDisable
|
||||||
|
|
||||||
|
# before_filter :for_app_manager
|
||||||
|
open_for_manager
|
||||||
|
|
||||||
|
# def initialize
|
||||||
|
# super
|
||||||
|
# @app_title = 'survey_b'
|
||||||
|
# end
|
||||||
|
|
||||||
|
def show
|
||||||
|
redirect_to edit_panel_survey_b_back_end_setting_path
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
@setting = SurveyBSetting.first_or_create
|
||||||
|
end
|
||||||
|
|
||||||
|
def update
|
||||||
|
@setting = SurveyBSetting.first_or_create
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
if @setting.update_attributes(params[:survey_b_setting])
|
||||||
|
format.html { redirect_to(panel_survey_b_back_end_periods_url) }
|
||||||
|
format.xml { head :ok }
|
||||||
|
else
|
||||||
|
format.html { render :action => "edit" }
|
||||||
|
format.xml { render :xml => @setting.errors, :status => :unprocessable_entity }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
end
|
168
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/back_end/survey_b_controller.rb
vendored
Normal file
168
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/back_end/survey_b_controller.rb
vendored
Normal file
|
@ -0,0 +1,168 @@
|
||||||
|
class Panel::SurveyB::BackEnd::SurveyBController < OrbitBackendController
|
||||||
|
# include AdminHelper
|
||||||
|
# include OrbitControllerLib::DivisionForDisable
|
||||||
|
|
||||||
|
# before_filter :for_app_manager
|
||||||
|
|
||||||
|
open_for_manager
|
||||||
|
|
||||||
|
#before_filter :force_order_for_user,:only => :index
|
||||||
|
#before_filter :for_app_sub_manager,:except => :index
|
||||||
|
|
||||||
|
|
||||||
|
# def initialize
|
||||||
|
# super
|
||||||
|
# @app_title = 'survey_b'
|
||||||
|
# end
|
||||||
|
|
||||||
|
def index
|
||||||
|
if params[:period] && @period = SurveyBPeriod.find(params[:period])
|
||||||
|
@answers = ::SurveyBAnswer.where(:created_at.gte => @period.start_date, :created_at.lte => @period.end_date)
|
||||||
|
else
|
||||||
|
@answers = ::SurveyBAnswer.all
|
||||||
|
end
|
||||||
|
if params[:sort]
|
||||||
|
options = params[:sort_options]
|
||||||
|
options = [options] if !options.class.eql?(Array)
|
||||||
|
options.each do |option|
|
||||||
|
@answers = @answers.order_by(option, params[:direction])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
@answers = @answers.page(params[:page]).per(10)
|
||||||
|
respond_to do |format|
|
||||||
|
format.html # index.html.erb
|
||||||
|
format.xml { render :xml => @answers }
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy
|
||||||
|
@answers = SurveyBAnswer.find(params[:id])
|
||||||
|
# @bulletin.bulletin_files.destroy
|
||||||
|
@answers.destroy
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
|
||||||
|
format.html { redirect_to(panel_survey_b_back_end_survey_b_index_path(:period => params[:period], :page => params[:page])) }
|
||||||
|
# format.xml { head :ok }
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def delete
|
||||||
|
if params[:ids]
|
||||||
|
answers = SurveyBAnswer.any_in(:_id => params[:ids]).destroy_all
|
||||||
|
end
|
||||||
|
redirect_to panel_survey_b_back_end_survey_b_index_url(:direction => params[:direction], :sort => params[:sort], :sort_options => params[:sort_options])
|
||||||
|
end
|
||||||
|
|
||||||
|
def result
|
||||||
|
if params[:period] && @period = SurveyBPeriod.find(params[:period])
|
||||||
|
@answers = ::SurveyBAnswer.where(:created_at.gte => @period.start_date, :created_at.lte => @period.end_date)
|
||||||
|
else
|
||||||
|
@answers = ::SurveyBAnswer.all
|
||||||
|
end
|
||||||
|
@results = Hash[(t('survey_b.institutions').keys + [ 'all' ]).map do |i_key|
|
||||||
|
[i_key, Hash[(t('survey_b.questions').keys + ['count', 'sum', 'sum7'] ).map{|q_key| [q_key, 0] }].merge({ 'count' => 0, 'sum' => 0, 'sum7' => 0 })]
|
||||||
|
end]
|
||||||
|
[:good_institutions, :bad_institutions].each do |item|
|
||||||
|
@results[item] = Hash[t('survey_b.institutions').map{|k, i| [k, 0] }]
|
||||||
|
end
|
||||||
|
[:person_question, :rate_question, :quality_question].each do |item|
|
||||||
|
@results[item] = t("survey_b.#{item}_options").map{|o| 0 }
|
||||||
|
end
|
||||||
|
@answers.each do |answer|
|
||||||
|
t('survey_b.institutions').each do |i_key, institution|
|
||||||
|
if answer[i_key.to_s]
|
||||||
|
@results[i_key]['count'] += 1
|
||||||
|
t('survey_b.questions').keys.each do |q_key|
|
||||||
|
point = 10 - ( answer[i_key.to_s][q_key.to_s].to_i * 2 )
|
||||||
|
@results[i_key][q_key] += point
|
||||||
|
@results[i_key]['sum'] += point
|
||||||
|
if q_key != :question6
|
||||||
|
@results[i_key]['sum7'] += point
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
[:good_institutions, :bad_institutions].each do |item|
|
||||||
|
if answer[item.to_s]
|
||||||
|
answer[item.to_s].each do |institution|
|
||||||
|
@results[item][institution] += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
[:person_question, :rate_question, :quality_question].each do |item|
|
||||||
|
if answer[item.to_s]
|
||||||
|
@results[item][answer[item.to_s].to_i] += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
t('survey_b.institutions').each do |i_key, institution|
|
||||||
|
(t('survey_b.questions').keys + ['count', 'sum', 'sum7'] ).each do |q_key|
|
||||||
|
@results['all'][q_key] += @results[i_key][q_key]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def export
|
||||||
|
|
||||||
|
if params[:period] && @period = SurveyBPeriod.find(params[:period])
|
||||||
|
@answers = ::SurveyBAnswer.where(:created_at.gte => @period.start_date, :created_at.lte => @period.end_date)
|
||||||
|
@comment_question = ::SurveyBAnswer.where(:created_at.gte => @period.start_date, :created_at.lte => @period.end_date, :comment_question.nin => [''])
|
||||||
|
else
|
||||||
|
@answers = ::SurveyBAnswer.all
|
||||||
|
@comment_question = ::SurveyBAnswer.where(:comment_question.nin => [''])
|
||||||
|
end
|
||||||
|
@results = Hash[(t('survey_b.institutions').keys + [ 'all' ]).map do |i_key|
|
||||||
|
[i_key, Hash[(t('survey_b.questions').keys + ['count', 'sum', 'sum7'] ).map{|q_key| [q_key, 0] }].merge({ 'count' => 0, 'sum' => 0, 'sum7' => 0 })]
|
||||||
|
end]
|
||||||
|
[:good_institutions, :bad_institutions].each do |item|
|
||||||
|
@results[item] = Hash[t('survey_b.institutions').map{|k, i| [k, 0] }]
|
||||||
|
end
|
||||||
|
[:person_question, :rate_question, :quality_question].each do |item|
|
||||||
|
@results[item] = t("survey_b.#{item}_options").map{|o| 0 }
|
||||||
|
end
|
||||||
|
@answers.each do |answer|
|
||||||
|
t('survey_b.institutions').each do |i_key, institution|
|
||||||
|
if answer[i_key.to_s]
|
||||||
|
@results[i_key]['count'] += 1
|
||||||
|
t('survey_b.questions').keys.each do |q_key|
|
||||||
|
point = 10 - ( answer[i_key.to_s][q_key.to_s].to_i * 2 )
|
||||||
|
@results[i_key][q_key] += point
|
||||||
|
@results[i_key]['sum'] += point
|
||||||
|
if q_key != :question6
|
||||||
|
@results[i_key]['sum7'] += point
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
[:good_institutions, :bad_institutions].each do |item|
|
||||||
|
if answer[item.to_s]
|
||||||
|
answer[item.to_s].each do |institution|
|
||||||
|
@results[item][institution] += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
[:person_question, :rate_question, :quality_question].each do |item|
|
||||||
|
if answer[item.to_s]
|
||||||
|
@results[item][answer[item.to_s].to_i] += 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
t('survey_b.institutions').each do |i_key, institution|
|
||||||
|
(t('survey_b.questions').keys + ['count', 'sum', 'sum7'] ).each do |q_key|
|
||||||
|
@results['all'][q_key] += @results[i_key][q_key]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
@setting = SurveyBSetting.first
|
||||||
|
|
||||||
|
headers['Content-Type'] = "application/vnd.ms-excel"
|
||||||
|
headers['Content-Disposition'] = "attachment; filename=#{@period.title}.xls"
|
||||||
|
headers['Cache-Control'] = ''
|
||||||
|
|
||||||
|
render :layout => false
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
88
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/front_end/survey_b_controller.rb
vendored
Normal file
88
vendor/built_in_modules/survey_b/app/controllers/panel/survey_b/front_end/survey_b_controller.rb
vendored
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
class Panel::SurveyB::FrontEnd::SurveyBController < OrbitWidgetController
|
||||||
|
helper ApplicationHelper
|
||||||
|
|
||||||
|
def index
|
||||||
|
if params[:period].nil?
|
||||||
|
@period = SurveyBPeriod.get_current_survey()
|
||||||
|
else
|
||||||
|
@period = SurveyBPeriod.find(params[:period])
|
||||||
|
end
|
||||||
|
|
||||||
|
redirect_standalone panel_survey_b_front_end_survey_b_index_path( :standalone => 'true') do
|
||||||
|
@setting = SurveyBSetting.first_or_create
|
||||||
|
if params[:agree] == '1'
|
||||||
|
# @period = SurveyBPeriod.first
|
||||||
|
render :index, :layout => 'standalone'
|
||||||
|
else
|
||||||
|
# Escape from error when announcement is empty
|
||||||
|
if @setting.announcement.nil?
|
||||||
|
@setting.announcement = " "
|
||||||
|
end
|
||||||
|
render :announcement, :layout => 'standalone'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
answer = params[:answer]
|
||||||
|
@answer_model = ::SurveyBAnswer.new
|
||||||
|
not_answered = true
|
||||||
|
[:contact_name, :contact_phone, :contact_e_mail, :person_question, :rate_question, :quality_question].each do |item|
|
||||||
|
if answer[item].blank?
|
||||||
|
@answer_model.errors.add t("survey_b.#{item.to_s}_label"), t('survey_b.not_answered')
|
||||||
|
else
|
||||||
|
@answer_model[item] = answer[item]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
@answer_model[:comment_question] = answer[:comment_question]
|
||||||
|
[:good_institutions, :bad_institutions].each do |item|
|
||||||
|
t('survey_b.institutions').each do |i_key, institution|
|
||||||
|
if answer[item][i_key] == '1'
|
||||||
|
@answer_model[item] ||= []
|
||||||
|
@answer_model[item].push i_key
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
t('survey_b.institutions').each do |i_key, institution|
|
||||||
|
if answer["institution_check"][i_key] == '1'
|
||||||
|
not_answered = false
|
||||||
|
@answer_model[i_key] ||= {}
|
||||||
|
t('survey_b.questions').each do |q_key, question|
|
||||||
|
if answer[i_key] && answer[i_key][q_key]
|
||||||
|
@answer_model[i_key][q_key] = answer[i_key][q_key]
|
||||||
|
else
|
||||||
|
@answer_model.errors.add institution + question, t('survey_b.not_answered')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if not_answered
|
||||||
|
@answer_model.errors.add t('survey_b.institution_check_label'), t('survey_b.not_answered')
|
||||||
|
end
|
||||||
|
if @answer_model.errors.empty?
|
||||||
|
@answer_model.save!
|
||||||
|
render :answer_success
|
||||||
|
else
|
||||||
|
@answer_error = @answer_model.errors.full_messages.join(',')
|
||||||
|
render :answer_error
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def redirect_standalone url
|
||||||
|
unless params[:standalone] == 'true'
|
||||||
|
@redirect_url = url
|
||||||
|
render :redirect_standalone
|
||||||
|
else
|
||||||
|
module_app = ModuleApp.first(:conditions => {:key => 'survey_b'})
|
||||||
|
@item = Item.where(module_app_id: module_app.id).first
|
||||||
|
|
||||||
|
if @period
|
||||||
|
yield
|
||||||
|
else
|
||||||
|
# render :no_survey
|
||||||
|
# render :json => "No Survey"
|
||||||
|
render :no_survey, :layout => 'standalone'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,5 @@
|
||||||
|
class SurveyBAnswer
|
||||||
|
include Mongoid::Document
|
||||||
|
include Mongoid::Timestamps
|
||||||
|
|
||||||
|
end
|
|
@ -0,0 +1,41 @@
|
||||||
|
class SurveyBPeriod
|
||||||
|
include Mongoid::Document
|
||||||
|
include Mongoid::Timestamps
|
||||||
|
|
||||||
|
field :title, :type => String
|
||||||
|
field :start_date, :type => DateTime
|
||||||
|
field :end_date, :type => DateTime
|
||||||
|
|
||||||
|
validates :start_date, :end_date, :presence => true
|
||||||
|
|
||||||
|
def self.get_current_survey
|
||||||
|
self.where(:start_date.lte => Time.now, :end_date.gte => Time.now).first
|
||||||
|
end
|
||||||
|
|
||||||
|
def isAvailable?
|
||||||
|
if start_date <= Time.now and end_date >= Time.now
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def get_status_type
|
||||||
|
# status type
|
||||||
|
# reference to config/locales/en.yml and zh-tw.yml
|
||||||
|
# status_types:
|
||||||
|
# type1: 調查中
|
||||||
|
# type2: 未開始
|
||||||
|
# type3: 已結束
|
||||||
|
|
||||||
|
if start_date <= Time.now and end_date >= Time.now
|
||||||
|
return "type1"
|
||||||
|
end
|
||||||
|
if start_date > Time.now
|
||||||
|
return "type2"
|
||||||
|
end
|
||||||
|
if end_date < Time.now
|
||||||
|
return "type3"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,17 @@
|
||||||
|
class SurveyBSetting
|
||||||
|
|
||||||
|
include Mongoid::Document
|
||||||
|
|
||||||
|
field :description, :localize => true
|
||||||
|
field :announcement, :localize => true
|
||||||
|
|
||||||
|
def self.first_or_create
|
||||||
|
setting = self.first
|
||||||
|
unless setting
|
||||||
|
setting = self.new
|
||||||
|
setting.save
|
||||||
|
end
|
||||||
|
setting
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue