KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
dialog_git_repository.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 *
11 * This program 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 this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/gpl-3.0.html
19 * or you may search the http://www.gnu.org website for the version 3 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef DIALOG_GIT_REPOSITORY_H_
25#define DIALOG_GIT_REPOSITORY_H_
26
28
30#include <git2.h>
31
33{
34public:
35 DIALOG_GIT_REPOSITORY( wxWindow* aParent, git_repository* aRepository,
36 wxString aURL = wxEmptyString );
37 ~DIALOG_GIT_REPOSITORY() override;
38
40 {
41 m_ConnType->SetSelection( static_cast<int>( aType ) );
43 }
44
46 {
47 return static_cast<KIGIT_COMMON::GIT_CONN_TYPE>( m_ConnType->GetSelection() );
48 }
49
50 void SetRepoName( const wxString& aName ) { m_txtName->SetValue( aName ); }
51 wxString GetRepoName() const { return m_txtName->GetValue(); }
52
53 void SetRepoURL( const wxString& aURL ) { m_txtURL->SetValue( aURL ); }
54 wxString GetRepoURL() const { return m_txtURL->GetValue(); }
55
61 wxString GetBareRepoURL() const
62 {
63 wxString url = m_txtURL->GetValue();
64
65 if( url.StartsWith( "https://" ) )
66 url = url.Mid( 8 );
67 else if( url.StartsWith( "http://" ) )
68 url = url.Mid( 7 );
69 else if( url.StartsWith( "ssh://" ) )
70 url = url.Mid( 6 );
71
72 return url;
73 }
74
75 const wxString& GetFullURL() const { return m_fullURL; }
76
77 void SetUsername( const wxString& aUsername ) { m_txtUsername->SetValue( aUsername ); }
78 wxString GetUsername() const { return m_txtUsername->GetValue(); }
79
80 void SetPassword( const wxString& aPassword ) { m_txtPassword->SetValue( aPassword ); }
81 wxString GetPassword() const { return m_txtPassword->GetValue(); }
82
83 void SetRepoSSHPath( const wxString& aPath ) { m_fpSSHKey->SetFileName( aPath ); m_prevFile = aPath; }
84 wxString GetRepoSSHPath() const { return m_fpSSHKey->GetFileName().GetFullPath(); }
85
86 void SetEncrypted( bool aEncrypted = true );
87
88private:
89 void OnUpdateUI( wxUpdateUIEvent& event ) override;
90 void OnLocationExit( wxFocusEvent& event ) override;
91 void OnOKClick( wxCommandEvent& event ) override;
92
93 void OnSelectConnType( wxCommandEvent& event ) override;
94 void OnTestClick( wxCommandEvent& event ) override;
95
96 void OnFileUpdated( wxFileDirPickerEvent& event ) override;
97 void onCbCustom( wxCommandEvent& event ) override;
98
99 void setDefaultSSHKey();
100
101 void updateAuthControls();
102 void updateURLData();
104
105 std::tuple<bool,wxString,wxString,wxString> isValidHTTPS( const wxString& url );
106 std::tuple<bool,wxString, wxString> isValidSSH( const wxString& url );
107
108private:
109 git_repository* m_repository;
110 wxString m_fullURL;
111
112 wxString m_prevFile;
113
115 wxString m_tempPath;
116};
117
118#endif /* DIALOG_GIT_REPOSITORY_H_ */
Class DIALOG_GIT_REPOSITORY_BASE.
void OnSelectConnType(wxCommandEvent &event) override
const wxString & GetFullURL() const
void SetRepoType(KIGIT_COMMON::GIT_CONN_TYPE aType)
std::tuple< bool, wxString, wxString > isValidSSH(const wxString &url)
void SetRepoSSHPath(const wxString &aPath)
KIGIT_COMMON::GIT_CONN_TYPE GetRepoType() const
void OnFileUpdated(wxFileDirPickerEvent &event) override
void SetRepoName(const wxString &aName)
wxString GetBareRepoURL() const
Get the Bare Repo U R L object.
void SetPassword(const wxString &aPassword)
void onCbCustom(wxCommandEvent &event) override
wxString GetRepoSSHPath() const
void SetEncrypted(bool aEncrypted=true)
void OnLocationExit(wxFocusEvent &event) override
void OnTestClick(wxCommandEvent &event) override
void SetRepoURL(const wxString &aURL)
wxString GetUsername() const
void OnOKClick(wxCommandEvent &event) override
wxString GetRepoName() const
void SetUsername(const wxString &aUsername)
std::tuple< bool, wxString, wxString, wxString > isValidHTTPS(const wxString &url)
void OnUpdateUI(wxUpdateUIEvent &event) override
wxString GetPassword() const