1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-25 06:25:13 +00:00

Add excluded-users for fuse.

This commit is contained in:
cuihaikuo
2019-03-19 16:09:44 +08:00
parent 52f11250f8
commit c8a2f5a0d3
3 changed files with 43 additions and 0 deletions

View File

@@ -84,6 +84,9 @@ static int readdir_root(SeafileSession *seaf,
users = g_hash_table_get_keys (user_hash); users = g_hash_table_get_keys (user_hash);
for (p = users; p; p = p->next) { for (p = users; p; p = p->next) {
email = p->data; email = p->data;
char *exclude = g_hash_table_lookup (seaf->excluded_users, email);
if (exclude)
continue;
filler (buf, email, NULL, 0); filler (buf, email, NULL, 0);
} }
g_list_free (users); g_list_free (users);

View File

@@ -13,6 +13,9 @@
#include "log.h" #include "log.h"
static int
read_excluded_users (SeafileSession *session);
SeafileSession * SeafileSession *
seafile_session_new(const char *central_config_dir, seafile_session_new(const char *central_config_dir,
const char *seafile_dir, const char *seafile_dir,
@@ -64,12 +67,19 @@ seafile_session_new(const char *central_config_dir,
session->tmp_file_dir = tmp_file_dir; session->tmp_file_dir = tmp_file_dir;
session->session = ccnet_session; session->session = ccnet_session;
session->config = config; session->config = config;
session->excluded_users = g_hash_table_new_full (g_str_hash, g_str_equal,
g_free, NULL);
if (load_database_config (session) < 0) { if (load_database_config (session) < 0) {
seaf_warning ("Failed to load database config.\n"); seaf_warning ("Failed to load database config.\n");
goto onerror; goto onerror;
} }
if (read_excluded_users (session) < 0) {
seaf_warning ("Failed to load excluded users.\n");
goto onerror;
}
session->fs_mgr = seaf_fs_manager_new (session, abs_seafile_dir); session->fs_mgr = seaf_fs_manager_new (session, abs_seafile_dir);
if (!session->fs_mgr) if (!session->fs_mgr)
goto onerror; goto onerror;
@@ -95,6 +105,34 @@ onerror:
return NULL; return NULL;
} }
static int
read_excluded_users (SeafileSession *session)
{
char *users;
int l, i;
char *hash_value;
users = seaf_key_file_get_string (session->config, "fuse", "excluded_users", NULL);
if (!users)
return 0;
char **parts = g_strsplit_set(users, " ,", 0);
l = g_strv_length(parts);
if (l > 0)
hash_value = g_new0(char, 1);
for (i = 0; i < l; i++) {
if (g_strcmp0(parts[i], "") == 0)
continue;
g_hash_table_insert (session->excluded_users, g_strdup(parts[i]), hash_value);
}
g_strfreev (parts);
g_free (users);
return 0;
}
int int
seafile_session_init (SeafileSession *session) seafile_session_init (SeafileSession *session)
{ {

View File

@@ -35,6 +35,8 @@ struct _SeafileSession {
SeafCommitManager *commit_mgr; SeafCommitManager *commit_mgr;
SeafRepoManager *repo_mgr; SeafRepoManager *repo_mgr;
GHashTable *excluded_users;
gboolean create_tables; gboolean create_tables;
}; };