24 Commits

Author SHA1 Message Date
2d1eed4289 Change to akkuman's release action
All checks were successful
CI / build (push) Successful in 10s
CI / release (push) Successful in 9s
2025-06-07 14:01:57 +02:00
45c1182947 Add debug for ci release
All checks were successful
CI / build (push) Successful in 10s
CI / release (push) Successful in 8s
2025-06-07 13:51:24 +02:00
2974629995 Change ci.yml
All checks were successful
CI / build (push) Successful in 10s
CI / release (push) Successful in 8s
2025-06-07 13:46:15 +02:00
c59e7532c2 Change secret
Some checks failed
CI / release (push) Failing after 7s
CI / build (push) Successful in 9s
2025-06-07 12:07:51 +02:00
1430508121 Checkout in release job
Some checks failed
CI / build (push) Successful in 10s
CI / release (push) Failing after 8s
2025-06-07 11:57:17 +02:00
f3d93e1e46 Merge 2 workflows into one
Some checks failed
CI / build (push) Successful in 10s
CI / release (push) Failing after 16s
2025-06-07 11:39:51 +02:00
e98a8daad7 Missing file for the last commit 2025-06-07 11:23:01 +02:00
0a9fe8f4f8 Fix replacement 2025-06-07 11:21:51 +02:00
5d4cd30d95 lock_guard for cfm 2025-06-07 10:16:27 +02:00
f8b66b4e07 Check file persistence 2025-06-07 10:12:36 +02:00
31ec926793 Use configfilemanager to get the real command
All checks were successful
Build / build (push) Successful in 11s
2025-06-07 09:26:15 +02:00
ed068875c3 Implemented configfilemanager 2025-06-06 23:52:05 +02:00
a1b8d589be Fix release job 2025-06-06 21:24:45 +02:00
e95d9bb552 Change ubuntu image to node
All checks were successful
Build / build (push) Successful in 11s
2025-06-02 16:34:25 +02:00
754cc29a83 Use Github's checkout instead of apt git
Some checks failed
Build / build (push) Failing after 3s
2025-06-02 16:30:25 +02:00
bd9ccd33ef Cloning project in CI
Some checks failed
Build / build (push) Failing after 27s
2025-06-02 16:27:29 +02:00
c0a1b0bbd5 Separate the ci jobs
Some checks failed
Build / build (push) Failing after 23s
2025-06-02 16:21:20 +02:00
cd52871632 Remove sudo from ci.yml
Some checks failed
CI / build (push) Failing after 1s
CI / release (push) Has been skipped
2025-06-02 13:55:27 +02:00
a2058ce2d6 Update ci.yml
Some checks failed
CI / build (push) Failing after 1s
CI / release (push) Has been skipped
2025-06-02 13:53:54 +02:00
bad5123b02 Update ci
Some checks failed
CI / build (push) Failing after 21s
CI / release (push) Has been skipped
2025-06-02 13:45:37 +02:00
15fe1b0e9b Update ci
Some checks failed
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled
2025-06-02 13:42:25 +02:00
2951b48680 Added CI
Some checks failed
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled
2025-06-02 13:39:06 +02:00
c494e9697c Modify config files 2025-06-02 13:18:02 +02:00
13f18f99ea Better makefile (AI created) 2025-06-02 13:02:52 +02:00
13 changed files with 264 additions and 41 deletions

79
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,79 @@
name: CI
on:
push:
tags:
- '*' # Triggers on all tags
branches:
- '**' # Triggers on all branches
defaults:
run:
shell: bash
working-directory: .
jobs:
build:
runs-on: ubuntu
container:
image: node:20
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install tools
run: apt update && apt install -y build-essential
- name: Compile project
run: make
- name: Save build output
uses: actions/upload-artifact@v3
with:
name: ncsambawatcher
path: ./ncsambawatcher
release:
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu
container:
image: node:20
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install build tools
run: apt update && apt install -y zip
- name: Download compiled binary
uses: actions/download-artifact@v3
with:
name: ncsambawatcher
- name: Copy files
run: |
mkdir build
cp ncsambawatcher build/ncsambawatcher
cp configs/ncsambawatcher.config.default build/ncsambawatcher.config
cp configs/ncsambawatcher.service.default build/ncsambawatcher.service
cp init.sh build/init.sh
- name: Create release zip
run: |
cd build
ls -al
zip -rv ../ncsambawatcher.zip ./*
cd ../
ls -al
- name: Publish release
uses: akkuman/gitea-release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_SECRET }}
with:
tag_name: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
files: ./ncsambawatcher.zip
token: ${{ secrets.RELEASE_SECRET }}
draft: true

3
.gitignore vendored
View File

@@ -90,3 +90,6 @@ settings.json
watch.c watch.c
ncwatchfile ncwatchfile
ncsambawatcher ncsambawatcher
obj/
build/

View File

@@ -1,2 +1,31 @@
all: # Compiler and flags
g++ -lrt -std=c++17 src/main.cpp src/usermanager.cpp -o ncsambawatcher CXX := g++
CXXFLAGS := -std=c++17 -Wall -Wextra -O2
# Directories
SRC_DIR := src
OBJ_DIR := obj
BUILD_DIR := .
TARGET := $(BUILD_DIR)/ncsambawatcher
# Create list of source and object files
SRCS := $(wildcard $(SRC_DIR)/*.cpp)
OBJS := $(SRCS:$(SRC_DIR)/%.cpp=$(OBJ_DIR)/%.o)
# Default target
all: $(TARGET)
# Link object files into final binary
$(TARGET): $(OBJS)
$(CXX) $(CXXFLAGS) -o $@ $^
# Compile .cpp to .o into obj/
$(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp
@mkdir -p $(OBJ_DIR)
$(CXX) $(CXXFLAGS) -c $< -o $@
# Clean build artifacts
clean:
rm -f $(OBJ_DIR)/*.o $(TARGET)
.PHONY: all clean

View File

@@ -0,0 +1 @@
NEXTCLOUD_CONTAINER_NAME=nextcloud

View File

@@ -4,12 +4,11 @@ After=network.target docker.service
Requires=docker.service Requires=docker.service
[Service] [Service]
ExecStart=/usr/bin/ncsambawatcher ExecStart=/path/to/folder/ncsambawatcher
WorkingDirectory=/path/to/folder/
Restart=always Restart=always
User=root User=root
Group=root Group=root
WorkingDirectory=/usr/bin/
Environment=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
StandardOutput=journal StandardOutput=journal
StandardError=journal StandardError=journal
SyslogIdentifier=ncsambawatcher SyslogIdentifier=ncsambawatcher

View File

@@ -1,5 +1,4 @@
[global] [global]
vfs objects = full_audit vfs objects = full_audit
full_audit:prefix = %u|%I|%m|%S full_audit:prefix = %u|%I|%m|%S
full_audit:success = mkdirat unlinkat renameat write full_audit:success = mkdirat unlinkat renameat write
@@ -7,12 +6,43 @@
full_audit:facility = local5 full_audit:facility = local5
full_audit:priority = NOTICE full_audit:priority = NOTICE
# Put this line only for the groupfolder's share # Example usershare
[Some gorupfolder share] [<username>] #CHANGEME
path = /path/to/nextcloud/data/<username>/files/ #CHANGEME
valid users = <username> #CHANGEME
force user = www-data
force group = www-data
create mask = 0755
force create mode = 0755
directory mask = 0755
force directory mode = 0755
guest ok = no
public = no
writable = yes
browsable = yes
hide dot files = no
inherit owner = yes
hide unreadable = no
full_audit:prefix = %u|%I|%m|__groupfolders/<group-folders-id> # Example groupfolder share
[Sharename]
# To disable logs for a specific share path = /path/to/nextcloud/data/__groupfolders/<groupfolder-id> #CHANGEME
[A share] valid users = usernames #CHANGEME
force user = www-data
force group = www-data
create mask = 0755
force create mode = 0755
directory mask = 0755
force directory mode = 0755
guest ok = no
public = no
writable = yes
browsable = yes
hide dot files = no
inherit owner = yes
hide unreadable = no
full_audit:prefix = %u|%I|%m|__groupfolders/<groupfolder-id> #CHANGEME
# To disable logs for a specific share, add this line to that share
[Sharename]
vfs objects = vfs objects =

View File

@@ -1,11 +1,9 @@
#!/bin/bash #!/bin/bash
make current_dir=$(pwd)
sed -i "s|/path/to/folder/|$current_dir/|g" ncsambawatcher.service
sudo cp ncsambawatcher /usr/bin/ sudo cp ./ncsambawatcher.service /etc/systemd/system
sudo chmod +x /usr/bin/ncsambawatcher
sudo cp configs/ncsambawatcher.service /etc/systemd/system
sudo systemctl daemon-reload sudo systemctl daemon-reload
sudo systemctl enable ncsambawatcher.service sudo systemctl enable ncsambawatcher.service

View File

@@ -0,0 +1 @@
#include "configfilemanager.h"

62
src/configfilemanager.h Normal file
View File

@@ -0,0 +1,62 @@
#ifndef _CONFIGFILEMANAGER_H
#define _CONFIGFILEMANAGER_H
#include <map>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <mutex>
#include "definitions.h"
class configfilemanager{
private:
std::map<std::string, std::string> configs;
std::mutex mtx;
public:
configfilemanager(std::string filepath = "./ncsambawatcher.config")
{
std::ifstream is(filepath);
if(!is.good())
{
std::cerr << "File not exits: " << filepath << std::endl;
exit(EXIT_FAILURE);
}
std::string tmp;
while(!is.eof())
{
std::getline(is, tmp);
std::cout << tmp << std::endl;
if (tmp.at(0) == '#') // ignore comments
continue;
std::vector<std::string> splited = splitString(tmp, '=');
if (splited.size() != 2)
{
std::cerr << "Invalid line: " << tmp << std::endl;
continue;
}
configs.insert(std::make_pair(splited.at(0), splited.at(1)));
}
std::cout << "Config file loaded successfuly" << std::endl;
}
std::string at(const std::string &config)
{
std::lock_guard<std::mutex> lock(mtx);
return configs.at(config);
}
std::string at(const char* config)
{
return at(std::string(config));
}
};
#endif // _CONFIGFILEMANAGER_H

View File

@@ -5,7 +5,9 @@
#define USER_LOG_LOCATION 3 #define USER_LOG_LOCATION 3
#define SCAN_CMD_USR "docker exec --user www-data nextcloud /var/www/html/occ files:scan --path=" #define SCAN_CMD_USR "docker exec --user www-data %1% /var/www/html/occ files:scan --path="
#define SCAN_CMD_GRP "docker exec --user www-data nextcloud /var/www/html/occ groupfolder:scan " #define SCAN_CMD_GRP "docker exec --user www-data %1% /var/www/html/occ groupfolder:scan "
std::vector<std::string> splitString(const std::string& input, char delimiter);
#endif // _LOCATIONS_H #endif // _LOCATIONS_H

View File

@@ -10,12 +10,28 @@
#include <mutex> #include <mutex>
#include <condition_variable> #include <condition_variable>
#include <cstdio> #include <cstdio>
#include "definitions.h"
#include "usermanager.h" #include "usermanager.h"
#include "configfilemanager.h"
configfilemanager cfm;
userManager manager; userManager manager;
std::condition_variable cv; std::condition_variable cv;
std::mutex mtx; std::mutex mtx;
std::vector<std::string> splitString(const std::string& str, char delimiter = '|')
{
std::vector<std::string> ret;
std::stringstream ss(str);
std::string token;
while (std::getline(ss, token, delimiter)) {
ret.push_back(token);
}
return ret;
}
void readingThreadFunc() void readingThreadFunc()
{ {
FILE *logpipe = popen(LOGFILE, "r"); FILE *logpipe = popen(LOGFILE, "r");
@@ -68,7 +84,7 @@ void scannerThreadFunc()
} }
else if (child == 0) // child else if (child == 0) // child
{ {
std::string cmd = userManager::getScanCommandFromUser(user); std::string cmd = userManager::getScanCommandFromUser(user, cfm);
execl("/bin/sh", "sh", "-c", cmd.c_str(), static_cast<char *>(nullptr)); execl("/bin/sh", "sh", "-c", cmd.c_str(), static_cast<char *>(nullptr));
std::cerr << "Scan failed" << std::endl; std::cerr << "Scan failed" << std::endl;
_exit(EXIT_FAILURE); _exit(EXIT_FAILURE);

View File

@@ -1,24 +1,28 @@
#include "usermanager.h" #include "usermanager.h"
std::vector<std::string> splitString(const std::string& str, char delimiter = '|') std::string userManager::getScanCommandFromUser(const std::string &user, configfilemanager &cfm)
{ {
std::vector<std::string> ret; std::string contname = cfm.at("NEXTCLOUD_CONTAINER_NAME");
std::stringstream ss(str); std::string baseCommand;
std::string token; std::string userCommand;
std::string placeholder("%1%");
while (std::getline(ss, token, delimiter)) {
ret.push_back(token);
}
return ret;
}
std::string userManager::getScanCommandFromUser(const std::string &user)
{
if (user.find("__groupfolder") != std::string::npos) if (user.find("__groupfolder") != std::string::npos)
{ {
return std::string(SCAN_CMD_GRP) + splitString(user, '/').back(); baseCommand = SCAN_CMD_GRP;
userCommand = splitString(user, '/').back();
}
else
{
baseCommand = SCAN_CMD_USR;
userCommand = user;
} }
return std::string(SCAN_CMD_USR) + user; size_t pos = 0;
while ((pos = baseCommand.find(placeholder, pos)) != std::string::npos) {
baseCommand.replace(pos, placeholder.length(), contname);
pos += contname.length(); // Move past the replacement
}
return baseCommand + userCommand;
} }

View File

@@ -8,8 +8,7 @@
#include <sstream> #include <sstream>
#include <mutex> #include <mutex>
#include "definitions.h" #include "definitions.h"
#include "configfilemanager.h"
std::vector<std::string> splitString(const std::string& input, char delimiter);
class userManager class userManager
{ {
@@ -19,7 +18,7 @@ private:
public: public:
static std::string getScanCommandFromUser(const std::string&); static std::string getScanCommandFromUser(const std::string&, configfilemanager& cfm);
void addUserFromLogLine(std::string &line) void addUserFromLogLine(std::string &line)
{ {