2019-11-15 09:02:17 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'rubyXL'
|
|
|
|
class CancerpredictsController < ApplicationController
|
|
|
|
def initialize
|
|
|
|
super
|
|
|
|
@app_title = "cancerpredict"
|
|
|
|
end
|
2020-01-13 11:35:30 +00:00
|
|
|
def calculate
|
|
|
|
uid = OrbitHelper.params[:uid] rescue ""
|
|
|
|
tags = OrbitHelper.widget_tags
|
|
|
|
categories = OrbitHelper.widget_categories || []
|
|
|
|
create_first_field
|
|
|
|
#begin
|
|
|
|
if params['header'].to_i == 1
|
|
|
|
locale = params['locale'].to_s rescue 'zh_tw'
|
|
|
|
locale = 'zh_tw' if locale == 'zh_cn'
|
|
|
|
result = {}
|
|
|
|
@head_images = {}
|
|
|
|
@form_to_show.head_images_id.each do |image_id|
|
|
|
|
next if image_id.to_s == ""
|
|
|
|
@image = Headimages.find_by(:id=>image_id.to_s)
|
|
|
|
@url = @image.temp_file.to_s
|
|
|
|
@head_images[@image.sort_number.to_i] = ('<img class="head_logo" alt ="' + Pathname.new(@image.temp_file.file.file).basename.to_s+'" src="'+@url+'"/>')
|
|
|
|
end
|
|
|
|
result['head_images'] = Hash[@head_images.sort].values.join('')
|
|
|
|
@head_images = {}
|
|
|
|
@form_to_show.title_images_id.each do |image_id|
|
|
|
|
next if image_id.to_s == ""
|
|
|
|
@image = Headimages.find_by(:id=>image_id.to_s)
|
|
|
|
@url = @image.temp_file.to_s
|
|
|
|
@head_images[@image.sort_number.to_i] = ('<img class="head_logo" alt ="' + Pathname.new(@image.temp_file.file.file).basename.to_s+'" src="'+@url+'"/>')
|
|
|
|
end
|
|
|
|
result['danger_texts'] = (@form_to_show.danger_texts[locale] rescue '')
|
|
|
|
result['title'] = Hash[@head_images.sort].values.join('')
|
|
|
|
result['page_title'] = @form_to_show.title_texts[params[:locale]]
|
|
|
|
else
|
|
|
|
@record = Cancerpredictrecord.new
|
|
|
|
@record.title = @app_title
|
|
|
|
@choice_keys = []
|
|
|
|
@choice_values = []
|
|
|
|
@choice_names = []
|
|
|
|
@form_to_show.form_show.values.each{|choice| @choice_keys.push choice[:variable]}
|
|
|
|
@form_to_show.form_show.values.each{|choice| @choice_values.push choice[:choice_fields]}
|
|
|
|
@form_to_show.form_show.values.each{|choice| @choice_names.push choice[:name]}
|
|
|
|
@choice_keys.each_with_index{|key,i| @record.names[key] = @choice_names[i]}
|
|
|
|
@choice_keys.each_with_index{|key,i| @record.values[key] = @choice_values[i]}
|
|
|
|
params['data'].each do |rec_key,rec_value|
|
|
|
|
@record.result[rec_key] = rec_value
|
|
|
|
end
|
|
|
|
@record.submit_time = Time.now.to_s
|
|
|
|
@record.save
|
|
|
|
locale = params['data']['locale'].to_s rescue 'zh_tw'
|
|
|
|
locale = 'zh_tw' if locale == 'zh_cn'
|
|
|
|
result = {}
|
2020-03-04 07:37:59 +00:00
|
|
|
result['sex_value'] = params['data']['sex'].to_i - 1
|
|
|
|
result['Age_value'] = params['data']['age'].to_i
|
|
|
|
if params['data']['calcification_score'].to_i < 1400
|
|
|
|
result['cal_value'] = 0
|
2020-01-13 11:35:30 +00:00
|
|
|
else
|
2020-03-04 07:37:59 +00:00
|
|
|
result['cal_value'] = 1
|
2020-01-13 11:35:30 +00:00
|
|
|
end
|
2020-03-04 07:37:59 +00:00
|
|
|
result['lpv'] = -0.51427548* (result['sex_value']- 0.508312) + 0.05764604* (result['Age_value'] - 61.894501) + 0.49138819*(result['cal_value'] - 0.334399) rescue 'error'
|
2020-01-13 11:35:30 +00:00
|
|
|
@years = @form_to_show.years
|
2020-03-04 07:37:59 +00:00
|
|
|
result['table'] = '<input id="current_year" type="hidden" value="'+@years[0].to_s+'" index="0"/><p id="cancer_table_texts">'+@form_to_show.table_above_texts[locale].to_s+'</p>'
|
2020-02-03 07:26:04 +00:00
|
|
|
result['table'] += ('<a style="display: inline-block;">'+(locale == 'zh_tw' ? '第' : '')+'</a><a style="display: inline-block;">')
|
2020-01-13 11:35:30 +00:00
|
|
|
result['years'] = @years
|
|
|
|
@years.each{|year| result['table'] += ('<button class="cancer_years cancer_table_btn btn btn-default btn-sm">'+year.to_s+'</button>')}
|
2020-02-03 07:26:04 +00:00
|
|
|
result['table'] += ('</a><a style="display: inline-block;">'+(locale == 'zh_tw' ? '年' : '')+'</a>')
|
2020-01-13 11:35:30 +00:00
|
|
|
@table_head = (locale == "zh_tw") ? ['治療','額外治療效益','總生存率(%)'] :['Treatment','Additional Benefit','Overall Survival(%)']
|
|
|
|
@head_name = ['Treatment','Additional_Benefit','Overall_Survival']
|
|
|
|
@therapy_choices = (locale == "zh_tw") ? ['純手術'] :['Surgery only']
|
|
|
|
@form_to_show.form_show_in_result.values.each{|choice| @therapy_choices.push choice["name"][locale]}
|
|
|
|
@therapy_names = ['Surgery_only']
|
|
|
|
@form_to_show.form_show_in_result.values.each{|choice| @therapy_names.push choice["variable"]}
|
|
|
|
result['treatmeny_method'] = @therapy_names
|
|
|
|
result['table'] += '<table><thead><tr>'
|
|
|
|
@table_head.each_with_index{|head,index| result['table'] += ('<th class="cancer_th '+@head_name[index]+'">' + head + '</th>')}
|
|
|
|
result['table'] += '</tr></thead><tbody>'
|
|
|
|
@therapy_choices.each_with_index do |choice,i|
|
|
|
|
result['table'] += '<tr class="'+@therapy_names[i].to_s+'">'
|
|
|
|
@table_head.each_with_index do |head,index|
|
|
|
|
result['table'] += ('<td class="cancer_td '+ @head_name[index]+'">' + ((index == 0) ? (((i==0)? '' : '+') + choice) : '-') + '</td>')
|
|
|
|
end
|
|
|
|
result['table'] += '</tr>'
|
|
|
|
end
|
2020-03-04 07:37:59 +00:00
|
|
|
@lpv_calc = [0.9736358,0.9548993,0.9229336]
|
|
|
|
@servive_ratio = ((1-(@lpv_calc[0]**(Math.exp(result['lpv']))))*100).round(2)
|
|
|
|
@texts = @form_to_show.text_above_texts[locale].to_s.gsub('<br/>','</span><br/><span>').gsub('{{Surgery_only}}','<span class="'+@therapy_names[0]+' Overall_Survival">'+@servive_ratio.round(2).to_s+'</span>')
|
2020-01-13 11:35:30 +00:00
|
|
|
@texts = @texts.split('{{years}}')
|
|
|
|
@texts.delete('')
|
|
|
|
result['texts'] = '<span>'+@texts[0]
|
|
|
|
@years.each{|year| result['texts'] += ('<button class="cancer_years cancer_table_btn btn btn-default btn-sm" style="float:none;">'+year.to_s+'</button>')}
|
|
|
|
if @texts.count > 1
|
|
|
|
result['texts'] += (@texts[1]+'</span>') if @texts.count > 1
|
|
|
|
else
|
|
|
|
result['texts'] += '</span>'
|
|
|
|
end
|
2020-03-04 07:37:59 +00:00
|
|
|
if !@form_to_show.surgery_only_texts[locale].blank?
|
|
|
|
@surgery_only_texts = @form_to_show.surgery_only_texts[locale]
|
|
|
|
@surgery_only_texts.insert(0,'<p class="show"><span>')
|
|
|
|
@surgery_only_texts = @surgery_only_texts.gsub('{{Surgery_only}}','<span class="'+@therapy_names[0]+' Overall_Survival">'+@servive_ratio.round.to_s+'</span><span>')
|
|
|
|
@surgery_only_texts = @surgery_only_texts.gsub('{{surgery_year}}','</span><span class="surgery_year">'+@years[-1].to_s+'</span><span>')
|
|
|
|
@surgery_only_texts += '</span>'
|
|
|
|
else
|
|
|
|
@surgery_only_texts = ''
|
|
|
|
end
|
2020-01-13 11:35:30 +00:00
|
|
|
result['texts'] += @surgery_only_texts
|
|
|
|
result['texts'] += '<span class="addition">'+@form_to_show.extra_texts[locale]+'</span><div class="extra-text" style="display:none;"><div class="texts_show" style="clear:both;"></div></div></p>'
|
|
|
|
result['extra_therapy_texts'] = @form_to_show.extra_therapy_texts[locale] rescue @form_to_show.extra_therapy_texts['zh_tw']
|
|
|
|
result['servive_ratio'] = @servive_ratio
|
|
|
|
end
|
|
|
|
result = result.merge(params)
|
|
|
|
render :json=> result
|
|
|
|
# rescue
|
|
|
|
# render :json=> params
|
|
|
|
#end
|
|
|
|
end
|
2019-11-15 09:02:17 +00:00
|
|
|
def index
|
|
|
|
uid = OrbitHelper.params[:uid] rescue ""
|
|
|
|
tags = OrbitHelper.widget_tags
|
|
|
|
categories = OrbitHelper.widget_categories || []
|
2020-01-28 10:29:04 +00:00
|
|
|
@table_str = File.read('public/cancer_tool_table_tmp_'+I18n.locale.to_s+'.txt')
|
2020-01-13 11:35:30 +00:00
|
|
|
{
|
|
|
|
"cancerpredict" => [],
|
|
|
|
"extras"=>{"table"=> @table_str}
|
|
|
|
}
|
2019-11-15 09:02:17 +00:00
|
|
|
end
|
|
|
|
def widget
|
|
|
|
uid = OrbitHelper.params[:uid] rescue ""
|
|
|
|
tags = OrbitHelper.widget_tags
|
|
|
|
categories = OrbitHelper.widget_categories || []
|
|
|
|
end
|
2020-01-13 11:35:30 +00:00
|
|
|
def create_first_field
|
|
|
|
if Cancerpredictfields.where("title"=>(@app_title + "_back")).take_while{true}.count == 0
|
|
|
|
@form_to_show = Cancerpredictfields.new()
|
|
|
|
@form_to_show.title = @app_title +"_back"
|
|
|
|
@form_to_show.save
|
|
|
|
end
|
|
|
|
@form_to_show
|
|
|
|
if Cancerpredictfields.where("title"=>@app_title).take_while{true}.count == 0
|
|
|
|
@form_to_show = Cancerpredictfields.new()
|
|
|
|
@form_to_show.title=@app_title
|
|
|
|
@form_to_show.save
|
|
|
|
@form_to_show = Cancerpredictfields.where("title"=>@app_title).first
|
|
|
|
else
|
|
|
|
@form_to_show = Cancerpredictfields.where("title"=>@app_title).first
|
|
|
|
end
|
2019-11-15 09:02:17 +00:00
|
|
|
end
|
|
|
|
end
|