Compare commits
25 Commits
multi-proc
...
31ec926793
| Author | SHA1 | Date | |
|---|---|---|---|
| 31ec926793 | |||
| ed068875c3 | |||
| a1b8d589be | |||
| e95d9bb552 | |||
| 754cc29a83 | |||
| bd9ccd33ef | |||
| c0a1b0bbd5 | |||
| cd52871632 | |||
| a2058ce2d6 | |||
| bad5123b02 | |||
| 15fe1b0e9b | |||
| 2951b48680 | |||
| c494e9697c | |||
| 13f18f99ea | |||
| d58a241abb | |||
| 2a9d92a3e3 | |||
| ba4cc3faa3 | |||
| 029d5716be | |||
| bcd071018f | |||
| 1113a21b2d | |||
| c57b022278 | |||
| f886dc7162 | |||
| 23d0216a27 | |||
| 119285ed71 | |||
| dc5c983dd7 |
30
.gitea/workflows/build.yml
Normal file
30
.gitea/workflows/build.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push: {}
|
||||
|
||||
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
|
||||
48
.gitea/workflows/release.yml
Normal file
48
.gitea/workflows/release.yml
Normal file
@@ -0,0 +1,48 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v.*
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
working-directory: .
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu
|
||||
needs: build
|
||||
container:
|
||||
image: node:20
|
||||
steps:
|
||||
- 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 init.sh config/init.sh
|
||||
|
||||
- name: Create release zip
|
||||
run: |
|
||||
cd build
|
||||
zip ../ncsambawatcher.zip ./*
|
||||
|
||||
- name: Publish release
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref_name }}
|
||||
release_name: Release ${{ github.ref_name }}
|
||||
files: |
|
||||
ncsambawatcher.zip
|
||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -89,4 +89,6 @@ dkms.conf
|
||||
settings.json
|
||||
watch.c
|
||||
ncwatchfile
|
||||
ncsambawatcher
|
||||
ncsambawatcher
|
||||
|
||||
obj/
|
||||
33
Makefile
33
Makefile
@@ -1,2 +1,31 @@
|
||||
all:
|
||||
g++ -lrt -std=c++17 src/main.cpp src/usermanager.cpp src/guarder.cpp -o ncsambawatcher
|
||||
# Compiler and flags
|
||||
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
|
||||
|
||||
1
configs/ncsambawatcher.config.default
Normal file
1
configs/ncsambawatcher.config.default
Normal file
@@ -0,0 +1 @@
|
||||
NEXTCLOUD_CONTAINER_NAME=nextcloud
|
||||
@@ -1,6 +1,7 @@
|
||||
[Unit]
|
||||
Description=A service which scan Nextcloud folders
|
||||
After=network.target
|
||||
After=network.target docker.service
|
||||
Requires=docker.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/ncsambawatcher
|
||||
|
||||
48
configs/smb.24.04.conf
Normal file
48
configs/smb.24.04.conf
Normal file
@@ -0,0 +1,48 @@
|
||||
[global]
|
||||
vfs objects = full_audit
|
||||
full_audit:prefix = %u|%I|%m|%S
|
||||
full_audit:success = mkdirat unlinkat renameat write
|
||||
full_audit:failure = none
|
||||
full_audit:facility = local5
|
||||
full_audit:priority = NOTICE
|
||||
|
||||
# Example usershare
|
||||
[<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
|
||||
|
||||
# Example groupfolder share
|
||||
[Sharename]
|
||||
path = /path/to/nextcloud/data/__groupfolders/<groupfolder-id> #CHANGEME
|
||||
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 =
|
||||
48
src/configfilemanager.h
Normal file
48
src/configfilemanager.h
Normal file
@@ -0,0 +1,48 @@
|
||||
#ifndef _CONFIGFILEMANAGER_H
|
||||
#define _CONFIGFILEMANAGER_H
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "definitions.h"
|
||||
|
||||
class configfilemanager{
|
||||
private:
|
||||
std::map<std::string, std::string> configs;
|
||||
|
||||
public:
|
||||
configfilemanager(std::string filepath = "./ncsambawatcher.config")
|
||||
{
|
||||
std::ifstream is(filepath);
|
||||
std::string tmp;
|
||||
while(std::getline(is, tmp))
|
||||
{
|
||||
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::string at(const std::string &config)
|
||||
{
|
||||
return configs.at(config);
|
||||
}
|
||||
|
||||
std::string at(const char* config)
|
||||
{
|
||||
return at(std::string(config));
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif // _CONFIGFILEMANAGER_H
|
||||
13
src/definitions.h
Normal file
13
src/definitions.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef _LOCATIONS_H
|
||||
#define _LOCATIONS_H
|
||||
|
||||
#define LOGFILE "journalctl -u smbd --since now -f"
|
||||
|
||||
#define USER_LOG_LOCATION 3
|
||||
|
||||
#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 %1% /var/www/html/occ groupfolder:scan "
|
||||
|
||||
std::vector<std::string> splitString(const std::string& input, char delimiter);
|
||||
|
||||
#endif // _LOCATIONS_H
|
||||
@@ -1 +0,0 @@
|
||||
#include "guarder.h"
|
||||
@@ -1,50 +0,0 @@
|
||||
#ifndef _GUARDER_H
|
||||
#define _GUARDER_H
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/shm.h>
|
||||
#include <sys/ipc.h>
|
||||
|
||||
class guarder{
|
||||
private:
|
||||
const int shmid;
|
||||
|
||||
void setFlag(bool value)
|
||||
{
|
||||
bool *flag = static_cast<bool *>(shmat(shmid, nullptr, 0));
|
||||
*flag = value;
|
||||
shmdt(flag);
|
||||
}
|
||||
|
||||
public:
|
||||
guarder() : shmid(shmget(IPC_PRIVATE, sizeof(bool), 0666 | IPC_CREAT))
|
||||
{
|
||||
setFlagOff();
|
||||
}
|
||||
|
||||
void setFlagOff()
|
||||
{
|
||||
setFlag(false);
|
||||
}
|
||||
|
||||
void setFlagOn()
|
||||
{
|
||||
setFlag(true);
|
||||
}
|
||||
|
||||
bool isFlagOn()
|
||||
{
|
||||
bool *flag = static_cast<bool *>(shmat(shmid, nullptr, 0));
|
||||
bool ret = *flag;
|
||||
shmdt(flag);
|
||||
return ret;
|
||||
}
|
||||
|
||||
~guarder()
|
||||
{
|
||||
shmctl(shmid, IPC_RMID, nullptr);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif // _GUARDER_H
|
||||
@@ -1,8 +0,0 @@
|
||||
#ifndef _LOCATIONS_H
|
||||
#define _LOCATIONS_H
|
||||
|
||||
#define LOGFILE "journalctl -u smbd --since now -f"
|
||||
|
||||
#define USER_LOG_LOCATION 3
|
||||
|
||||
#endif // _LOCATIONS_H
|
||||
185
src/main.cpp
185
src/main.cpp
@@ -1,119 +1,116 @@
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/wait.h>
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <array>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <syslog.h>
|
||||
#include <fcntl.h>
|
||||
#include <signal.h>
|
||||
#include "locations.h"
|
||||
#include <mutex>
|
||||
#include <condition_variable>
|
||||
#include <cstdio>
|
||||
#include "definitions.h"
|
||||
#include "usermanager.h"
|
||||
#include "guarder.h"
|
||||
#include "configfilemanager.h"
|
||||
|
||||
#define MAXNAMESIZE 255
|
||||
#define SCAN_DONE_SIG SIGRTMIN
|
||||
#define SCAN_CMD_USR "docker exec --user www-data nextcloud /var/www/html/occ files:scan --path="
|
||||
|
||||
int p1[2];
|
||||
guarder guard;
|
||||
userManager manager;
|
||||
std::condition_variable cv;
|
||||
std::mutex mtx;
|
||||
configfilemanager cfm;
|
||||
|
||||
void flushManagerToPipe()
|
||||
std::vector<std::string> splitString(const std::string& str, char delimiter = '|')
|
||||
{
|
||||
if (!guard.isFlagOn())
|
||||
{
|
||||
std::vector<std::string> users = manager.getFlaggedUsers();
|
||||
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()
|
||||
{
|
||||
FILE *logpipe = popen(LOGFILE, "r");
|
||||
std::array<char, 256> buffer;
|
||||
|
||||
while (fgets(buffer.data(), buffer.size(), logpipe) != nullptr)
|
||||
{
|
||||
std::string line(buffer.data());
|
||||
|
||||
if (line.find('|') == std::string::npos)
|
||||
continue;
|
||||
|
||||
std::vector<std::string> x = splitString(line, '|');
|
||||
std::string user(x.at(USER_LOG_LOCATION));
|
||||
|
||||
for (std::vector<std::string>::iterator it = users.begin(); it != users.end(); ++it)
|
||||
{
|
||||
int size = it->size();
|
||||
write(p1[1], &size, sizeof(int));
|
||||
write(p1[1], it->data(), size * sizeof(char));
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
manager.addUser(user);
|
||||
manager.setUserFlagged(user);
|
||||
}
|
||||
|
||||
manager.unflagAllUsers();
|
||||
cv.notify_one();
|
||||
|
||||
std::cout << "User find: " << user << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
void handler(int sig)
|
||||
void scannerThreadFunc()
|
||||
{
|
||||
if (sig == SCAN_DONE_SIG)
|
||||
std::unique_lock<std::mutex> lock(mtx);
|
||||
std::vector<pid_t> childrens;
|
||||
while (true)
|
||||
{
|
||||
flushManagerToPipe();
|
||||
cv.wait(lock, []
|
||||
{ return manager.isAnybodyFlagged(); });
|
||||
|
||||
std::set<std::string> scanUsers = manager.getFlaggedUsers();
|
||||
manager.unflagAllUsers();
|
||||
|
||||
lock.unlock();
|
||||
childrens.clear();
|
||||
|
||||
for (const std::string& user : scanUsers)
|
||||
{
|
||||
pid_t child = fork();
|
||||
|
||||
if (child < 0)
|
||||
{
|
||||
std::cerr << "Fork failed for: " << user << std::endl;
|
||||
}
|
||||
else if (child == 0) // child
|
||||
{
|
||||
std::string cmd = userManager::getScanCommandFromUser(user, cfm);
|
||||
execl("/bin/sh", "sh", "-c", cmd.c_str(), static_cast<char *>(nullptr));
|
||||
std::cerr << "Scan failed" << std::endl;
|
||||
_exit(EXIT_FAILURE);
|
||||
}
|
||||
else // parent
|
||||
{
|
||||
childrens.push_back(child);
|
||||
}
|
||||
}
|
||||
|
||||
for (const pid_t& pid : childrens)
|
||||
{
|
||||
waitpid(pid, nullptr, 0);
|
||||
}
|
||||
|
||||
lock.lock();
|
||||
}
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
openlog("ncsambawatcher", LOG_PID | LOG_CONS, LOG_USER);
|
||||
pipe(p1);
|
||||
std::thread readingThread(readingThreadFunc);
|
||||
std::thread scannerThread(scannerThreadFunc);
|
||||
|
||||
pid_t parent = getpid();
|
||||
pid_t child = fork();
|
||||
readingThread.join();
|
||||
scannerThread.join();
|
||||
|
||||
if (child > 0) // parent
|
||||
{
|
||||
signal(SCAN_DONE_SIG, handler);
|
||||
close(p1[0]); // read
|
||||
|
||||
FILE *logpipe = popen(LOGFILE, "r");
|
||||
std::array<char, 256> buffer;
|
||||
|
||||
while (fgets(buffer.data(), buffer.size(), logpipe) != nullptr)
|
||||
{
|
||||
std::string line(buffer.data());
|
||||
|
||||
if (line.find('|') == std::string::npos)
|
||||
continue;
|
||||
|
||||
std::vector<std::string> x = splitLogFile(line, '|');
|
||||
std::string user(x.at(USER_LOG_LOCATION));
|
||||
manager.addUser(user);
|
||||
manager.setUserFlagged(user);
|
||||
|
||||
std::cout << "User find: " << user << std::endl;
|
||||
|
||||
flushManagerToPipe();
|
||||
}
|
||||
|
||||
fclose(logpipe);
|
||||
close(p1[1]); // write
|
||||
}
|
||||
else // child
|
||||
{
|
||||
close(p1[1]); // write
|
||||
|
||||
int size;
|
||||
char *buffer = nullptr;
|
||||
|
||||
while (read(p1[0], &size, sizeof(int)))
|
||||
{
|
||||
if (buffer == nullptr)
|
||||
buffer = new char[size];
|
||||
|
||||
read(p1[0], buffer, size * sizeof(char));
|
||||
std::string name(buffer);
|
||||
|
||||
std::cout << "Scan received for: " << name << std::endl;
|
||||
|
||||
guard.setFlagOn();
|
||||
system((std::string(SCAN_CMD_USR) + name).data());
|
||||
guard.setFlagOff();
|
||||
|
||||
kill(parent, SCAN_DONE_SIG);
|
||||
|
||||
if (buffer != nullptr)
|
||||
{
|
||||
delete[] buffer;
|
||||
buffer = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
close(p1[0]); // read
|
||||
}
|
||||
|
||||
closelog();
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
return 0;
|
||||
}
|
||||
@@ -1,14 +1,27 @@
|
||||
#include "usermanager.h"
|
||||
|
||||
std::vector<std::string> splitLogFile(const std::string& input, char delimiter = '|')
|
||||
std::string userManager::getScanCommandFromUser(const std::string &user, configfilemanager &cfm)
|
||||
{
|
||||
std::vector<std::string> ret;
|
||||
std::stringstream ss(input);
|
||||
std::string token;
|
||||
|
||||
while (std::getline(ss, token, delimiter)) {
|
||||
ret.push_back(token);
|
||||
std::string contname = cfm.at("NEXTCLOUD_CONTAINER_NAME");
|
||||
std::string baseCommand;
|
||||
std::string userCommand;
|
||||
|
||||
if (user.find("__groupfolder") != std::string::npos)
|
||||
{
|
||||
baseCommand = SCAN_CMD_GRP;
|
||||
userCommand = splitString(user, '/').back();
|
||||
}
|
||||
else
|
||||
{
|
||||
baseCommand = SCAN_CMD_USR;
|
||||
userCommand = user;
|
||||
}
|
||||
|
||||
return ret;
|
||||
size_t pos = 0;
|
||||
while ((pos = baseCommand.find("%1%", pos)) != std::string::npos) {
|
||||
baseCommand.replace(pos, contname.length(), contname);
|
||||
pos += contname.length(); // Move past the replacement
|
||||
}
|
||||
|
||||
return baseCommand + userCommand;
|
||||
}
|
||||
@@ -4,25 +4,30 @@
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <sstream>
|
||||
#include "locations.h"
|
||||
|
||||
std::vector<std::string> splitLogFile(const std::string& input, char delimiter);
|
||||
#include <mutex>
|
||||
#include "definitions.h"
|
||||
#include "configfilemanager.h"
|
||||
|
||||
class userManager
|
||||
{
|
||||
private:
|
||||
std::map<std::string, bool> users;
|
||||
std::mutex mtx;
|
||||
|
||||
public:
|
||||
|
||||
static std::string getScanCommandFromUser(const std::string&, configfilemanager& cfm);
|
||||
|
||||
void addUserFromLogLine(std::string &line)
|
||||
{
|
||||
addUser(splitLogFile(line, '|').at(USER_LOG_LOCATION));
|
||||
addUser(splitString(line, '|').at(USER_LOG_LOCATION));
|
||||
}
|
||||
|
||||
void addUser(std::string &user)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
if (users.count(user) == 0)
|
||||
{
|
||||
users[user] = false;
|
||||
@@ -31,16 +36,19 @@ public:
|
||||
|
||||
void removeUser(std::string &user)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
users.erase(user);
|
||||
}
|
||||
|
||||
bool isContains(std::string &user)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
return users.count(user) == 1;
|
||||
}
|
||||
|
||||
void setUserFlagged(std::string &user)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
if (users.count(user) == 1)
|
||||
{
|
||||
users[user] = true;
|
||||
@@ -49,6 +57,7 @@ public:
|
||||
|
||||
void setUserUnflagged(std::string &user)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
if (users.count(user) == 1)
|
||||
{
|
||||
users[user] = false;
|
||||
@@ -57,38 +66,56 @@ public:
|
||||
|
||||
void unflagAllUsers()
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
for (std::map<std::string, bool>::iterator it = users.begin(); it != users.end(); ++it)
|
||||
{
|
||||
it->second = false;
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<std::string> getUsers()
|
||||
std::set<std::string> getUsers()
|
||||
{
|
||||
std::vector<std::string> ret;
|
||||
std::set<std::string> ret;
|
||||
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
|
||||
for (std::map<std::string, bool>::iterator it = users.begin(); it != users.end(); ++it)
|
||||
{
|
||||
ret.push_back(it->first);
|
||||
ret.insert(it->first);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
std::vector<std::string> getFlaggedUsers()
|
||||
std::set<std::string> getFlaggedUsers()
|
||||
{
|
||||
std::vector<std::string> ret;
|
||||
std::set<std::string> ret;
|
||||
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
|
||||
for (std::map<std::string, bool>::iterator it = users.begin(); it != users.end(); ++it)
|
||||
{
|
||||
if (it->second)
|
||||
{
|
||||
ret.push_back(it->first);
|
||||
ret.insert(it->first);
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
bool isAnybodyFlagged()
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(mtx);
|
||||
|
||||
for (std::map<std::string, bool>::iterator it = users.begin(); it != users.end(); ++it)
|
||||
{
|
||||
if (it->second)
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // _USERMAN_H
|
||||
Reference in New Issue
Block a user