summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-25Added some more log messages inmrb0nk500
`create_pull_request_dir()`.
2021-06-25Change the log types from `LOG_INFO` to `LOG_NOTICE`mrb0nk500
in `create_info()`.
2021-06-25Started work on `create_info()`.mrb0nk500
2021-06-25Remove the TODO in `create_pull_request_dir()`.mrb0nk500
2021-06-25Add error checking, and move the code for getting themrb0nk500
PR path, and getting the patch files to after the error checks.
2021-06-25Allow `create_pull_request_dir()` to use either themrb0nk500
ID, or title of the PR as the directory name.
2021-06-23Fixed another typo in `dir_path_num()`.mrb0nk500
2021-06-23Fixed a typo in `dir_path_num()`.mrb0nk500
2021-06-23Fixed a typo in `misc.h`.mrb0nk500
Forgot to add a semicolon to one of the externs.
2021-06-23Added externs for all the new functions in `misc.c`.mrb0nk500
2021-06-23Added `sanitize_strlen()`, and `sanitize_str()`.mrb0nk500
`sanitize_str()` creates a string with each starting space replaced by a hyphen, and with all trailing spaces, and periods removed. `sanitize_strlen()` gets the length of the sanatized version of the supplied string.
2021-06-23Added `delm_span()`.mrb0nk500
2021-06-23Added 'dir_path_num()', and `dir_path_name()`.mrb0nk500
2021-06-18Include `ctype.h` in `git.c`.mrb0nk500
2021-06-18Removed the code that's now in `misc.c` frommrb0nk500
`config.c`. Forgot to remove it. lol
2021-06-18Added code for creating format patch files of eachmrb0nk500
commit of a pull request.
2021-06-18Move all miscellaneous functions from `config.c` intomrb0nk500
`misc.c`.
2021-06-18Replace all instances of `malloc()` with `calloc()`mrb0nk500
in `config.c`.
2021-06-18Removed unnecessary `memset()` in `read_file()`, andmrb0nk500
replaced `malloc()` with `calloc()`.
2021-06-17Start work on some of the pull request handling code.mrb0nk500
2021-06-15Added the `git_branch` struct, and replaced allmrb0nk500
instances of `git_reference` with it.
2021-06-15Added `pull_request`, `file`, and `comment` structs.mrb0nk500
These structs are used for accepting, rejecting, creating, sending, and receiving pull requests.
2021-06-15Added include for `strings.h`.mrb0nk500
This is because `strcasecmp()` is technically in `strings.h`, rather than `string.h`.
2021-06-13Added a placeholder for the git root in `test.conf`.mrb0nk500
2021-06-13Fixed a typo with appending the directory name to themrb0nk500
git root, and also comment out a debug log message. I forgot to add a `/` oof.
2021-06-13Fixed a stupid bug with not freeing the linked list.mrb0nk500
2021-06-13Added the `repos` parameter to both `main_loop()`, andmrb0nk500
`cleanup()`, and also call the git initialization code in the main program.
2021-06-13Added `cleanup_git()`.mrb0nk500
This function cleans up the initialized git state.
2021-06-13Include `git.h` in `pullreqd.c`.mrb0nk500
Also added the necessary externs.
2021-06-13Tell gcc to stop complaining about `readdir_r()` beingmrb0nk500
deprecated.
2021-06-13Link with libgit2 now.mrb0nk500
2021-06-13Finished the git initialization code.mrb0nk500
2021-06-13Added the `git_repo` struct.mrb0nk500
This is a linked list, that will be temporarily be used by `init_git()`.
2021-06-13Make the `data` member of `cmd` a flexable arraymrb0nk500
member. This is to make it easier to send the packet, due to not having to create an extra buffer before sending the packet.
2021-06-13Changed the order of the struct definitions inmrb0nk500
`network.h`. It wouldn't compile due to them not being defined eariler, and I don't want to do prototyping.
2021-06-12Remove unecessary includes.mrb0nk500
This is because I now have these includes in `network.h`.
2021-06-12Start work on the networking code.mrb0nk500
2021-06-12Start work on the git related code.mrb0nk500
2021-06-12Expanded all instances of `did_fail`, andmrb0nk500
`did_fail_reason`. I also replaced all instances of `log` in the expanded `did_fail_reason` instances with `log_reason`.
2021-06-12Removed `did_fail`, and `did_fail_reason`, and addedmrb0nk500
`log_reason`. I didn't realize just how unreadable the codebase became, with those two macros.
2021-06-12Replaced all log messages with the macros frommrb0nk500
`macros.h`. This was done not only to make it smaller, and easier to read, but also to make it easier for debugging.
2021-06-12Created `macros.h`.mrb0nk500
This header contains any macros that're widely used throughout the codebase.
2021-06-11Replace call to `malloc()` with call to `calloc()` inmrb0nk500
the config parser. Because `calloc()` zeros out the allocated space, we can remove the previous call to `memset()`.
2021-06-11Replace `!` with `== 0` for all calls tomrb0nk500
`strcasecmp()`. This was done to make it more readable.
2021-06-11Remove unneeded call to `memset()` in `make_str()`.mrb0nk500
2021-06-11Change `port` from an int to a string, and move themrb0nk500
valid port check into the config parser.
2021-06-11Added a test config file.mrb0nk500
2021-06-11Added failure reasons to all the failure log messagesmrb0nk500
in `init_socket()`.
2021-06-10Changed `fd` to a `const int`, and added a failedmrb0nk500
socket creation reason in `init_socket()`.
2021-06-10Fixed a typo in `init_socket()`.mrb0nk500
Accidentally used `sprintf()`, instead of `snprintf()`.