#!/bin/bash

# 載入 gamerc
source ~/.gamerc

# 台版任務ID與名稱對應
cat ${WORKING_DIRECTORY}/common-${SOURCE_OF_SYNC_TO_LIVE}/Data/db/s_collection.ini | egrep '^[0-9].*' | sed 's/,/=>/g' | awk -F"|" '{print $1","$2","$5","$6","$7","$8}' | grep '^[0-9]\{1,5\},' > /tmp/collection2db_tw.csv

# 台版任務對應 CSV 同步到 Ctrl 機, 並更新到 collection2db
scp /tmp/collection2db_tw.csv ctrl:/tmp

ssh ctrl "psql -U postgres WebTool -c \"CREATE TABLE IF NOT EXISTS collection2db (collection_id integer primary key, collection_type integer, collection_criteria_id integer, collection_criteria_num integer DEFAULT 1, collection_point integer, collectionname text)\""
ssh ctrl "psql -U postgres WebTool -c \"TRUNCATE collection2db\""
ssh ctrl "psql -U postgres WebTool -c \"COPY collection2db (collection_id,collection_type,collection_criteria_id,collection_criteria_num,collection_point,collectionname) FROM '/tmp/collection2db_tw.csv' csv\""
ssh ctrl "psql -U postgres WebTool -c \"UPDATE collection2db SET collection_criteria_num = 1 WHERE (collection_criteria_num IS NULL) AND ((collection_type BETWEEN 1 AND 3) OR (collection_type = 5))\""

# 確認翻譯檔目錄架構
TRANSLATE_NUM=$(cat ${HOME}/.gamerc | grep TRANSLATED_INI_UPLOAD_DIR_ | grep -v '#' | wc -l)

if [ "${TRANSLATE_NUM}" -gt 0 ]; then
	# 多國語系翻譯檔架構
	echo "1: Multi Lang"
	
	for multi_lang_directory in $(cat ${HOME}/.gamerc | grep TRANSLATED_INI_UPLOAD_DIR_ | grep -v '#' | awk -F"=" '{print $2}'); do
		LANG=$(echo ${multi_lang_directory} | sed 's/"//g' | awk -F"/" '{print $(NF-1)}' | awk -F"_" '{print $NF}')
		LANG_DIRECTORY=$(echo ${multi_lang_directory} | sed 's/"//g')
		echo "${LANG} => ${LANG_DIRECTORY}"

		ULANG=$(echo ${LANG} | tr [a-z] [A-Z])
		if [[ ${TRANSLATED_LANG_TO_POWERUPITEM} =~ "${ULANG}" ]]; then
			# 翻譯任務ID與名稱對應
			cat ${LANG_DIRECTORY}/t_collection_${LANG}.ini | egrep '^[0-9].*' | sed 's/,/=>/g' | awk -F"|" '{print $1","$2}' | grep '^[0-9]\{1,5\},' > /tmp/collection2db_${LANG}.csv

			# 翻譯任務對應 CSV 同步到 Ctrl 機
			scp /tmp/collection2db_${LANG}.csv ctrl:/tmp/

        		ssh ctrl "psql -U postgres WebTool -c \"CREATE TABLE collection2db_${LANG}_temp (collection_id integer, collection_name text)\""
        		ssh ctrl "psql -U postgres WebTool -c \"COPY collection2db_${LANG}_temp FROM '/tmp/collection2db_${LANG}.csv' CSV\""
			ssh ctrl "psql -U postgres WebTool -c \"ALTER TABLE collection2db ADD COLUMN IF NOT EXISTS collectionname_${LANG} text\""
        		ssh ctrl "psql -U postgres WebTool -c \"UPDATE collection2db SET collectionname_${LANG} = collection2db_${LANG}_temp.collection_name from collection2db_${LANG}_temp WHERE collection2db.collection_id = collection2db_${LANG}_temp.collection_id\""
        		ssh ctrl "psql -U postgres WebTool -c \"DROP TABLE collection2db_${LANG}_temp\""
		fi
	done

	
else
	# 單一語系翻譯檔架構
	echo "2: Single Lang"

	single_lang_directory=$(cat ${HOME}/.gamerc | grep 'TRANSLATED_INI_UPLOAD_DIR='| awk -F"=" '{print $2}')
	LANG=$(cat ${HOME}/.gamerc | grep 'COUNTRY_CODE=' | sed 's/"//g' | awk -F"=" '{print $2}' | tr [A-Z] [a-z])
	LANG_DIRECTORY=$(echo ${single_lang_directory} | sed 's/"//g')
	echo "${LANG} => ${LANG_DIRECTORY}"

	
	# 翻譯任務ID與名稱對應
	cat ${LANG_DIRECTORY}/t_collection_${LANG}.ini | egrep '^[0-9].*' | sed 's/,/=>/g' | awk -F"|" '{print $1","$2}' | grep '^[0-9]\{1,5\},' > /tmp/collection2db_${LANG}.csv

	# 翻譯任務對應 CSV 同步到 Ctrl 機
	scp /tmp/collection2db_${LANG}.csv ctrl:/tmp/

     	ssh ctrl "psql -U postgres WebTool -c \"CREATE TABLE collection2db_${LANG}_temp (collection_id integer, collection_name text)\""
        ssh ctrl "psql -U postgres WebTool -c \"COPY collection2db_${LANG}_temp FROM '/tmp/collection2db_${LANG}.csv' CSV\""
	ssh ctrl "psql -U postgres WebTool -c \"ALTER TABLE collection2db ADD COLUMN IF NOT EXISTS collectionname_${LANG} text\""
        ssh ctrl "psql -U postgres WebTool -c \"UPDATE collection2db SET collectionname_${LANG} = collection2db_${LANG}_temp.collection_name from collection2db_${LANG}_temp WHERE collection2db.collection_id = collection2db_${LANG}_temp.collection_id\""
        ssh ctrl "psql -U postgres WebTool -c \"DROP TABLE collection2db_${LANG}_temp\""
fi
