then current iterators (and pointers) were invalidated now we are using std::vector<Type*> this caused some crashes when a new user was added by 'adduser' winix function added: plugin 'export' is able to upload files on a remote server now (not finished yet) changed: Thumb class is now called: Image and we are able to resize images too (some new options in the config and in mount points) added: some new plugin messages git-svn-id: svn://ttmath.org/publicrep/winix/trunk@764 e52654a7-88a9-db11-a3e9-0013d4bc506e
67 lines
1.0 KiB
C++
Executable File
67 lines
1.0 KiB
C++
Executable File
/*
|
|
* This file is a part of Winix
|
|
* and is not publicly distributed
|
|
*
|
|
* Copyright (c) 2011, Tomasz Sowa
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#ifndef headerfile_winix_plugins_export_db
|
|
#define headerfile_winix_plugins_export_db
|
|
|
|
#include <vector>
|
|
#include "db/dbbase.h"
|
|
#include "export.h"
|
|
#include "core/dirs.h"
|
|
|
|
|
|
|
|
namespace Export
|
|
{
|
|
|
|
|
|
|
|
class Db : public DbBase
|
|
{
|
|
public:
|
|
|
|
void SetDirs(Dirs * pdirs);
|
|
|
|
bool GetExport(long user_id, std::vector<Export> & export_tab, bool clear_tab = true);
|
|
bool GetExport(long id, Export & exp);
|
|
bool GetExportDirs(std::vector<ExportDir> & export_tab, bool clear_tab = true);
|
|
|
|
private:
|
|
|
|
Dirs * dirs;
|
|
|
|
Export exp;
|
|
ExportDir exp_dir;
|
|
DbTextStream query;
|
|
std::wstring dir_temp;
|
|
|
|
int cid;
|
|
int cuser_id;
|
|
int cdir;
|
|
int cftp_id;
|
|
int cftp_dir;
|
|
int cname;
|
|
int cserver;
|
|
int clogin;
|
|
int cpass;
|
|
int cpass_type;
|
|
int ccan_change_ftp_params;
|
|
int ccan_change_dir;
|
|
int chttp_server;
|
|
|
|
void SetExportCols(PGresult * r);
|
|
void SetExportValues(PGresult * r, int row, Export & exp);
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif
|