mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-21 11:47:53 -05:00
* [ci] Add Travis * Exclude some libs * Semi-auto whitespace fixes * line length in SQLite * Exclude tests from line length * Feed.php line length * Feed.php: get rid of unnecessary concat * Feed.php: line length * bootstrap.php: no newline at end of file * Allow concatenating across multiple lines * Add Travis badge * do-install line length * update-or-create-user line length * cli/create-user line length * tests/app/Models/SearchTest.php fix indentation * tests/app/Models/UserQueryTest.php fix indentation * tests/app/Models/CategoryTest.php fix indentation * [fix] PHP 5.3 on precise * cli/do-install no spaces * cli/list-users line length * cli/reconfigure line length * empty catch statements * api/index line length nonsense * spaces before semicolon * app/Models/EntryDAO bunch of indentation * extra blank lines * spaces before comma in function call * testing tabwidth * increase to 10 * comment out tabwidth line * try older phpcs version 3.0.0RC4 * line length exception for app/install.php * proper spaces * stray spaces in i18n * Minz/ModelPdo line length * Minz whitespace * greader line length * greader elseif placement * app/Models/Feed.php spacing in function argument * ignore php 5.3 * app/Models/ConfigurationSetter.php stray whitespace * EntryDAOSQLite line length * I vote for higher max line length =P * ignore SQL * remove classname complaint * line length/more legible SQL * ignore line length nonsense * greader line length * feedController issues * uppercase TRUE, FALSE, NULL * revert * importExportController lowercase null * Share.php default value not necessary because ! is_array () a few lines down * CategoryDAO constants should be UPPERCASE * EntryDAO reduce line length * contentious autofix * Allow failures on all versions of PHP except 7.1 because reasons
100 lines
3.1 KiB
PHP
100 lines
3.1 KiB
PHP
<?php
|
|
|
|
class FreshRSS_UserDAO extends Minz_ModelPdo {
|
|
public function createUser($username, $new_user_language, $insertDefaultFeeds = true) {
|
|
$db = FreshRSS_Context::$system_conf->db;
|
|
require_once(APP_PATH . '/SQL/install.sql.' . $db['type'] . '.php');
|
|
|
|
$userPDO = new Minz_ModelPdo($username);
|
|
|
|
$currentLanguage = Minz_Translate::language();
|
|
|
|
try {
|
|
Minz_Translate::reset($new_user_language);
|
|
$ok = false;
|
|
$bd_prefix_user = $db['prefix'] . $username . '_';
|
|
if (defined('SQL_CREATE_TABLES')) { //E.g. MySQL
|
|
$sql = sprintf(SQL_CREATE_TABLES . SQL_CREATE_TABLE_ENTRYTMP, $bd_prefix_user, _t('gen.short.default_category'));
|
|
$stm = $userPDO->bd->prepare($sql);
|
|
$ok = $stm && $stm->execute();
|
|
} else { //E.g. SQLite
|
|
global $SQL_CREATE_TABLES;
|
|
global $SQL_CREATE_TABLE_ENTRYTMP;
|
|
if (is_array($SQL_CREATE_TABLES)) {
|
|
$instructions = array_merge($SQL_CREATE_TABLES, $SQL_CREATE_TABLE_ENTRYTMP);
|
|
$ok = !empty($instructions);
|
|
foreach ($instructions as $instruction) {
|
|
$sql = sprintf($instruction, $bd_prefix_user, _t('gen.short.default_category'));
|
|
$stm = $userPDO->bd->prepare($sql);
|
|
$ok &= ($stm && $stm->execute());
|
|
}
|
|
}
|
|
}
|
|
if ($ok && $insertDefaultFeeds) {
|
|
if (defined('SQL_INSERT_FEEDS')) { //E.g. MySQL
|
|
$sql = sprintf(SQL_INSERT_FEEDS, $bd_prefix_user);
|
|
$stm = $userPDO->bd->prepare($sql);
|
|
$ok &= $stm && $stm->execute();
|
|
} else { //E.g. SQLite
|
|
global $SQL_INSERT_FEEDS;
|
|
if (is_array($SQL_INSERT_FEEDS)) {
|
|
foreach ($SQL_INSERT_FEEDS as $instruction) {
|
|
$sql = sprintf($instruction, $bd_prefix_user);
|
|
$stm = $userPDO->bd->prepare($sql);
|
|
$ok &= ($stm && $stm->execute());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} catch (Exception $e) {
|
|
Minz_Log::error('Error while creating user: ' . $e->getMessage());
|
|
}
|
|
|
|
Minz_Translate::reset($currentLanguage);
|
|
|
|
if ($ok) {
|
|
return true;
|
|
} else {
|
|
$info = empty($stm) ? array(2 => 'syntax error') : $stm->errorInfo();
|
|
Minz_Log::error('SQL error: ' . $info[2]);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function deleteUser($username) {
|
|
$db = FreshRSS_Context::$system_conf->db;
|
|
require_once(APP_PATH . '/SQL/install.sql.' . $db['type'] . '.php');
|
|
|
|
if ($db['type'] === 'sqlite') {
|
|
return unlink(join_path(DATA_PATH, 'users', $username, 'db.sqlite'));
|
|
} else {
|
|
$userPDO = new Minz_ModelPdo($username);
|
|
|
|
$sql = sprintf(SQL_DROP_TABLES, $db['prefix'] . $username . '_');
|
|
$stm = $userPDO->bd->prepare($sql);
|
|
if ($stm && $stm->execute()) {
|
|
return true;
|
|
} else {
|
|
$info = $stm == null ? array(2 => 'syntax error') : $stm->errorInfo();
|
|
Minz_Log::error('SQL error : ' . $info[2]);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
public static function exist($username) {
|
|
return is_dir(join_path(DATA_PATH, 'users', $username));
|
|
}
|
|
|
|
public static function touch($username = '') {
|
|
if (!FreshRSS_user_Controller::checkUsername($username)) {
|
|
$username = Minz_Session::param('currentUser', '_');
|
|
}
|
|
return touch(join_path(DATA_PATH, 'users', $username, 'config.php'));
|
|
}
|
|
|
|
public static function mtime($username) {
|
|
return @filemtime(join_path(DATA_PATH, 'users', $username, 'config.php'));
|
|
}
|
|
}
|