#!/bin/bash
# Special thank to Shiroko, he give me the insight of coding in proper way

################################# Here we import our tools


################################# Here we set the configs
REALPATH=`realpath $0`
HERE_PATH=`dirname $REALPATH`
STORE_APP_PATH="$HERE_PATH"
WORKDIR=`mktemp -d`
ARCH="" # Define it later
ARCH_ANOTHERWAY="" # Define it later

PKG_NAME="browser360-cn-stable"
APP_NAME="360安全浏览器(Linux)"
#SOURCE_LIST_FILE="/etc/apt/sources.list.d/wcbing.list"
GITHUB_REPO=""
VERSION="" #Here we use other way to get version so do not write here
TAGS="ubuntu;deepin;uos;debian"
CATAGORY="network" #https://gitee.com/deepin-community-store/spark-store/blob/dev/DOCS/spk-doc.md
DETAIL="360安全浏览器结合最新的Chromium内核，领先的国密套件支持，完整的信创迁移方案，为政企客户提供最极速、最安全、最易用的浏览器。" # This should be written as json format
MAINTAINER="shenmo<shenmo@spark-app.store>"
HOMEPAGE="https://browser.360.net/gc/index.html/"


################################# Fill the variables below only if you use write_control function

SECTION=""
PRIORITY=""
DEPENDS=""
DESCRIPTION_SHORT=""
DESCRIPTION_LONG=""
PROVIDES=""
REPLACES=""
RECOMMENDS=""

source /opt/bashimport/sbs-utils.bashimport
source /opt/bashimport/sbs-build-helper.bashimport

if [ "$1" = "amd64" ] || [ "$1" = "x64" ];then
ARCH="amd64"
ARCH_ANOTHERWAY="-amd64"
ARCH_FOR_QQ="amd64"
elif [ "$1" = "arm64" ] || [ "$1" = "arm" ];then
ARCH="arm64"
ARCH_ANOTHERWAY="-aarch64"
ARCH_FOR_QQ="arm64"
elif [ "$1" = "loong64" ];then
ARCH="loong64"
ARCH_ANOTHERWAY="-loong64"
ARCH_FOR_QQ="loongarch64"
else
log.error "Err:Invalid Architecture"
exit 1
fi


function prepare(){
    aptss_get_update
    
}




function build(){

pushd $STORE_APP_PATH

#curl -fs https://im.qq.com/rainbow/linuxQQDownload | sed -nE 's/.*var params\s?=\s?(\{.*\});.*/\1/p' | jq -r '.version, .x64DownloadUrl.deb, .armDownloadUrl.deb, .loongarchDownloadUrl.deb'

#download_list="$(curl -fs https://im.qq.com/rainbow/linuxQQDownload | sed -nE 's/.*var params\s?=\s?(\{.*\});.*/\1/p')"
#wget $(echo $download_list  | jq -r ".${ARCH_FOR_QQ}DownloadUrl.deb") -O QQ.deb

JSON=$(curl -s https://active.browser.360.net/api/v1/web-version)
PKG_VER_UPSTREAM="$(echo $JSON | jq -r ".data.web_version")-1"

download_link="https://gedown.360safe.com/gc/browser360-cn-stable_"${PKG_VER_UPSTREAM}"_${ARCH}.deb"

PKG_VER_APTSS=`get_version_from_source_list_file ${PKG_NAME}:${ARCH} /opt/durapps/spark-store/bin/apt-fast-conf/sources.list.d/sparkstore${ARCH_ANOTHERWAY}.list`
    #PKG_VER_UPSTREAM=`get_version_from_source_list_file ${PKG_NAME}:${ARCH} ${SOURCE_LIST_FILE}`

    
    
    #PKG_VER_UPSTREAM=$(echo "$download_list" | jq -r '.version')



    compare_version ${PKG_VER_APTSS} ${PKG_VER_UPSTREAM}
    # Compare version will also give the value to $VERSION
    # Now we should have the $VERSION 

   if [ -e $VERSION ];then
    log.error "VERSION is empty. This should not happen! exit."
    fi

aria2c "${download_link}" -o TEMP.deb

VERSION=$(dpkg --field ./TEMP.deb version)
mv -v ./TEMP.deb ${PKG_NAME}_${VERSION}_${ARCH}.deb
    
 
popd

}


prepare
build
write_json $STORE_APP_PATH

rm -rf $WORKDIR
