mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 20:02:17 +03:00
126 lines
2.8 KiB
C
126 lines
2.8 KiB
C
|
/*
|
||
|
* libcsync -- a library to sync a directory with another
|
||
|
*
|
||
|
* Copyright (c) 2008 by Andreas Schneider <mail@cynapses.org>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License
|
||
|
* as published by the Free Software Foundation; either version 2
|
||
|
* of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software Foundation,
|
||
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef _GNU_SOURCE
|
||
|
#define _GNU_SOURCE
|
||
|
#endif
|
||
|
|
||
|
#include <limits.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
#if _WIN32
|
||
|
# ifndef _WIN32_IE
|
||
|
# define _WIN32_IE 0x0501 // SHGetSpecialFolderPath
|
||
|
# endif
|
||
|
# include <shlobj.h>
|
||
|
#else /* _WIN32 */
|
||
|
# include <pwd.h>
|
||
|
# include <unistd.h>
|
||
|
#endif /* _WIN32 */
|
||
|
|
||
|
#include "c_lib.h"
|
||
|
#include "csync_misc.h"
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
char *csync_get_user_home_dir(void) {
|
||
|
char tmp[MAX_PATH] = {0};
|
||
|
char *szPath = NULL;
|
||
|
|
||
|
if (SHGetSpecialFolderPathA(NULL, tmp, CSIDL_PROFILE, TRUE)) {
|
||
|
szPath = malloc(strlen(tmp) + 1);
|
||
|
if (szPath == NULL) {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
strcpy(szPath, tmp);
|
||
|
return szPath;
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
char *csync_get_local_username(void) {
|
||
|
DWORD size = 0;
|
||
|
char *user;
|
||
|
|
||
|
/* get the size */
|
||
|
GetUserName(NULL, &size);
|
||
|
|
||
|
user = (char *) malloc(size);
|
||
|
if (user == NULL) {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
if (GetUserName(user, &size)) {
|
||
|
return user;
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
#else /* ************* !WIN32 ************ */
|
||
|
|
||
|
#ifndef NSS_BUFLEN_PASSWD
|
||
|
#define NSS_BUFLEN_PASSWD 4096
|
||
|
#endif /* NSS_BUFLEN_PASSWD */
|
||
|
|
||
|
char *csync_get_user_home_dir(void) {
|
||
|
char *szPath = NULL;
|
||
|
struct passwd pwd;
|
||
|
struct passwd *pwdbuf;
|
||
|
char buf[NSS_BUFLEN_PASSWD];
|
||
|
int rc;
|
||
|
|
||
|
rc = getpwuid_r(getuid(), &pwd, buf, NSS_BUFLEN_PASSWD, &pwdbuf);
|
||
|
if (rc != 0) {
|
||
|
szPath = getenv("HOME");
|
||
|
return szPath ? c_strdup(szPath) : NULL;
|
||
|
}
|
||
|
|
||
|
szPath = c_strdup(pwd.pw_dir);
|
||
|
|
||
|
return szPath;
|
||
|
}
|
||
|
|
||
|
char *csync_get_local_username(void) {
|
||
|
struct passwd pwd;
|
||
|
struct passwd *pwdbuf;
|
||
|
char buf[NSS_BUFLEN_PASSWD];
|
||
|
char *name;
|
||
|
int rc;
|
||
|
|
||
|
rc = getpwuid_r(getuid(), &pwd, buf, NSS_BUFLEN_PASSWD, &pwdbuf);
|
||
|
if (rc != 0) {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
name = c_strdup(pwd.pw_name);
|
||
|
|
||
|
if (name == NULL) {
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
return name;
|
||
|
}
|
||
|
|
||
|
#endif /* ************* WIN32 ************ */
|