~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/AclRegistryImpl.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 21:50:13 UTC
  • Revision ID: package-import@ubuntu.com-20130307215013-6gdjkdds7i9uenvs
Tags: upstream-0.6.0+dfsg
ImportĀ upstreamĀ versionĀ 0.6.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
 
2
 *
 
3
 *   Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
 
4
 *   Copyright 2010-2012, Jeff Mitchell <jeff@tomahawk-player.org>
 
5
 *
 
6
 *   Tomahawk is free software: you can redistribute it and/or modify
 
7
 *   it under the terms of the GNU General Public License as published by
 
8
 *   the Free Software Foundation, either version 3 of the License, or
 
9
 *   (at your option) any later version.
 
10
 *
 
11
 *   Tomahawk is distributed in the hope that it will be useful,
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
14
 *   GNU General Public License for more details.
 
15
 *
 
16
 *   You should have received a copy of the GNU General Public License
 
17
 *   along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef TOMAHAWK_ACLREGISTRYIMPL_H
 
21
#define TOMAHAWK_ACLREGISTRYIMPL_H
 
22
 
 
23
#include "AclRegistry.h"
 
24
#include "HeadlessCheck.h"
 
25
#include "DllMacro.h"
 
26
 
 
27
#include <QObject>
 
28
#include <QString>
 
29
#include <QHash>
 
30
#include <QTimer>
 
31
#include <QMutex>
 
32
#include <QVariant>
 
33
#include <QQueue>
 
34
#include <QStringList>
 
35
#include <QUuid>
 
36
 
 
37
class ACLJobItem;
 
38
 
 
39
class ACLRegistryImpl : public ACLRegistry
 
40
{
 
41
    Q_OBJECT
 
42
 
 
43
public:
 
44
 
 
45
    ACLRegistryImpl( QObject *parent = 0 );
 
46
    virtual ~ACLRegistryImpl();
 
47
 
 
48
signals:
 
49
    void aclResult( QString nodeid, QString username, ACLRegistry::ACL peerStatus );
 
50
 
 
51
public slots:
 
52
    /**
 
53
     * @brief Checks if peer is authorized; optionally, can authorize peer with given type if not found
 
54
     *
 
55
     * @param dbid DBID of peer
 
56
     * @param globalType Global ACL to store if peer not found; if ACLRegistry::NotFound, does not store the peer Defaults to ACLRegistry::NotFound.
 
57
     * @param username If not empty, will store the given username along with the new ACL value. Defaults to QString().
 
58
     * @return ACLRegistry::ACL
 
59
     **/
 
60
    virtual ACLRegistry::ACL isAuthorizedUser( const QString &dbid, const QString &username, ACLRegistry::ACL globalType = ACLRegistry::NotFound, bool skipEmission = false );
 
61
    virtual void wipeEntries();
 
62
 
 
63
protected:
 
64
    virtual void load();
 
65
    virtual void save();
 
66
 
 
67
#ifndef ENABLE_HEADLESS
 
68
    void getUserDecision( ACLRegistry::User user, const QString &username );
 
69
 
 
70
private slots:
 
71
    void userDecision( ACLRegistry::User user );
 
72
    void queueNextJob();
 
73
#endif
 
74
 
 
75
private:
 
76
    QQueue< ACLJobItem* > m_jobQueue;
 
77
    int m_jobCount;
 
78
};
 
79
 
 
80
#endif // TOMAHAWK_ACLREGISTRYIMPL_H