mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
/*
|
|
* libresapi
|
|
*
|
|
* Copyright (C) 2017, Konrad Dębiec <konradd@tutanota.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "ResourceRouter.h"
|
|
#include "StateTokenServer.h"
|
|
|
|
#include <retroshare/rsfiles.h>
|
|
#include <retroshare/rsnotify.h>
|
|
#include <util/rsthreads.h>
|
|
|
|
namespace resource_api
|
|
{
|
|
|
|
class FileSharingHandler: public ResourceRouter, NotifyClient
|
|
{
|
|
public:
|
|
FileSharingHandler(StateTokenServer* sts, RsFiles* files, RsNotify& notify);
|
|
~FileSharingHandler();
|
|
|
|
// from NotifyClient
|
|
// note: this may get called from foreign threads
|
|
virtual void notifyListChange(int list, int type);
|
|
|
|
private:
|
|
void handleWildcard(Request& req, Response& resp);
|
|
void handleForceCheck(Request& req, Response& resp);
|
|
|
|
void handleGetSharedDir(Request& req, Response& resp);
|
|
void handleSetSharedDir(Request& req, Response& resp);
|
|
void handleUpdateSharedDir(Request& req, Response& resp);
|
|
void handleRemoveSharedDir(Request& req, Response& resp);
|
|
|
|
void handleGetDirectoryParent(Request& req, Response& resp);
|
|
void handleGetDirectoryChilds(Request& req, Response& resp);
|
|
|
|
void handleIsDownloadDirShared(Request& req, Response& resp);
|
|
void handleShareDownloadDirectory(Request& req, Response& resp);
|
|
|
|
void handleDownload(Request& req, Response& resp);
|
|
|
|
StateToken mLocalDirStateToken; // Token indicating change in local shared files
|
|
StateToken mRemoteDirStateToken; // Token indicating change in remote (friends') shared files
|
|
StateTokenServer* mStateTokenServer;
|
|
RsMutex mMtx; // Inherited virtual functions of NotifyClient may be called from foreing thread
|
|
|
|
RsFiles* mRsFiles;
|
|
RsNotify& mNotify;
|
|
};
|
|
|
|
} // namespace resource_api
|