Added the latest elements of the git repositories control.
Now, need to write the documentation.
This commit is contained in:
parent
e21b4d87b9
commit
61f53c518f
51
src/IDF/Plugin/SyncGit.php
Normal file
51
src/IDF/Plugin/SyncGit.php
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
<?php
|
||||||
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||||
|
/*
|
||||||
|
# ***** BEGIN LICENSE BLOCK *****
|
||||||
|
# This file is part of InDefero, an open source project management application.
|
||||||
|
# Copyright (C) 2008 Céondo Ltd and contributors.
|
||||||
|
#
|
||||||
|
# InDefero is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# InDefero 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 General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
#
|
||||||
|
# ***** END LICENSE BLOCK ***** */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is a plugin which allows to synchronise access riths
|
||||||
|
* between InDefero and a common restricted SSH account for git
|
||||||
|
* access.
|
||||||
|
*
|
||||||
|
* As the authentication is directly performed by accessing the
|
||||||
|
* InDefero database, we only need to synchronize the SSH keys. This
|
||||||
|
* synchronization process can only be performed by a process running
|
||||||
|
* under the git user as we need to write in
|
||||||
|
* /home/git/.ssh/authorized_keys
|
||||||
|
*
|
||||||
|
* So, here, we are just creating a file informing that a sync needs
|
||||||
|
* to be done. We connect this plugin to the IDF_Key::postSave signal.
|
||||||
|
*/
|
||||||
|
class IDF_Plugin_SyncGit
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Entry point of the plugin.
|
||||||
|
*/
|
||||||
|
static public function entry($signal, &$params)
|
||||||
|
{
|
||||||
|
// First check for the single mandatory config variable.
|
||||||
|
if (!Pluf::f('idf_plugin_syncgit_sync_file', false)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
@touch(Pluf::f('idf_plugin_syncgit_sync_file'));
|
||||||
|
}
|
||||||
|
}
|
@ -29,7 +29,7 @@ class IDF_Plugin_SyncGit_Cron
|
|||||||
/**
|
/**
|
||||||
* Template for the SSH key.
|
* Template for the SSH key.
|
||||||
*/
|
*/
|
||||||
public $template = 'command="php %s %s",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty %s';
|
public $template = 'command="python %s %s",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty %s';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Synchronize.
|
* Synchronize.
|
||||||
|
@ -60,4 +60,10 @@ Pluf_Signal::connect('IDF_Project::created',
|
|||||||
array('IDF_Plugin_SyncMercurial', 'entry'));
|
array('IDF_Plugin_SyncMercurial', 'entry'));
|
||||||
Pluf_Signal::connect('Pluf_User::passwordUpdated',
|
Pluf_Signal::connect('Pluf_User::passwordUpdated',
|
||||||
array('IDF_Plugin_SyncMercurial', 'entry'));
|
array('IDF_Plugin_SyncMercurial', 'entry'));
|
||||||
|
|
||||||
|
#
|
||||||
|
# Git synchronization
|
||||||
|
Pluf_Signal::connect('IDF_Key::postSave',
|
||||||
|
array('IDF_Plugin_SyncGit', 'entry'));
|
||||||
|
|
||||||
return $m;
|
return $m;
|
||||||
|
Loading…
Reference in New Issue
Block a user