Test SNIPE-IT software

This commit is contained in:
Almira Krdzic
2018-07-23 07:12:19 +02:00
parent 79eabd9cb5
commit 41da7f167d
10 changed files with 2530 additions and 7 deletions

1549
snipe-it-test/backup.sql Normal file

File diff suppressed because one or more lines are too long

723
snipe-it-test/setup-snipeit.sh Executable file
View File

@@ -0,0 +1,723 @@
#!/bin/bash
#/ Usage: snipeit.sh [-vh]
#/
#/ Install Snipe-IT open source asset management.
#/
#/ OPTIONS:
#/ -v | --verbose Enable verbose output.
#/ -h | --help Show this message.
######################################################
# Snipe-It Install Script #
# Script created by Mike Tucker #
# mtucker6784@gmail.com #
# #
# Feel free to modify, but please give #
# credit where it's due. Thanks! #
######################################################
# Parse arguments
while true; do
case "$1" in
-h|--help)
show_help=true
shift
;;
-v|--verbose)
set -x
verbose=true
shift
;;
-*)
echo "Error: invalid argument: '$1'" 1>&2
exit 1
;;
*)
break
;;
esac
done
print_usage () {
grep '^#/' <"$0" | cut -c 4-
exit 1
}
if [ -n "$show_help" ]; then
print_usage
else
for x in "$@"; do
if [ "$x" = "--help" ] || [ "$x" = "-h" ]; then
print_usage
fi
done
fi
# ensure running as root
if [ "$(id -u)" != "0" ]; then
#Debian doesnt have sudo if root has a password.
if ! hash sudo 2>/dev/null; then
exec su -c "$0" "$@"
else
exec sudo "$0" "$@"
fi
fi
clear
readonly APP_USER="snipeitapp"
readonly APP_NAME="snipeit"
readonly APP_PATH="/var/www/$APP_NAME"
progress () {
spin[0]="-"
spin[1]="\\"
spin[2]="|"
spin[3]="/"
echo -n " "
while kill -0 "$pid" > /dev/null 2>&1; do
for i in "${spin[@]}"; do
echo -ne "\\b$i"
sleep .3
done
done
echo ""
}
log () {
if [ -n "$verbose" ]; then
eval "$@" |& tee -a /var/log/snipeit-install.log
else
eval "$@" |& tee -a /var/log/snipeit-install.log >/dev/null 2>&1
fi
}
install_packages () {
case $distro in
ubuntu|debian)
for p in $PACKAGES; do
if dpkg -s "$p" >/dev/null 2>&1; then
echo " * $p already installed"
else
echo " * Installing $p"
log "DEBIAN_FRONTEND=noninteractive apt-get install -y $p"
fi
done;
;;
centos)
for p in $PACKAGES; do
if yum list installed "$p" >/dev/null 2>&1; then
echo " * $p already installed"
else
echo " * Installing $p"
log "yum -y install $p"
fi
done;
;;
fedora)
for p in $PACKAGES; do
if dnf list installed "$p" >/dev/null 2>&1; then
echo " * $p already installed"
else
echo " * Installing $p"
log "dnf -y install $p"
fi
done;
;;
esac
}
create_virtualhost () {
{
echo "<VirtualHost *:5555>"
echo " <Directory $APP_PATH/public>"
echo " Allow From All"
echo " AllowOverride All"
echo " Options +Indexes"
echo " Header set Access-Control-Allow-Origin \"*\" "
echo " Header set Access-Control-Allow-Methods \"POST, GET, OPTIONS, DELETE, PUT\""
echo " Header set Access-Control-Allow-Headers \"authorization, accept, content-type\""
echo " </Directory>"
echo ""
echo " DocumentRoot $APP_PATH/public"
echo " ServerName $fqdn"
echo "</VirtualHost>"
} >> "$apachefile"
}
create_user () {
echo "* Creating Snipe-IT user."
if [ "$distro" == "ubuntu" ] || [ "$distro" == "debian" ] ; then
adduser --quiet --disabled-password --gecos '""' "$APP_USER"
else
adduser "$APP_USER"
fi
usermod -a -G "$apache_group" "$APP_USER"
}
run_as_app_user () {
if ! hash sudo 2>/dev/null; then
su -c "$@" $APP_USER
else
sudo -i -u $APP_USER "$@"
fi
}
install_composer () {
# https://getcomposer.org/doc/faqs/how-to-install-composer-programmatically.md
EXPECTED_SIGNATURE="$(wget -q -O - https://composer.github.io/installer.sig)"
run_as_app_user php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
ACTUAL_SIGNATURE="$(run_as_app_user php -r "echo hash_file('SHA384', 'composer-setup.php');")"
if [ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ]
then
>&2 echo 'ERROR: Invalid composer installer signature'
run_as_app_user rm composer-setup.php
exit 1
fi
run_as_app_user php composer-setup.php
run_as_app_user rm composer-setup.php
mv "$(eval echo ~$APP_USER)"/composer.phar /usr/local/bin/composer
}
install_snipeit () {
create_user
echo "* Creating MariaDB Database/User."
echo "* Please Input your MariaDB root password:"
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
echo "* Cloning Snipe-IT from github to the web directory."
log "git clone https://github.com/snipe/snipe-it $APP_PATH"
echo "* Configuring .env file."
cp "$APP_PATH/.env.example" "$APP_PATH/.env"
#TODO escape SED delimiter in variables
sed -i '1 i\#Created By Snipe-it Installer' "$APP_PATH/.env"
sed -i "s|^\\(APP_TIMEZONE=\\).*|\\1$tzone|" "$APP_PATH/.env"
sed -i "s|^\\(DB_HOST=\\).*|\\1localhost|" "$APP_PATH/.env"
sed -i "s|^\\(DB_DATABASE=\\).*|\\1snipeit|" "$APP_PATH/.env"
sed -i "s|^\\(DB_USERNAME=\\).*|\\1snipeit|" "$APP_PATH/.env"
sed -i "s|^\\(DB_PASSWORD=\\).*|\\1$mysqluserpw|" "$APP_PATH/.env"
sed -i "s|^\\(APP_URL=\\).*|\\1http://$fqdn|" "$APP_PATH/.env"
echo "* Installing composer."
install_composer
echo "* Setting permissions."
for chmod_dir in "$APP_PATH/storage" "$APP_PATH/public/uploads"; do
chmod -R 775 "$chmod_dir"
done
chown -R "$APP_USER":"$apache_group" "$APP_PATH"
echo "* Running composer."
# We specify the path to composer because CentOS lacks /usr/local/bin in $PATH when using sudo
run_as_app_user /usr/local/bin/composer install --no-dev --prefer-source --working-dir "$APP_PATH"
sudo chgrp -R "$apache_group" "$APP_PATH/vendor"
echo "* Generating the application key."
log "php $APP_PATH/artisan key:generate --force"
echo "* Artisan Migrate."
log "php $APP_PATH/artisan migrate --force"
echo "* Creating scheduler cron."
(crontab -l ; echo "* * * * * /usr/bin/php $APP_PATH/artisan schedule:run >> /dev/null 2>&1") | crontab -
}
set_firewall () {
if [ "$(firewall-cmd --state)" == "running" ]; then
echo "* Configuring firewall to allow HTTP traffic only."
log "firewall-cmd --zone=public --add-port=http/tcp --permanent"
log "firewall-cmd --reload"
fi
}
set_selinux () {
#Check if SELinux is enforcing
if [ "$(getenforce)" == "Enforcing" ]; then
echo "* Configuring SELinux."
#Required for ldap integration
setsebool -P httpd_can_connect_ldap on
#Sets SELinux context type so that scripts running in the web server process are allowed read/write access
chcon -R -h -t httpd_sys_rw_content_t "$APP_PATH/storage/"
chcon -R -h -t httpd_sys_rw_content_t "$APP_PATH/public/"
fi
}
set_hosts () {
echo "* Setting up hosts file."
echo >> /etc/hosts "127.0.0.1 $(hostname) $fqdn"
}
if [[ -f /etc/lsb-release || -f /etc/debian_version ]]; then
distro="$(lsb_release -is)"
version="$(lsb_release -rs)"
codename="$(lsb_release -cs)"
elif [ -f /etc/os-release ]; then
# shellcheck disable=SC1091
distro="$(source /etc/os-release && echo "$ID")"
# shellcheck disable=SC1091
version="$(source /etc/os-release && echo "$VERSION_ID")"
#Order is important here. If /etc/os-release and /etc/centos-release exist, we're on centos 7.
#If only /etc/centos-release exist, we're on centos6(or earlier). Centos-release is less parsable,
#so lets assume that it's version 6 (Plus, who would be doing a new install of anything on centos5 at this point..)
#/etc/os-release properly detects fedora
elif [ -f /etc/centos-release ]; then
distro="centos"
version="6"
else
distro="unsupported"
fi
echo '
_____ _ __________
/ ___/____ (_)___ ___ / _/_ __/
\__ \/ __ \/ / __ \/ _ \______ / / / /
___/ / / / / / /_/ / __/_____// / / /
/____/_/ /_/_/ .___/\___/ /___/ /_/
/_/
'
echo ""
echo " Welcome to Snipe-IT Inventory Installer for CentOS, Fedora, Debian and Ubuntu!"
echo ""
shopt -s nocasematch
case $distro in
*ubuntu*)
echo " The installer has detected $distro version $version codename $codename."
distro=ubuntu
apache_group=www-data
apachefile=/etc/apache2/sites-available/$APP_NAME.conf
;;
*debian*)
echo " The installer has detected $distro version $version codename $codename."
distro=debian
apache_group=www-data
apachefile=/etc/apache2/sites-available/$APP_NAME.conf
;;
*centos*|*redhat*|*ol*|*rhel*)
echo " The installer has detected $distro version $version."
distro=centos
apache_group=apache
apachefile=/etc/httpd/conf.d/$APP_NAME.conf
;;
*fedora*)
echo " The installer has detected $distro version $version."
distro=fedora
apache_group=apache
apachefile=/etc/httpd/conf.d/$APP_NAME.conf
;;
*)
echo " The installer was unable to determine your OS. Exiting for safety."
exit 1
;;
esac
shopt -u nocasematch
echo -n " Q. What is the FQDN of your server? ($(hostname --fqdn)): "
read -r fqdn
if [ -z "$fqdn" ]; then
readonly fqdn="$(hostname --fqdn)"
fi
echo " Setting to $fqdn"
echo ""
ans=default
until [[ $ans == "yes" ]] || [[ $ans == "no" ]]; do
echo -n " Q. Do you want to automatically create the database user password? (y/n) "
read -r setpw
case $setpw in
[yY] | [yY][Ee][Ss] )
mysqluserpw="$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c16; echo)"
echo ""
ans="yes"
;;
[nN] | [n|N][O|o] )
echo -n " Q. What do you want your snipeit user password to be?"
read -rs mysqluserpw
echo ""
ans="no"
;;
*) echo " Invalid answer. Please type y or n"
;;
esac
done
case $distro in
debian)
if [[ "$version" =~ ^9 ]]; then
# Install for Debian 9.x
tzone=$(cat /etc/timezone)
echo "* Adding PHP repository."
log "apt-get install -y apt-transport-https"
log "wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg"
echo "deb https://packages.sury.org/php/ $codename main" > /etc/apt/sources.list.d/php.list
echo -n "* Updating installed packages."
log "apt-get update && apt-get -y upgrade" & pid=$!
progress
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="mariadb-server mariadb-client apache2 libapache2-mod-php7.1 php7.1 php7.1-mcrypt php7.1-curl php7.1-mysql php7.1-gd php7.1-ldap php7.1-zip php7.1-mbstring php7.1-xml php7.1-bcmath curl git unzip"
install_packages
echo "* Configuring Apache."
create_virtualhost
log "a2enmod rewrite"
log "a2ensite $APP_NAME.conf"
set_hosts
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
echo "* Restarting Apache httpd."
log "service apache2 restart"
elif [[ "$version" =~ ^8 ]]; then
# Install for Debian 8.x
tzone=$(cat /etc/timezone)
echo "* Adding MariaDB and ppa:ondrej/php repositories."
log "apt-get install -y software-properties-common apt-transport-https"
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db"
log "add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.1/debian $codename main'"
log "wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg"
echo "deb https://packages.sury.org/php/ $codename main" > /etc/apt/sources.list.d/php.list
echo -n "* Updating installed packages."
log "apt-get update && apt-get -y upgrade" & pid=$!
progress
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="mariadb-server mariadb-client php7.1 php7.1-mcrypt php7.1-curl php7.1-mysql php7.1-gd php7.1-ldap php7.1-zip php7.1-mbstring php7.1-xml php7.1-bcmath curl git unzip"
install_packages
echo "* Configuring Apache."
create_virtualhost
log "a2enmod rewrite"
log "a2ensite $APP_NAME.conf"
set_hosts
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
echo "* Restarting Apache httpd."
log "service apache2 restart"
else
echo "Unsupported Debian version. Version found: $version"
exit 1
fi
;;
ubuntu)
if [ "$version" == "18.04" ]; then
# Install for Ubuntu 18.04
tzone=$(cat /etc/timezone)
echo -n "* Updating installed packages."
log "apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y upgrade" & pid=$!
progress
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="mariadb-server mariadb-client apache2 libapache2-mod-php php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml php-bcmath curl git unzip"
install_packages
echo "* Configuring Apache."
create_virtualhost
log "phpenmod mcrypt"
log "phpenmod mbstring"
log "a2enmod rewrite"
log "a2ensite $APP_NAME.conf"
set_hosts
echo "* Starting MariaDB."
log "systemctl start mariadb.service"
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
echo "* Restarting Apache httpd."
log "systemctl restart apache2"
elif [ "$version" == "16.04" ]; then
# Install for Ubuntu 16.04
tzone=$(cat /etc/timezone)
echo "* Adding MariaDB and ppa:ondrej/php repositories."
log "apt-get install -y software-properties-common"
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8"
log "add-apt-repository 'deb [arch=amd64,i386] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.1/ubuntu $codename main'"
log "add-apt-repository -y ppa:ondrej/php"
echo -n "* Updating installed packages."
log "apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y upgrade" & pid=$!
progress
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="mariadb-server mariadb-client apache2 libapache2-mod-php7.1 php7.1 php7.1-mcrypt php7.1-curl php7.1-mysql php7.1-gd php7.1-ldap php7.1-zip php7.1-mbstring php7.1-xml php7.1-bcmath curl git unzip"
install_packages
echo "* Configuring Apache."
create_virtualhost
log "phpenmod mcrypt"
log "phpenmod mbstring"
log "a2enmod rewrite"
log "a2ensite $APP_NAME.conf"
set_hosts
echo "* Starting MariaDB."
log "service mysql start"
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
echo "* Restarting Apache httpd."
log "service apache2 restart"
elif [ "$version" == "14.04" ]; then
# Install for Ubuntu 14.04
tzone=$(cat /etc/timezone)
echo "* Adding MariaDB and ppa:ondrej/php repositories."
log "apt-get install -y software-properties-common"
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db"
log "add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.1/ubuntu $codename main'"
log "add-apt-repository ppa:ondrej/php -y"
echo -n "* Updating installed packages."
log "apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y upgrade" & pid=$!
progress
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="mariadb-server mariadb-client php7.1 php7.1-mcrypt php7.1-curl php7.1-mysql php7.1-gd php7.1-ldap php7.1-zip php7.1-mbstring php7.1-xml php7.1-bcmath curl git unzip"
install_packages
echo "* Configuring Apache."
create_virtualhost
log "phpenmod mcrypt"
log "phpenmod mbstring"
log "a2enmod rewrite"
log "a2ensite $APP_NAME.conf"
set_hosts
echo "* Starting MariaDB."
log "service mysql start"
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
echo "* Restarting Apache httpd."
log "service apache2 restart"
else
echo "Unsupported Ubuntu version. Version found: $version"
exit 1
fi
;;
centos)
if [[ "$version" =~ ^6 ]]; then
# Install for CentOS/Redhat 6.x
tzone=$(grep ZONE /etc/sysconfig/clock | tr -d '"' | sed 's/ZONE=//g');
echo "* Adding IUS, epel-release and MariaDB repositories."
mariadbRepo=/etc/yum.repos.d/MariaDB.repo
touch "$mariadbRepo"
{
echo "[mariadb]"
echo "name = MariaDB"
echo "baseurl = http://yum.mariadb.org/10.0/centos6-amd64"
echo "gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB"
echo "gpgcheck=1"
echo "enable=1"
} >> "$mariadbRepo"
log "yum -y install wget epel-release"
log "yum -y install https://centos6.iuscommunity.org/ius-release.rpm"
log "rpm --import /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY"
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="httpd mariadb-server git unzip php71u php71u-mysqlnd php71u-bcmath php71u-cli php71u-common php71u-embedded php71u-gd php71u-mbstring php71u-mcrypt php71u-ldap php71u-json php71u-simplexml php71u-process"
install_packages
echo "* Configuring Apache."
create_virtualhost
echo "* Setting MariaDB to start on boot and starting MariaDB."
log "chkconfig mysql on"
log "/sbin/service mysql start"
set_hosts
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
if /sbin/service iptables status >/dev/null 2>&1; then
echo "* Configuring iptables."
iptables -I INPUT 1 -p tcp -m tcp --dport 80 -j ACCEPT
iptables -I INPUT 1 -p tcp -m tcp --dport 443 -j ACCEPT
service iptables save
fi
echo "* Setting Apache httpd to start on boot and starting service."
log "chkconfig httpd on"
log "/sbin/service httpd start"
elif [[ "$version" =~ ^7 ]]; then
# Install for CentOS/Redhat 7
tzone=$(timedatectl | gawk -F'[: ]' ' $9 ~ /zone/ {print $11}');
echo "* Adding IUS, epel-release and MariaDB repositories."
log "yum -y install wget epel-release"
log "yum -y install https://centos7.iuscommunity.org/ius-release.rpm"
log "rpm --import /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY"
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="httpd mariadb-server git unzip php71u php71u-mysqlnd php71u-bcmath php71u-cli php71u-common php71u-embedded php71u-gd php71u-mbstring php71u-mcrypt php71u-ldap php71u-json php71u-simplexml php71u-process"
install_packages
echo "* Configuring Apache."
create_virtualhost
set_hosts
echo "* Setting MariaDB to start on boot and starting MariaDB."
log "systemctl enable mariadb.service"
log "systemctl start mariadb.service"
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
set_firewall
set_selinux
echo "* Setting Apache httpd to start on boot and starting service."
log "systemctl enable httpd.service"
log "systemctl restart httpd.service"
else
echo "Unsupported CentOS version. Version found: $version"
exit 1
fi
;;
fedora)
if [ "$version" -ge 26 ]; then
# Install for Fedora 26+
tzone=$(timedatectl | gawk -F'[: ]' ' $9 ~ /zone/ {print $11}');
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
PACKAGES="httpd mariadb-server git unzip php php-mysqlnd php-bcmath php-cli php-common php-embedded php-gd php-mbstring php-mcrypt php-ldap php-json php-simplexml"
install_packages
echo "* Configuring Apache."
create_virtualhost
set_hosts
echo "* Setting MariaDB to start on boot and starting MariaDB."
log "systemctl enable mariadb.service"
log "systemctl start mariadb.service"
echo "* Securing MariaDB."
/usr/bin/mysql_secure_installation
install_snipeit
set_firewall
set_selinux
echo "* Setting Apache httpd to start on boot and starting service."
log "systemctl enable httpd.service"
log "systemctl restart httpd.service"
else
echo "Unsupported Fedora version. Version found: $version"
exit 1
fi
esac
setupmail=default
until [[ $setupmail == "yes" ]] || [[ $setupmail == "no" ]]; do
echo -n " Q. Do you want to configure mail server settings? (y/n) "
read -r setupmail
case $setupmail in
[yY] | [yY][Ee][Ss] )
echo -n " Outgoing mailserver address:"
read -r mailhost
sed -i "s|^\\(MAIL_HOST=\\).*|\\1$mailhost|" "$APP_PATH/.env"
echo -n " Server port number:"
read -r mailport
sed -i "s|^\\(MAIL_PORT=\\).*|\\1$mailport|" "$APP_PATH/.env"
echo -n " Username:"
read -r mailusername
sed -i "s|^\\(MAIL_USERNAME=\\).*|\\1$mailusername|" "$APP_PATH/.env"
echo -n " Password:"
read -rs mailpassword
sed -i "s|^\\(MAIL_PASSWORD=\\).*|\\1$mailpassword|" "$APP_PATH/.env"
echo ""
echo -n " Encryption(null/TLS/SSL):"
read -r mailencryption
sed -i "s|^\\(MAIL_ENCRYPTION=\\).*|\\1$mailencryption|" "$APP_PATH/.env"
echo -n " From address:"
read -r mailfromaddr
sed -i "s|^\\(MAIL_FROM_ADDR=\\).*|\\1$mailfromaddr|" "$APP_PATH/.env"
echo -n " From name:"
read -r mailfromname
sed -i "s|^\\(MAIL_FROM_NAME=\\).*|\\1$mailfromname|" "$APP_PATH/.env"
echo -n " Reply to address:"
read -r mailreplytoaddr
sed -i "s|^\\(MAIL_REPLYTO_ADDR=\\).*|\\1$mailreplytoaddr|" "$APP_PATH/.env"
echo -n " Reply to name:"
read -r mailreplytoname
sed -i "s|^\\(MAIL_REPLYTO_NAME=\\).*|\\1$mailreplytoname|" "$APP_PATH/.env"
setupmail="yes"
;;
[nN] | [n|N][O|o] )
setupmail="no"
;;
*) echo " Invalid answer. Please type y or n"
;;
esac
done
echo ""
echo " ***Open http://$fqdn to login to Snipe-IT.***"
echo ""
echo ""
echo "* Cleaning up..."
rm -f snipeit.sh
rm -f install.sh
echo "* Finished!"
sleep 1

View File

@@ -6859,9 +6859,9 @@
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
}, },
"uuid": { "uuid": {
"version": "3.2.1", "version": "3.3.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
"integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="
}, },
"validate-npm-package-license": { "validate-npm-package-license": {
"version": "3.0.3", "version": "3.0.3",

View File

@@ -45,6 +45,7 @@
"style-loader": "0.19.0", "style-loader": "0.19.0",
"sw-precache-webpack-plugin": "0.11.4", "sw-precache-webpack-plugin": "0.11.4",
"url-loader": "0.6.2", "url-loader": "0.6.2",
"uuid": "^3.3.2",
"webpack": "3.8.1", "webpack": "3.8.1",
"webpack-dev-server": "2.9.4", "webpack-dev-server": "2.9.4",
"webpack-manifest-plugin": "1.3.2", "webpack-manifest-plugin": "1.3.2",

View File

@@ -139,18 +139,56 @@ div.workflow-step-current {
margin-right: 20px; margin-right: 20px;
} }
.user-orders { .asset-management {
flex: 1;
height: 100%;
overflow: auto;
}
.user-orders, .assets {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
flex: 1; flex: 1;
padding: 20px; padding: 20px;
} }
.user-orders > div { .user-orders > div, .asset {
padding: 20px; padding: 10px;
border-radius: 3px; border-radius: 3px;
border: 1px solid #ddd; border: 1px solid #ddd;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
margin-bottom: 10px; margin-bottom: 10px;
align-items: center;
} }
.asset-delete {
padding: 8px 12px;
border-radius: 3px;
color: #d67575;
cursor: pointer;
border: 1px solid #ccc;
}
.new-asset {
display: flex;
flex-direction: column;
width: 400px;
padding: 20px;
}
.new-asset > input {
margin: 5px;
border-radius: 3px;
border: 1px solid #ccc;
padding: 5px;
height: 20px;
}
.new-asset > button {
height: 30px;
border-radius: 3px;
border: 1px solid #ccc;
cursor: pointer;
margin-top: 20px;
}

View File

@@ -1,7 +1,18 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import './App.css'; import './App.css';
import Wiass from './components'; import Wiass from './components';
import { sendOrder, logIn, retrieveWorkflow, getProducts, getOrders, getUserOrganization } from './actions'; import {
sendOrder,
logIn,
retrieveWorkflow,
getProducts,
getOrders,
getUserOrganization,
getAssets,
deleteAsset,
createAsset,
getAsset,
} from './actions';
import ActionType from './enums/ActionType'; import ActionType from './enums/ActionType';
@@ -19,6 +30,7 @@ class App extends Component {
userOrders: undefined, userOrders: undefined,
userOrganization: undefined, userOrganization: undefined,
currentActionType: ActionType.LOG_IN, currentActionType: ActionType.LOG_IN,
assets: [],
}; };
} }
@@ -38,6 +50,15 @@ class App extends Component {
}); });
}); });
} }
if (this.state.currentActionType === ActionType.ASSET_MANAGEMENT) {
getAssets().then(data => {
console.log(data.rows);
this.setState({
assets: data.rows,
});
});
}
}); });
}; };
@@ -114,6 +135,28 @@ class App extends Component {
return null; return null;
} }
onDeleteAsset = id => {
deleteAsset(id).then(status => {
if (status) {
this.setState({
assets: this.state.assets.filter(a => a.id !== id),
});
}
});
};
onCreateAsset = data => {
createAsset(data).then(result => {
if (result && result.payload) {
getAsset(result.payload.id).then(asset => {
this.setState({
assets: this.state.assets.concat([asset]),
});
});
}
});
};
render() { render() {
return ( return (
<div className="App"> <div className="App">
@@ -127,10 +170,13 @@ class App extends Component {
onOrderClicked={this.onOrderClicked} onOrderClicked={this.onOrderClicked}
onLogInClicked={this.onLogInClicked} onLogInClicked={this.onLogInClicked}
onRetrieveWorkflowClicked={this.onRetrieveWorkflowClicked} onRetrieveWorkflowClicked={this.onRetrieveWorkflowClicked}
onDeleteAsset={this.onDeleteAsset}
onCreateAsset={this.onCreateAsset}
products={this.state.products} products={this.state.products}
userInfo={this.state.userInfo} userInfo={this.state.userInfo}
userOrders={this.state.userOrders} userOrders={this.state.userOrders}
userOrganization={this.state.userOrganization} userOrganization={this.state.userOrganization}
assets={this.state.assets}
/> />
</div> </div>
); );

View File

@@ -1,5 +1,6 @@
import fetch from 'cross-fetch'; import fetch from 'cross-fetch';
import { execute } from './helpers/GravityAPI'; import { execute } from './helpers/GravityAPI';
import uuidv4 from 'uuid/v4';
var WooCommerceAPI = require('woocommerce-api'); var WooCommerceAPI = require('woocommerce-api');
var Base64 = require('base-64'); var Base64 = require('base-64');
@@ -138,4 +139,86 @@ export function getOrders(username) {
}); });
return API.getAsync('orders') return API.getAsync('orders')
}
const assetToken = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImQ5ZjcwNmE1NWJjNjMyYWUzNmY2MWRkMDk5MGZlNzJiYmMyZGVmMWY0NmIyZGE1NGVlOTQyNTBjY2RkMWE2OGRmOTkzOTllYTM4YjY3NTg4In0.eyJhdWQiOiIxIiwianRpIjoiZDlmNzA2YTU1YmM2MzJhZTM2ZjYxZGQwOTkwZmU3MmJiYzJkZWYxZjQ2YjJkYTU0ZWU5NDI1MGNjZGQxYTY4ZGY5OTM5OWVhMzhiNjc1ODgiLCJpYXQiOjE1MzIzMTE0NzcsIm5iZiI6MTUzMjMxMTQ3NywiZXhwIjoxNTYzODQ3NDc3LCJzdWIiOiIxIiwic2NvcGVzIjpbXX0.UCQVolMz7XhfeDR0iWGoMVkpAacxNhZ4Lmty2gWimeYdVs9rY2H04KObeHAEjKL0Z2mVoAia_JhdBHHbnqWWdVgJMHIEgo_c3HU2hH2_xqUBrUvUuiVhD9UFAu5-SWkDyT3l2HqF_Imx_YF6LM7Is9AUJW1Ryk7gj5BJXUECFTRWyxMVsxfqZJrCoWv_xfHX45eMZOEpVkvYdRmxvWWW0HVuPg85xeJc-7nSOMmWeWBjQWTmoUAMoIg4Y_UdOAb4tZWGAU7eTUgl7yR8iViDQY45AHpBnTdHoIcfd8VuiiwbuiQ9I3lrnAu7oiNI_THLvVfkjQmGxlg51q0mpS43Uvp0IFX_XbhOGcGbWecTTXXEQX_nX9aijyioH8oWONcMEJycgsnFnE63THU2Ny4n-yU8axjmnvb_zwxUZvv06-jCiyMub2lfJ0o4gZASy1IwwOgirp9bYBCRCb06PJuFDAO7P90CTGjh_qcBX2nf-o8uwVKDmADeebpgWSuB7nTClChc2vw-3BRto6t50tRR5osqGGbVF4zOPmGK_aX86UdykVYBWxv8SScM0ni8_IXgPoCW5JzdsRGQvOQ9JKycoAzlpzL-IvaSJEmyDum6nrI0Atm6JEC1pjBqtxCjNRcQBNv7tYsrj-76FEz35lWiDVMcn09_cIeq6X6wpEK-kMk';
export function getAssets() {
return fetch('http://localhost:5555/api/v1/hardware', {
method: 'get',
headers: {
'Authorization': 'Bearer ' + assetToken,
'Accept': 'application/json',
}
}).then(response => {
switch (response.status) {
case 401:
console.log(response.code)
break
case 200:
return response.json()
default:
console.log(response.code)
}
})
}
export function deleteAsset(id) {
return fetch(`http://localhost:5555/api/v1/hardware/${id}`, {
method: 'delete',
headers: {
'Authorization': 'Bearer ' + assetToken,
'Accept': 'application/json',
}
}).then(response => {
switch (response.status) {
case 200:
return true;
default:
return false;
}
})
}
export function getAsset(id) {
return fetch(`http://localhost:5555/api/v1/hardware/${id}`, {
method: 'get',
headers: {
'Authorization': 'Bearer ' + assetToken,
'Accept': 'application/json',
},
}).then(response => {
switch (response.status) {
case 200:
return response.json();
default:
return undefined;
}
})
}
export function createAsset(data) {
const newAsset = Object.assign(data, {
asset_tag: uuidv4(),
status_id: 1,
model_id: 1,
supplier_id: 1,
purchase_date: "2018-07-23 06:01:29",
});
return fetch(`http://localhost:5555/api/v1/hardware`, {
method: 'post',
headers: {
'Authorization': 'Bearer ' + assetToken,
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(newAsset),
}).then(response => {
switch (response.status) {
case 200:
return response.json();
default:
return false;
}
})
} }

View File

@@ -0,0 +1,70 @@
import React from 'react';
class AssetManagement extends React.Component {
constructor() {
super();
this.state = {
newAssetName: 'Name',
newAssetSE: 'SE',
newAssetWarranty: 12,
};
}
onNewAssetNameChange = target => {
this.setState({
newAssetName: target.value,
});
};
onNewAssetSEChange = target => {
this.setState({
newAssetSE: target.value,
});
};
onNewAssetWarrantyChange = target => {
this.setState({
newAssetWarranty: target.value,
});
};
onCreateNewAssetClicked = () => {
this.props.onCreateAsset({
name: this.state.newAssetName,
serial: this.state.newAssetSE,
warranty_months: this.state.newAssetWarranty,
});
}
render() {
const userAssets = [];
if (this.props.assets) {
this.props.assets.forEach(asset => {
userAssets.push(<div className="asset" key={asset.id}>
<span>#{asset.asset_tag}</span>
<span>{asset.name}</span>
<span>{asset.supplier ? asset.supplier.name : ''}</span>
<span>Expires: {asset.warranty_expires ? asset.warranty_expires.formatted : '-'}</span>
<div className="asset-delete" onClick={() => { this.props.onDeleteAsset(asset.id)}}>DELETE</div>
</div>);
});
}
return (<div className="asset-management">
<div className="new-asset">
<input className="new-asset-input" onChange={this.onNewAssetNameChange} value={this.state.newAssetName}/>
<input className="new-asset-input" onChange={this.onNewAssetSEChange} value={this.state.newAssetSE}/>
<input className="new-asset-input" type="number" onChange={this.onNewAssetWarrantyChange} value={this.state.newAssetWarranty}/>
<button onClick={this.onCreateNewAssetClicked}>Create new</button>
</div>
<div className="assets">
{userAssets}
</div>
</div>);
}
}
export default AssetManagement;

View File

@@ -3,6 +3,7 @@ import Order from './order'
import Login from './login' import Login from './login'
import Workflow from './workflow'; import Workflow from './workflow';
import UserDashboard from './user-dashboard'; import UserDashboard from './user-dashboard';
import AssetManagement from './asset-management';
import ActionType from '../enums/ActionType'; import ActionType from '../enums/ActionType';
@@ -42,6 +43,12 @@ export const Wiaas = (props) => {
> >
User Dashboard User Dashboard
</div> </div>
<div
className={getSidebarItemClass(ActionType.ASSET_MANAGEMENT)}
onClick={() => { props.onActionTypeChange(ActionType.ASSET_MANAGEMENT)}}
>
Asset Management
</div>
</div> </div>
<div id="wiaas-container"> <div id="wiaas-container">
{props.actionType === ActionType.LOG_IN && <Login onLogInClicked={props.onLogInClicked}/>} {props.actionType === ActionType.LOG_IN && <Login onLogInClicked={props.onLogInClicked}/>}
@@ -52,6 +59,11 @@ export const Wiaas = (props) => {
userOrders={props.userOrders} userOrders={props.userOrders}
userOrganization={props.userOrganization} userOrganization={props.userOrganization}
/>} />}
{props.actionType === ActionType.ASSET_MANAGEMENT && <AssetManagement
assets={props.assets}
onDeleteAsset={props.onDeleteAsset}
onCreateAsset={props.onCreateAsset}
/>}
</div> </div>
</div> </div>
) )

View File

@@ -3,6 +3,7 @@ const actions = {
LOG_IN: 1, LOG_IN: 1,
WORKFLOW: 2, WORKFLOW: 2,
USER_DASHBOARD: 3, USER_DASHBOARD: 3,
ASSET_MANAGEMENT: 4,
}; };
export default actions; export default actions;