You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							80 lines
						
					
					
						
							2.3 KiB
						
					
					
				
			
		
		
	
	
							80 lines
						
					
					
						
							2.3 KiB
						
					
					
				| #!/bin/bash
 | |
| # info: add user notification
 | |
| # options: USER TOPIC NOTICE [TYPE]
 | |
| #
 | |
| # This function adds a new user notification to the panel.
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                Variables & Functions                     #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| # Argument definition
 | |
| user=$1
 | |
| topic=$(echo $2 | sed "s/'/%quote%/g")
 | |
| notice=$(echo $3 | sed "s/'/%quote%/g")
 | |
| type=$4
 | |
| 
 | |
| # Includes
 | |
| # shellcheck source=/etc/hestiacp/hestia.conf
 | |
| source /etc/hestiacp/hestia.conf
 | |
| # shellcheck source=/usr/local/hestia/func/main.sh
 | |
| source $HESTIA/func/main.sh
 | |
| # load config file
 | |
| source_conf "$HESTIA/conf/hestia.conf"
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                    Verifications                         #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| check_args '2' "$#" 'USER TOPIC NOTICE [TYPE]'
 | |
| is_format_valid 'user' 'topic' 'notice'
 | |
| is_object_valid 'user' 'USER' "$user"
 | |
| 
 | |
| # Perform verification if read-only mode is enabled
 | |
| check_hestia_demo_mode
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                       Action                             #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| # Defining notification id
 | |
| if [ -e "$USER_DATA/notifications.conf" ]; then
 | |
| 	nid=$(grep "NID=" $USER_DATA/notifications.conf | cut -f 2 -d \')
 | |
| 	nid=$(echo "$nid" | sort -n | tail -n1)
 | |
| 	if [ -n "$nid" ]; then
 | |
| 		nid="$((nid + 1))"
 | |
| 	else
 | |
| 		nid=1
 | |
| 	fi
 | |
| else
 | |
| 	nid=1
 | |
| fi
 | |
| 
 | |
| # Generating timestamp
 | |
| time_n_date=$(date +'%T %F')
 | |
| time=$(echo "$time_n_date" | cut -f 1 -d \ )
 | |
| date=$(echo "$time_n_date" | cut -f 2 -d \ )
 | |
| 
 | |
| # Concatenating string
 | |
| str="NID='$nid' TOPIC='$topic' NOTICE='$notice' TYPE='$type'"
 | |
| str="$str ACK='no' TIME='$time' DATE='$date'"
 | |
| 
 | |
| # Adding to config
 | |
| echo "$str" >> $USER_DATA/notifications.conf
 | |
| 
 | |
| # Changing permissions
 | |
| chmod 660 $USER_DATA/notifications.conf
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                       Hestia                             #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| # Updating notification counter
 | |
| if [ -z "$(grep NOTIFICATIONS $USER_DATA/user.conf)" ]; then
 | |
| 	sed -i "s/^TIME/NOTIFICATIONS='yes'\nTIME/g" $USER_DATA/user.conf
 | |
| else
 | |
| 	update_user_value "$user" '$NOTIFICATIONS' "yes"
 | |
| fi
 | |
| 
 | |
| exit
 |