-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGitConfig.h
78 lines (67 loc) · 2.86 KB
/
GitConfig.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#pragma once
/****************************************************************************************
** GitQlient is an application to manage and operate one or several Git repositories. With
** GitQlient you will be able to add commits, branches and manage all the options Git provides.
** Copyright (C) 2021 Francesc Martinez
**
** LinkedIn: www.linkedin.com/in/cescmm/
** Web: www.francescmm.com
**
** This program is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser 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
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
***************************************************************************************/
#include <QObject>
#include <QSharedPointer>
#include <QString>
#include <GitExecResult.h>
class GitBase;
struct GitUserInfo
{
QString mUserName;
QString mUserEmail;
bool isValid() const;
};
class GitConfig : public QObject
{
Q_OBJECT
signals:
void signalCloningProgress(QString stepDescription, int value);
void signalCloningFailure(int error, QString failure);
void signalGlobalInfoReceived(GitUserInfo info);
void signalLocalInfoReceived(GitUserInfo info);
void signalNameReceived(QString name, bool local);
void signalEmailReceived(QString name, bool local);
public:
explicit GitConfig(QSharedPointer<GitBase> gitBase, QObject *parent = nullptr);
GitUserInfo getGlobalUserInfo() const;
void setGlobalUserInfo(const GitUserInfo &info);
GitExecResult setGlobalData(const QString &key, const QString &value);
GitUserInfo getLocalUserInfo() const;
bool getUserNameAsync(bool local);
bool getUserEmailAsync(bool local);
void setLocalUserInfo(const GitUserInfo &info);
GitExecResult setLocalData(const QString &key, const QString &value);
GitExecResult clone(const QString &url, const QString &fullPath);
GitExecResult initRepo(const QString &fullPath);
GitExecResult getLocalConfig() const;
GitExecResult getGlobalConfig() const;
GitExecResult getRemoteForBranch(const QString &branch);
GitExecResult getGitValue(const QString &key) const;
QString getServerUrl() const;
QString getServerHost() const;
QPair<QString, QString> getCurrentRepoAndOwner() const;
GitExecResult unset(const QString &key, bool isGlobal = false) const;
private:
QSharedPointer<GitBase> mGitBase;
};