1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
|
package main
import (
"bufio"
"fmt"
"os"
"html"
"net"
"path/filepath"
"os/exec"
"regexp"
"strconv"
"strings"
"time"
"log"
)
const (
configDir = "/.config/abbtr/"
configFileName = "abbtr.conf"
logDir = "/.local/share/abbtr/"
logFileName = "abbtr.log"
VERSION = "1.0.4"
)
var configFile = filepath.Join(os.Getenv("HOME"), configDir, configFileName)
var reservedNames = []string{
"-h", "-l", "-n", "-r", "-c", "-ln", "-v", "-i", "-e", "-b",
"-H", "-L", "-N", "-R", "-C", "-LN", "-V", "-I", "-E", "-B",
"-lN", "-Ln",
// Reserved for future implementations
"-g", "-G", "-w", "-W", "-t", "-T", "-x", "-X", "-y", "-Y",
"-z", "-Z", "-a", "-A",
// Reserved to system commands
"su", "passwd", "clear", "exit", "logout", "reset", "whoami", "hostname",
"sync", "uptime", "pwd", "yes", "true", "false", "cal", "date", "arch",
"bg", "fg", "jobs", "tset", "lsblk",
}
func main() {
// Initialize the config file
homeDir, err := os.UserHomeDir()
if err != nil {
log.Fatalf("Failed to get home directory: %v", err)
}
configFile = filepath.Join(homeDir, ".config", "abbtr", "abbtr.conf")
err = initConfigFile()
if err != nil {
log.Fatalf("Failed to initialize config file: %v", err)
}
// Verify if ~/.local/bin is in the PATH
checkPath()
// Call for syncRulesWithScripts
err = syncRulesWithScripts()
if err != nil {
fmt.Printf("Warning: Unable to synchronize rules with scripts: %v\n", err)
fmt.Println("This may be normal if this is the first run or if ~/.local/bin doesn't exist.")
fmt.Println("The program will continue, but some functionality may be limited.")
}
args := os.Args[1:]
bottleValues := make(map[string]string)
var commands []string
for i := 0; i < len(args); i++ {
if strings.HasPrefix(args[i], "-b=") {
parts := strings.SplitN(args[i], "=", 2)
if len(parts) == 2 {
bottleParts := strings.SplitN(parts[1], ":", 2)
if len(bottleParts) == 2 {
bottleValues[bottleParts[0]] = bottleParts[1]
}
}
} else {
commands = append(commands, args[i])
}
}
if len(commands) == 0 {
showHelp()
return
}
switch commands[0] {
case "-h":
showHelp()
case "-l":
listRules()
case "-n":
if len(commands) < 3 {
fmt.Println("Error: Incorrect usage of -n. It should be: abbtr -n <name> '<command>'")
return
}
name := commands[1]
command := strings.Join(commands[2:], " ")
createRule(name, command)
case "-r":
if len(commands) == 1 {
fmt.Println("Error: Incorrect usage of -r. It should be: abbtr -r <name> [<name>...] or abbtr -r a")
return
}
names := commands[1:]
if len(names) == 1 && names[0] == "a" {
deleteAllRules()
} else {
for _, name := range names {
deleteRule(name)
}
}
case "-c":
if len(commands) < 3 {
fmt.Println("Error: Incorrect usage of -c. It should be: abbtr -c <name> '<command>'")
return
}
name := commands[1]
command := strings.Join(commands[2:], " ")
updateRule(name, command)
case "-ln":
if len(commands) != 2 {
fmt.Println("Error: Incorrect usage of -ln. It should be: abbtr -ln <name>")
return
}
name := commands[1]
showRule(name)
case "-v":
fmt.Println("abbtr version", VERSION)
case "-i":
if len(commands) != 2 {
fmt.Println("Error: Incorrect usage of -i. It should be: abbtr -i <file path>")
return
}
importSource := commands[1]
importRulesFromFile(importSource)
case "-e":
exportRules()
default:
if strings.HasPrefix(commands[0], "-") {
fmt.Println("Unrecognized option. Use abbtr -h to see the available options.")
} else {
runCommands(commands, bottleValues)
}
}
}
func showHelp() {
fmt.Println("Usage: abbtr <option>")
fmt.Println(" ")
fmt.Println("Available options:")
fmt.Println(" -n <name> '<command>'\tCreate a new rule")
fmt.Println(" -l\t\t\tList stored rules")
fmt.Println(" -r <name> [<name>...]\tDelete existing rules")
fmt.Println(" -r a \t\t\tDelete all rules")
fmt.Println(" -c <name> '<command>'\tUpdate the command of a rule")
fmt.Println(" -ln <name>\t\tShow the contents of a specific rule")
fmt.Println(" -h\t\t\tShow this help")
fmt.Println(" -v\t\t\tShow the program version")
fmt.Println(" -i <file path>\t\tImport rules from a local file")
fmt.Println(" -e\t\t\tExport rules to a text file (backup)")
fmt.Println(" -b=<variable:value>\tPre-define the content of a bottle")
fmt.Println("\t\t\tSyntax for create bottles: b%('variable')%b")
fmt.Println(" ")
fmt.Println("Usage examples:")
fmt.Println(" Create a new rule: abbtr -n update 'sudo apt update -y'")
fmt.Println(" The next time just run: update")
fmt.Println(" ")
fmt.Println(" Create a new rule with bottle: abbtr -n ssh 'ssh -p 2222 b%('username')%b@example.com'")
fmt.Println(" The next time you run 'ssh' the system will ask you for the username value")
fmt.Println(" ")
fmt.Println("For further help go to https://github.com/manuwarfare/abbtr")
fmt.Println("Author: Manuel Guerra")
fmt.Printf("V %s | Software licensed under the BSD 3-Clause License\n", VERSION)
}
func listRules() {
file, err := os.Open(configFile)
if err != nil {
fmt.Println("Failed to open the configuration file:", err)
fmt.Println("No rules have been created in abbtr yet.")
return
}
defer file.Close()
scanner := bufio.NewScanner(file)
var rules [][]string
for scanner.Scan() {
line := scanner.Text()
parts := strings.SplitN(line, "=", 2)
if len(parts) != 2 {
continue
}
name := strings.TrimSpace(parts[0])
command := strings.TrimSpace(parts[1])
rules = append(rules, []string{name, command})
}
if len(rules) == 0 {
fmt.Println("No rules have been created in abbtr yet.")
return
}
// Print rules
fmt.Println("Rules:")
for _, rule := range rules {
fmt.Printf("Rule Name: %s\n", rule[0])
fmt.Printf("Command: %s\n\n", rule[1])
}
if err := scanner.Err(); err != nil {
fmt.Println("Error reading the configuration file:", err)
}
}
func createRule(name, command string) {
// Read existing lines from the configuration file
lines, err := readLines(configFile)
if err != nil {
fmt.Println("Error reading the configuration file:", err)
return
}
// Check if the rule name is reserved
if isReservedName(name) {
fmt.Printf("Unable to create a rule with this name. '%s' is a reserved command name.\n", name)
return
}
// Check if the rule already exists and ask if it should be overwritten
found := false
for i, line := range lines {
if strings.HasPrefix(line, name+" = ") {
fmt.Printf("The rule '%s' already exists. Do you want to overwrite it? (y/n): ", name)
var response string
fmt.Scanln(&response)
if response != "y" {
fmt.Println("Operation cancelled.")
return
}
lines[i] = fmt.Sprintf("%s = %s", name, command)
found = true
break
}
}
// If the rule was not found, add it to the configuration
if !found {
lines = append(lines, fmt.Sprintf("%s = %s", name, command))
}
// Write the updated lines to the configuration file
err = writeLines(configFile, lines)
if err != nil {
fmt.Println("Error writing to the configuration file:", err)
return
}
// Create the ~/.local/bin directory if it does not exist
binDir := filepath.Join(os.Getenv("HOME"), ".local", "bin")
err = os.MkdirAll(binDir, 0755)
if err != nil {
fmt.Printf("Error creating directory %s: %v\n", binDir, err)
return
}
// Escape double quotes in the command
escapedCommand := strings.Replace(command, `"`, `\"`, -1)
// Create the script in ~/.local/bin using the escaped command
scriptPath := filepath.Join(binDir, name)
scriptContent := createScriptContent(name, escapedCommand)
err = os.WriteFile(scriptPath, []byte(scriptContent), 0755)
if err != nil {
fmt.Printf("Error creating script: %v\n", err)
return
}
// Log the event in abbtr.log
err = logEvent("CREATE_RULE", fmt.Sprintf("Name: %s, Command: %s", name, command))
if err != nil {
fmt.Printf("Warning: Failed to log event: %v\n", err)
}
// Success message
fmt.Printf("Rule '%s' successfully added. You can now use it directly by typing '%s'\n", name, name)
}
func deleteRule(name string) {
// Read existing lines from the configuration file
lines, err := readLines(configFile)
if err != nil {
fmt.Println("Error reading the configuration file:", err)
return
}
// Check if the rule exists and remove it from the configuration file
found := false
for i, line := range lines {
if strings.HasPrefix(line, name+" = ") {
lines = append(lines[:i], lines[i+1:]...)
found = true
break
}
}
if !found {
fmt.Printf("Rule '%s' not found.\n", name)
return
}
err = writeLines(configFile, lines)
if err != nil {
fmt.Println("Error writing to the configuration file:", err)
return
}
// Remove the corresponding script in ~/.local/bin
scriptPath := filepath.Join(os.Getenv("HOME"), ".local", "bin", name)
err = os.Remove(scriptPath)
if err != nil && !os.IsNotExist(err) {
fmt.Printf("Error deleting script: %v\n", err)
return
}
// Log the deletion event in abbtr.log
err = logEvent("DELETE_RULE", fmt.Sprintf("Name: %s", name))
if err != nil {
fmt.Printf("Warning: Failed to log event: %v\n", err)
}
fmt.Printf("Rule '%s' successfully deleted.\n", name)
}
func deleteAllRules() error {
// Open the configuration file for writing
file, err := os.OpenFile(configFile, os.O_WRONLY, 0644)
if err != nil {
return fmt.Errorf("failed to open abbtr.conf: %v", err)
}
defer file.Close()
// Truncate the configuration file to remove all rules
err = file.Truncate(0)
if err != nil {
return fmt.Errorf("failed to truncate abbtr.conf: %v", err)
}
// Define the directory containing the scripts for the rules
rulesDir := filepath.Join(os.Getenv("HOME"), ".local/bin")
// Read all files in the rules directory
files, err := os.ReadDir(rulesDir)
if err != nil {
return fmt.Errorf("failed to read rules directory: %v", err)
}
// Iterate over the files and remove each script
for _, file := range files {
if !file.IsDir() { // Ensure it's not a directory
scriptPath := filepath.Join(rulesDir, file.Name())
err := os.Remove(scriptPath)
if err != nil {
fmt.Printf("Error deleting script %s: %v\n", file.Name(), err)
}
}
}
fmt.Println("All rules have been successfully deleted.")
return nil
}
func updateRule(name, command string) {
// Initialize configuration file
err := initConfigFile()
if err != nil {
fmt.Printf("Error initializing config file: %v\n", err)
return
}
// Read existing lines from the configuration file
lines, err := readLines(configFile)
if err != nil {
fmt.Println("Error reading the configuration file:", err)
return
}
// Check if the rule name is reserved
if isReservedName(name) {
fmt.Printf("Unable to update rule. '%s' is a reserved command name.\n", name)
return
}
// Update the rule in the configuration
found := false
for i, line := range lines {
if strings.HasPrefix(line, name+" = ") {
lines[i] = fmt.Sprintf("%s = %s", name, command)
found = true
break
}
}
if !found {
fmt.Printf("Rule '%s' not found.\n", name)
return
}
// Write updated lines to the configuration file
err = writeLines(configFile, lines)
if err != nil {
fmt.Println("Error writing to the configuration file:", err)
return
}
// Create the directory for scripts if it does not exist
binDir := filepath.Join(os.Getenv("HOME"), ".local/bin")
err = os.MkdirAll(binDir, 0755)
if err != nil {
fmt.Printf("Error creating directory %s: %v\n", binDir, err)
return
}
// Escape quotes in the command
escapedCommand := strings.Replace(command, `"`, `\"`, -1)
// Create or update the script file using the escaped command
scriptPath := filepath.Join(binDir, name)
scriptContent := createScriptContent(name, escapedCommand)
err = os.WriteFile(scriptPath, []byte(scriptContent), 0755)
if err != nil {
fmt.Printf("Error updating script: %v\n", err)
return
}
// Log the event
err = logEvent("UPDATE_RULE", fmt.Sprintf("Name: %s, New Command: %s", name, command))
if err != nil {
fmt.Printf("Warning: Failed to log event: %v\n", err)
}
fmt.Printf("Rule '%s' successfully updated.\n", name)
}
func showRule(name string) {
file, err := os.Open(configFile)
if err != nil {
fmt.Println("Failed to open the configuration file:", err)
return
}
defer file.Close()
scanner := bufio.NewScanner(file)
found := false
for scanner.Scan() {
line := scanner.Text()
if strings.HasPrefix(line, name+" = ") {
fmt.Println(line)
found = true
break
}
}
if !found {
fmt.Printf("Rule '%s' does not exist.\n", name)
}
}
func runCommands(commands []string, bottleValues map[string]string) {
for i, cmd := range commands {
rule, err := getCommand(cmd)
if err != nil {
fmt.Printf("Error: %s\n", err)
continue
}
processedRule := processBottles(rule, bottleValues)
start := time.Now()
fmt.Printf("Executing command %d: %s\n", i+1, processedRule)
err = executeCommand(processedRule)
duration := time.Since(start)
result := "Success"
if err != nil {
result = fmt.Sprintf("Error: %v", err)
fmt.Printf("Error executing command %d: %s\n", i+1, err)
}
logDetails := fmt.Sprintf("Command: \"%s\", Result: %s, Duration: %v", processedRule, result, duration)
err = logEvent("EXECUTE_RULE", logDetails)
if err != nil {
fmt.Printf("Warning: Failed to log event: %v\n", err)
}
}
}
func getCommand(name string) (string, error) {
file, err := os.Open(configFile)
if err != nil {
return "", fmt.Errorf("failed to open the configuration file: %v", err)
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := scanner.Text()
if strings.HasPrefix(line, name+" = ") {
return strings.TrimSpace(strings.TrimPrefix(line, name+" = ")), nil
}
}
if err := scanner.Err(); err != nil {
return "", fmt.Errorf("error reading the configuration file: %v", err)
}
return "", fmt.Errorf("rule '%s' not found", name)
}
func importRulesFromFile(filePath string) {
start := time.Now()
// Open the file
file, err := os.Open(filePath)
if err != nil {
fmt.Println("Error opening file:", err)
return
}
defer file.Close()
// Read the file
scanner := bufio.NewScanner(file)
var rulesText string
for scanner.Scan() {
rulesText += scanner.Text() + "\n"
}
if err := scanner.Err(); err != nil {
fmt.Println("Error reading file:", err)
return
}
// Extract rules from the text
rules := extractRules(rulesText)
// Read existing rules from the configuration file
existingRules, err := readLines(configFile)
if err != nil {
fmt.Println("Error reading existing rules:", err)
return
}
// Process each rule
for _, rule := range rules {
parts := strings.Split(rule, " = ")
if len(parts) != 2 {
fmt.Println("Error parsing rule:", rule)
continue
}
name := strings.TrimSpace(parts[0])
command := strings.TrimSpace(parts[1])
// Check if the rule already exists
exists := false
for i, existingRule := range existingRules {
if strings.HasPrefix(existingRule, name+" = ") {
exists = true
fmt.Printf("Rule '%s' already exists. Do you want to overwrite it? (y/n): ", name)
var response string
fmt.Scanln(&response)
if response == "y" {
existingRules[i] = fmt.Sprintf("%s = %s", name, command)
fmt.Printf("Rule '%s' updated.\n", name)
} else {
fmt.Printf("Skipping rule '%s'.\n", name)
}
break
}
}
if !exists {
existingRules = append(existingRules, fmt.Sprintf("%s = %s", name, command))
fmt.Printf("Rule '%s' added.\n", name)
}
// Create the script immediately
scriptPath := filepath.Join(filepath.Join(os.Getenv("HOME"), ".local/bin"), name)
scriptContent := fmt.Sprintf(`#!/bin/bash
start=$(date +%%s)
%s
end=$(date +%%s)
duration=$((end - start))
echo "[$(date +'%%Y-%%m-%%d %%H:%%M:%%S')] EXECUTE_RULE %s at $(hostname -I | awk '{print $1}') | Rule: %s, Command: '%s', Result: Success, Duration: ${duration}s" >> %s
`, command, os.Getenv("USER"), name, command, filepath.Join(os.Getenv("HOME"), logDir, logFileName))
err = os.WriteFile(scriptPath, []byte(scriptContent), 0755)
if err != nil {
fmt.Printf("Error creating script for rule %s: %v\n", name, err)
}
// Log the import event
err = logEvent("IMPORT_RULE", fmt.Sprintf("From File: %s, Name: %s, Command: %s", filePath, name, command))
if err != nil {
fmt.Printf("Warning: Failed to log event: %v\n", err)
}
}
// Write all rules back to the configuration file
err = writeLinesWithLock(configFile, existingRules)
if err != nil {
fmt.Println("Error writing rules to config file:", err)
return
}
// End timing
duration := time.Since(start)
fmt.Printf("Rules imported successfully in %.2f seconds.\n", duration.Seconds())
}
func createScriptForRule(name, command string) {
scriptPath := filepath.Join(os.Getenv("HOME"), ".local/bin", name)
scriptContent := fmt.Sprintf("#!/bin/bash\n%s\n", command)
err := os.WriteFile(scriptPath, []byte(scriptContent), 0755)
if err != nil {
fmt.Printf("Error creating script for rule %s: %v\n", name, err)
}
}
func extractRules(text string) []string {
var rules []string
re := regexp.MustCompile(`b:([^=]+) = (.*?):b`)
matches := re.FindAllStringSubmatch(text, -1)
for _, match := range matches {
ruleName := strings.TrimSpace(match[1])
ruleCommand := strings.TrimSpace(match[2])
// Replace HTML entities with their actual characters
ruleCommand = html.UnescapeString(ruleCommand)
rule := fmt.Sprintf("%s = %s", ruleName, ruleCommand)
rules = append(rules, rule)
}
return rules
}
func exportRules() {
fmt.Println("Exporting rules in progress... Press ctrl+c to quit")
fmt.Println("You can export rules in bulk, e.g., <rule1> <rule2>")
var exportRules []string
scanner := bufio.NewScanner(os.Stdin)
for {
fmt.Println("Which rule(s) do you want to export? Leave blank to export all:")
scanner.Scan()
text := scanner.Text()
if text == "" {
exportRules = getAllRules()
break
} else {
rules := strings.Fields(text)
// Reset the exportRules slice for re-selection
exportRules = nil
var invalidRules []string
for _, rule := range rules {
if ruleExists(rule) {
exportRules = append(exportRules, rule)
} else {
invalidRules = append(invalidRules, rule)
}
}
if len(invalidRules) > 0 {
fmt.Printf("The following rules were not found: %v\n", invalidRules)
fmt.Println("Please re-enter the correct rules or leave blank to export all.")
} else {
break
}
}
}
if len(exportRules) == 0 {
fmt.Println("No valid rules selected for export.")
return
}
fmt.Println("Do you want to add a comment? Leave blank to continue:")
scanner.Scan()
comment := scanner.Text()
// Prepare export content
var exportContent []string
if comment != "" {
exportContent = append(exportContent, fmt.Sprintf("#%s", comment))
}
for _, rule := range exportRules {
command, err := getCommand(rule)
if err != nil {
fmt.Printf("Error getting command for rule '%s': %v\n", rule, err)
continue
}
exportContent = append(exportContent, fmt.Sprintf("b:%s = %s:b", rule, command))
}
for {
fmt.Println("Where do you want to store your file? Leave blank to store in $HOME")
fmt.Println("Select a folder for your file:")
scanner.Scan()
exportPath := scanner.Text()
if exportPath == "" {
exportPath = os.Getenv("HOME")
}
// Check if the path is valid
fileInfo, err := os.Stat(exportPath)
if err != nil || !fileInfo.IsDir() {
fmt.Println("Location not found or not a directory.")
continue
}
// Write to file
exportFilePath := fmt.Sprintf("%s/abbtr-rules.txt", exportPath)
err = writeToFile(exportFilePath, exportContent)
if err != nil {
fmt.Println("Error writing rules to file:", err)
return
}
fmt.Printf("Rules successfully exported to: %s\n", exportFilePath)
// Log the export event
exportedRules := strings.Join(exportRules, ", ")
err = logEvent("EXPORT_RULES", fmt.Sprintf("Exported rules: %s, To file: %s", exportedRules, exportFilePath))
if err != nil {
fmt.Printf("Warning: Failed to log event: %v\n", err)
}
break
}
}
func ruleExists(name string) bool {
file, err := os.Open(configFile)
if err != nil {
return false
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := scanner.Text()
if strings.HasPrefix(line, name+" = ") {
return true
}
}
return false
}
func getAllRules() []string {
var rules []string
file, err := os.Open(configFile)
if err != nil {
fmt.Println("Failed to open the configuration file:", err)
return rules
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := scanner.Text()
parts := strings.SplitN(line, "=", 2)
if len(parts) == 2 {
rules = append(rules, strings.TrimSpace(parts[0]))
}
}
if err := scanner.Err(); err != nil {
fmt.Println("Error reading the configuration file:", err)
}
return rules
}
func writeToFile(filePath string, content []string) error {
file, err := os.Create(filePath)
if err != nil {
return fmt.Errorf("failed to create file: %v", err)
}
defer file.Close()
writer := bufio.NewWriter(file)
for _, line := range content {
_, err := fmt.Fprintln(writer, line)
if err != nil {
return fmt.Errorf("failed to write to file: %v", err)
}
}
if err := writer.Flush(); err != nil {
return fmt.Errorf("failed to flush writer: %v", err)
}
return nil
}
func executeCommand(command string) error {
// Record the start time of the command execution
start := time.Now()
// Prepare the command for execution
cmd := exec.Command("bash", "-c", command)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Stdin = os.Stdin
// Run the command
err := cmd.Run()
// Calculate the duration of the command execution
duration := time.Since(start)
result := "Success"
if err != nil {
result = fmt.Sprintf("Error: %v", err)
}
// Format the log details
logDetails := fmt.Sprintf("Command: %q, Result: %s, Duration: %v", command, result, duration)
// Log the execution event
logErr := logEvent("EXECUTE_RULE", logDetails)
if logErr != nil {
fmt.Printf("Warning: Failed to log event: %v\n", logErr)
}
// Handle any errors that occurred during command execution
if err != nil {
if exitError, ok := err.(*exec.ExitError); ok {
return fmt.Errorf("command failed with exit code %d: %v", exitError.ExitCode(), err)
}
return fmt.Errorf("failed to execute command: %v", err)
}
// Return nil if the command was executed successfully
return nil
}
func processBottles(command string, bottleValues map[string]string) string {
re := regexp.MustCompile(`b%\('([^']+)'\)%b`)
return re.ReplaceAllStringFunc(command, func(match string) string {
bottleName := re.FindStringSubmatch(match)[1]
if value, ok := bottleValues[bottleName]; ok {
return value
}
fmt.Printf("The %s is?: ", bottleName)
var value string
fmt.Scanln(&value)
return value
})
}
func readLines(filename string) ([]string, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer file.Close()
var lines []string
scanner := bufio.NewScanner(file)
for scanner.Scan() {
lines = append(lines, scanner.Text())
}
return lines, scanner.Err()
}
func writeLines(filename string, lines []string) error {
file, err := os.Create(filename)
if err != nil {
return err
}
defer file.Close()
writer := bufio.NewWriter(file)
for _, line := range lines {
// Write the line after unquoting it to interpret escaped characters
unquotedLine, err := strconv.Unquote(`"` + line + `"`)
if err != nil {
fmt.Println("Error unquoting line:", line, "Error:", err)
return err
}
_, err = fmt.Fprintln(writer, unquotedLine)
if err != nil {
return err
}
}
return writer.Flush()
}
func logEvent(eventType, details string) error {
logPath := filepath.Join(os.Getenv("HOME"), logDir, logFileName)
// Create the log directory if it does not exist
err := os.MkdirAll(filepath.Dir(logPath), 0755)
if err != nil {
return fmt.Errorf("failed to create log directory: %v", err)
}
// Open the log file in append mode, create it if it doesn't exist
file, err := os.OpenFile(logPath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
return fmt.Errorf("failed to open log file: %v", err)
}
defer file.Close()
// Gather necessary information for the log
user := os.Getenv("USER")
timestamp := time.Now().Format("2006-01-02 15:04:05")
ip := getIP()
// Create the log message
logMessage := fmt.Sprintf("[%s] %s %s at %s | %s\n",
timestamp, eventType, user, ip, details)
// Write the log message to the file
_, err = file.WriteString(logMessage)
if err != nil {
return fmt.Errorf("failed to write to log file: %v", err)
}
return nil
}
func initConfigFile() error {
homeDir, err := os.UserHomeDir()
if err != nil {
return fmt.Errorf("failed to get home directory: %v", err)
}
configDirPath := filepath.Join(homeDir, configDir)
configPath := filepath.Join(configDirPath, configFileName)
// Create the directory if it doesn't exist
err = os.MkdirAll(configDirPath, 0755)
if err != nil {
return fmt.Errorf("failed to create config directory: %v", err)
}
// Open or create the configuration file with read-write permissions for the user
file, err := os.OpenFile(configPath, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
if err != nil {
if os.IsPermission(err) {
log.Printf("Permission error: %v\n", err)
return fmt.Errorf("failed to open or create config file due to permissions: %v", err)
}
log.Printf("Failed to open or create config file: %v\n", err)
return fmt.Errorf("failed to open or create config file: %v", err)
}
defer file.Close()
return nil
}
func getIP() string {
addrs, err := net.InterfaceAddrs()
if err == nil {
for _, addr := range addrs {
if ipnet, ok := addr.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
if ipnet.IP.To4() != nil {
return ipnet.IP.String()
}
}
}
}
return "Unknown IP"
}
func isReservedName(name string) bool {
for _, reserved := range reservedNames {
if name == reserved {
return true
}
}
return false
}
func writeLinesWithLock(filename string, lines []string) error {
file, err := os.OpenFile(filename, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
if err != nil {
return err
}
defer file.Close()
writer := bufio.NewWriter(file)
for _, line := range lines {
_, err = fmt.Fprintln(writer, line)
if err != nil {
return err
}
}
return writer.Flush()
}
func syncRulesWithScripts() error {
// Retrieve all the existing rules
rules := getAllRules()
rulesDir := filepath.Join(os.Getenv("HOME"), ".local", "bin")
// Create the directory if it doesn't exist
err := os.MkdirAll(rulesDir, 0755)
if err != nil {
return fmt.Errorf("failed to create rules directory: %v", err)
}
// Remove scripts that don't have corresponding rules
files, err := os.ReadDir(rulesDir)
if err != nil {
return fmt.Errorf("failed to read rules directory: %v", err)
}
// Loop through each file in the rules directory
for _, file := range files {
if !file.IsDir() {
found := false
for _, rule := range rules {
if rule == file.Name() {
found = true
break
}
}
// Remove orphaned scripts
if !found {
scriptPath := filepath.Join(rulesDir, file.Name())
err := os.Remove(scriptPath)
if err != nil {
fmt.Printf("Error deleting orphaned script %s: %v\n", file.Name(), err)
}
}
}
}
// Create or update scripts for existing rules
for _, rule := range rules {
// Get the command associated with the rule
command, err := getCommand(rule)
if err != nil {
fmt.Printf("Error getting command for rule %s: %v\n", rule, err)
continue
}
// Escape quotes in the command
escapedCommand := strings.Replace(command, `"`, `\"`, -1)
// Create the script content using the escaped command
scriptContent := createScriptContent(rule, escapedCommand)
// Define the script path
scriptPath := filepath.Join(rulesDir, rule)
// Write the script content to the script file
err = os.WriteFile(scriptPath, []byte(scriptContent), 0755)
if err != nil {
fmt.Printf("Error creating/updating script for rule %s: %v\n", rule, err)
}
}
return nil
}
func checkPath() {
path := os.Getenv("PATH")
localBin := filepath.Join(os.Getenv("HOME"), ".local", "bin")
// Split the PATH into individual directories
pathDirs := strings.Split(path, ":")
// Check if ~/.local/bin is exactly in the list of PATH directories
found := false
for _, dir := range pathDirs {
if filepath.Clean(dir) == localBin {
found = true
break
}
}
if found {
return // ~/.local/bin is already in the PATH
}
reader := bufio.NewReader(os.Stdin)
for {
fmt.Printf("~/.local/bin is not in your PATH. Do you want to add it? This is necessary to locally run your rules (y/n): ")
response, _ := reader.ReadString('\n')
response = strings.TrimSpace(strings.ToLower(response))
if response == "y" {
// Add ~/.local/bin to the PATH and update the profile file
fmt.Println("Adding ~/.local/bin to your PATH...")
// Determine the shell profile file based on the user's shell
shell := os.Getenv("SHELL")
var profileFile string
if strings.Contains(shell, "bash") {
profileFile = filepath.Join(os.Getenv("HOME"), ".bashrc")
} else if strings.Contains(shell, "zsh") {
profileFile = filepath.Join(os.Getenv("HOME"), ".zshrc")
} else if strings.Contains(shell, "fish") {
profileFile = filepath.Join(os.Getenv("HOME"), ".config/fish/config.fish")
} else {
// Default to .profile for unknown shells
profileFile = filepath.Join(os.Getenv("HOME"), ".profile")
}
// Append the export command to the profile file
f, err := os.OpenFile(profileFile, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0644)
if err != nil {
fmt.Printf("Error opening profile file: %v\n", err)
return
}
defer f.Close()
if _, err = f.WriteString(fmt.Sprintf("\nexport PATH=%s:$PATH\n", localBin)); err != nil {
fmt.Printf("Error writing to profile file: %v\n", err)
return
}
fmt.Printf("~/.local/bin has been added to your PATH. Please restart your terminal or run 'source %s' to apply the changes.\n", profileFile)
break
} else if response == "n" {
fmt.Println("You can continue using abbtr, but your rules will not run.")
break
} else {
fmt.Println("Please type your option (y/n):")
}
}
}
func createScriptContent(name, command string) string {
return fmt.Sprintf(`#!/bin/bash
start=$(date +%%s)
%s
end=$(date +%%s)
duration=$((end - start))
echo "[$(date +'%%Y-%%m-%%d %%H:%%M:%%S')] EXECUTE_RULE %s at $(hostname -I | awk '{print $1}') | Rule: %s, Command: '%s', Result: Success, Duration: ${duration}s" >> %s
`, command, os.Getenv("USER"), name, command, filepath.Join(os.Getenv("HOME"), logDir, logFileName))
}
|