php操作SVN版本服务器类代码


Posted in PHP onNovember 27, 2011

SvnPeer.php

<?php 
/** 
* 
* This class for execute the external program of svn 
* 
* @auth Seven Yang <qineer@gmail.com> 
* 
*/ 
class SvnPeer 
{ 
/** 
* List directory entries in the repository 
* 
* @param string a specific project repository path 
* @return bool true, if validated successfully, otherwise false 
*/ 
static public function ls($repository) 
{ 
$command = "svn ls " . $repository; 
$output = SvnPeer::runCmd($command); 
$output = implode("<br>", $output); 
if (strpos($output, 'non-existent in that revision')) { 
return false; 
} 
return "<br>" . $command . "<br>" . $output; 
} 
/** 
* Duplicate something in working copy or repository, remembering history 
* 
* @param $src 
* @param $dst 
* @param $comment string specify log message 
* @return bool true, if copy successfully, otherwise return the error message 
* 
* @todo comment need addslashes for svn commit 
*/ 
static public function copy($src, $dst, $comment) 
{ 
$command = "svn cp $src $dst -m '$comment'"; 
$output = SvnPeer::runCmd($command); 
$output = implode("<br>", $output); 
if (strpos($output, 'Committed revision')) { 
return true; 
} 
return "<br>" . $command . "<br>" . $output; 
} 
/** 
* Remove files and directories from version control 
* 
* @param $url 
* @return bool true, if delete successfully, otherwise return the error message 
* 
* @todo comment need addslashes for svn commit 
*/ 
static public function delete($url, $comment) 
{ 
$command = "svn del $url -m '$comment'"; 
$output = SvnPeer::runCmd($command); 
$output = implode('<br>', $output); 
if (strpos($output, 'Committed revision')) { 
return true; 
} 
return "<br>" . $command . "<br>" . $output; 
} 
/** 
* Move and/or rename something in working copy or repository 
* 
* @param $src string trunk path 
* @param $dst string new branch path 
* @param $comment string specify log message 
* @return bool true, if move successfully, otherwise return the error message 
* 
* @todo comment need addslashes for svn commit 
*/ 
static public function move($src, $dst, $comment) 
{ 
$command = "svn mv $src $dst -m '$comment'"; 
$output = SvnPeer::runCmd($command); 
$output = implode('<br>', $output); 
if (strpos($output, 'Committed revision')) { 
return true; 
} 
return "<br>" . $command . "<br>" . $output; 
} 
/** 
* Create a new directory under version control 
* 
* @param $url string 
* @param $comment string the svn message 
* @return bool true, if create successfully, otherwise return the error message 
* 
* @todo comment need addslashes for svn commit 
*/ 
static public function mkdir($url, $comment) 
{ 
$command = "svn mkdir $url -m '$comment'"; 
$output = SvnPeer::runCmd($command); 
$output = implode('<br>', $output); 
if (strpos($output, 'Committed revision')) { 
return true; 
} 
return "<br>" . $command . "<br>" . $output; 
} 
static public function diff($pathA, $pathB) 
{ 
$output = SvnPeer::runCmd("svn diff $pathA $pathB"); 
return implode('<br>', $output); 
} 
static public function checkout($url, $dir) 
{ 
$command = "cd $dir && svn co $url"; 
$output = SvnPeer::runCmd($command); 
$output = implode('<br>', $output); 
if (strstr($output, 'Checked out revision')) { 
return true; 
} 
return "<br>" . $command . "<br>" . $output; 
} 
static public function update($path) 
{ 
$command = "cd $path && svn up"; 
$output = SvnPeer::runCmd($command); 
$output = implode('<br>', $output); 
preg_match_all("/[0-9]+/", $output, $ret); 
if (!$ret[0][0]){ 
return "<br>" . $command . "<br>" . $output; 
} 
return $ret[0][0]; 
} 
static public function merge($revision, $url, $dir) 
{ 
$command = "cd $dir && svn merge -r1:$revision $url"; 
$output = implode('<br>', SvnPeer::runCmd($command)); 
if (strstr($output, 'Text conflicts')) { 
return 'Command: ' . $command .'<br>'. $output; 
} 
return true; 
} 
static public function commit($dir, $comment) 
{ 
$command = "cd $dir && svn commit -m'$comment'"; 
$output = implode('<br>', SvnPeer::runCmd($command)); 
if (strpos($output, 'Committed revision') || empty($output)) { 
return true; 
} 
return $output; 
} 
static public function getStatus($dir) 
{ 
$command = "cd $dir && svn st"; 
return SvnPeer::runCmd($command); 
} 
static public function hasConflict($dir) 
{ 
$output = SvnPeer::getStatus($dir); 
foreach ($output as $line){ 
if ('C' == substr(trim($line), 0, 1) || ('!' == substr(trim($line), 0, 1))){ 
return true; 
} 
} 
return false; 
} 
/** 
* Show the log messages for a set of path with XML 
* 
* @param path string 
* @return log message string 
*/ 
static public function getLog($path) 
{ 
$command = "svn log $path --xml"; 
$output = SvnPeer::runCmd($command); 
return implode('', $output); 
} 
static public function getPathRevision($path) 
{ 
$command = "svn info $path --xml"; 
$output = SvnPeer::runCmd($command); 
$string = implode('', $output); 
$xml = new SimpleXMLElement($string); 
foreach ($xml->entry[0]->attributes() as $key=>$value){ 
if ('revision' == $key) { 
return $value; 
} 
} 
} 
static public function getHeadRevision($path) 
{ 
$command = "cd $path && svn up"; 
$output = SvnPeer::runCmd($command); 
$output = implode('<br>', $output); 
preg_match_all("/[0-9]+/", $output, $ret); 
if (!$ret[0][0]){ 
return "<br>" . $command . "<br>" . $output; 
} 
return $ret[0][0]; 
} 
/** 
* Run a cmd and return result 
* 
* @param string command line 
* @param boolen true need add the svn authentication 
* @return array the contents of the output that svn execute 
*/ 
static protected function runCmd($command) 
{ 
$authCommand = ' --username ' . SVN_USERNAME . ' --password ' . SVN_PASSWORD . ' --no-auth-cache --non-interactive --config-dir '.SVN_CONFIG_DIR.'.subversion'; 
exec($command . $authCommand . " 2>&1", $output); 
return $output; 
} 
}
PHP 相关文章推荐
虚拟主机中对PHP的特殊设置
Oct 09 PHP
php设计模式 Factory(工厂模式)
Jun 26 PHP
Could not load type System.ServiceModel.Activation.HttpModule解决办法
Dec 29 PHP
使用php记录用户通过搜索引擎进网站的关键词
Feb 13 PHP
php实现的一个简单json rpc框架实例
Mar 30 PHP
JavaScript与HTML结合的基本使用方法整理
Oct 12 PHP
PHP Yii框架之表单验证规则大全
Nov 16 PHP
PHP设置Cookie的HTTPONLY属性方法
Feb 09 PHP
[原创]php正则删除img标签的方法示例
May 27 PHP
PHP大文件分片上传的实现方法
Oct 28 PHP
PHP 枚举类型的管理与设计知识点总结
Feb 13 PHP
php中配置文件保存修改操作 如config.php文件的读取修改等操作
May 12 PHP
支持中文的php加密解密类代码
Nov 27 #PHP
php UBB 解析实现代码
Nov 27 #PHP
PHP高自定义性安全验证码代码
Nov 27 #PHP
php中XMLHttpRequest(Ajax)不能设置自定义的Referer的解决方法
Nov 26 #PHP
Linux fgetcsv取得的数组元素为空字符串的解决方法
Nov 25 #PHP
php 团购折扣计算公式
Nov 24 #PHP
php中$_REQUEST、$_POST、$_GET的区别和联系小结
Nov 23 #PHP
You might like
PHP与已存在的Java应用程序集成
2006/10/09 PHP
PHP实现递归无限级分类
2015/10/22 PHP
WordPress过滤垃圾评论的几种主要方法小结
2016/07/11 PHP
php创建类并调用的实例方法
2019/09/25 PHP
JavaScript 利用Cookie记录用户登录信息
2009/12/08 Javascript
javascript 循环读取JSON数据的代码
2010/07/17 Javascript
如何确保JavaScript的执行顺序 之实战篇
2011/03/03 Javascript
jQuery validate插件功能与用法详解
2016/12/15 Javascript
javascript数据类型详解
2017/02/07 Javascript
利用Vue实现移动端图片轮播组件的方法实例
2017/08/23 Javascript
VUE 3D轮播图封装实现方法
2018/07/03 Javascript
详解React 服务端渲染方案完美的解决方案
2018/12/14 Javascript
php结合js实现多条件组合查询
2019/05/28 Javascript
el-input 标签中密码的显示和隐藏功能的实例代码
2019/07/19 Javascript
微信小程序缓存支持二次开发封装实现解析
2019/12/16 Javascript
一篇文章看懂JavaScript中的回调
2021/01/05 Javascript
在Python中处理字符串之ljust()方法的使用简介
2015/05/19 Python
深入浅析Python中的yield关键字
2018/01/24 Python
Python使用Django实现博客系统完整版
2020/09/29 Python
python flask实现分页的示例代码
2018/08/02 Python
Python中GeoJson和bokeh-1的使用讲解
2019/01/03 Python
Python爬取YY评级分数并保存数据实现过程解析
2020/06/01 Python
python 实现关联规则算法Apriori的示例
2020/09/30 Python
python实现简单猜单词游戏
2020/12/24 Python
利用CSS3的border-radius绘制太极及爱心图案示例
2016/05/17 HTML / CSS
css3中flex布局宽度不生效的解决
2020/12/09 HTML / CSS
戴尔加拿大官网:Dell加拿大
2016/09/17 全球购物
携程英文网站:Trip.com
2017/02/07 全球购物
平安校园建设方案
2014/05/02 职场文书
第二批党的群众路线教育实践活动个人整改方案
2014/10/31 职场文书
经典导游欢迎词
2015/01/26 职场文书
高中生个性发展自我评价
2015/03/09 职场文书
2015年图书馆个人工作总结
2015/05/26 职场文书
Nginx的rewrite模块详解
2021/03/31 Servers
十大经典日本动漫排行榜 海贼王第三,犬夜叉仅第八
2022/03/18 日漫
详解Go语言中配置文件使用与日志配置
2022/06/01 Golang