Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
util
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘旋尧
util
Commits
5d69cb4f
Commit
5d69cb4f
authored
Jul 29, 2016
by
usual2970
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
静态资源同步到又拍云
parent
2078ddfd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
143 additions
and
62 deletions
+143
-62
repo.go
git-module/repo.go
+3
-3
app.conf
service/conf/app.conf
+5
-0
git.go
service/controllers/git.go
+38
-59
test.log
service/test.log
+97
-0
No files found.
git-module/repo.go
View file @
5d69cb4f
...
...
@@ -111,7 +111,7 @@ type PullRemoteOptions struct {
}
// Pull pulls changes from remotes.
func
Pull
(
repoPath
string
,
opts
PullRemoteOptions
)
error
{
func
Pull
(
repoPath
string
,
opts
PullRemoteOptions
)
([]
byte
,
error
)
{
cmd
:=
NewCommand
(
"pull"
)
if
opts
.
All
{
cmd
.
AddArguments
(
"--all"
)
...
...
@@ -121,8 +121,8 @@ func Pull(repoPath string, opts PullRemoteOptions) error {
opts
.
Timeout
=
-
1
}
_
,
err
:=
cmd
.
RunInDirTimeout
(
opts
.
Timeout
,
repoPath
)
return
err
info
,
err
:=
cmd
.
RunInDirTimeout
(
opts
.
Timeout
,
repoPath
)
return
info
,
err
}
// Push pushs local commits to given remote branch.
...
...
service/conf/app.conf
View file @
5d69cb4f
...
...
@@ -2,3 +2,8 @@ appname = service
httpport
=
8080
runmode
=
dev
copyrequestbody
=
true
autorender
=
false
upusername
=
ydl
uppassword
=
ydl123com
upbucket
=
staticydl
service/controllers/git.go
View file @
5d69cb4f
...
...
@@ -2,9 +2,12 @@ package controllers
import
(
"github.com/astaxie/beego"
//
"github.com/usual2970/util/git-module"
"github.com/usual2970/util/git-module"
"github.com/astaxie/beego/logs"
"github.com/pquerna/ffjson/ffjson"
"regexp"
"fmt"
"github.com/upyun/go-sdk/upyun"
"os"
)
type
GitController
struct
{
...
...
@@ -30,63 +33,39 @@ type PData struct{
* @return {[type]} [description]
*/
func
(
c
*
GitController
)
Hook
()
{
resp
:=&
HookInfo
{}
//ffjson.Unmarshal(c.Ctx.Input.RequestBody,resp)
pc
:=
c
.
Ctx
.
Input
.
RequestBody
log
.
Info
(
string
(
pc
))
ffjson
.
Unmarshal
(
pc
,
resp
)
log
.
Info
(
resp
.
HookName
)
// str:=`{
// "password": "hod20x4hnkecy63",
// "hook_name": "push_hooks",
// "push_data": {
// "before": "26c9fb3533d1c63e3b822d58a8831b1caf6d9cd7",
// "after": "219aa13d45276a5cae7436ecc66053da67ec2a2d",
// "ref": "refs/heads/master",
// "user_id": 449815,
// "user_name": "gitlabu6d4bu8bd5u8d26u53f72",
// "user": {
// "id": 449815,
// "email": "gitlabtest_2@gitlab.com",
// "name": "gitlabu6d4bu8bd5u8d26u53f72",
// "time": "2015-11-06T14:51:55+08:00"
// },
// "repository": {
// "name": "test_gitosc_20151106145021322",
// "url": "git@git.oschina.net:gitlab_test_1/test_gitosc_20151106145021322.git",
// "description": "test_gitosc_20151106145021322 testting",
// "homepage": "http://git.oschina.net/gitlab_test_1/test_gitosc_20151106145021322"
// },
// "commits": [
// {
// "id": "219aa13d45276a5cae7436ecc66053da67ec2a2d",
// "message": "commit_access_test",
// "timestamp": "2015-11-06T14:50:47+08:00",
// "url": "http://git.oschina.net/gitlab_test_1/test_gitosc_20151106145021322/commit/219aa13d45276a5cae7436ecc66053da67ec2a2d",
// "author": {
// "name": "gitlab_test_2",
// "email": "gitlabtest_2@gitlab.com",
// "time": "2015-11-06T14:50:47+08:00"
// }
// }
// ],
// "total_commits_count": 1,
// "commits_more_than_ten": false
// }
// }`
// resp:=&HookInfo{}
// ffjson.Unmarshal([]byte(str),resp)
// println(resp.PushData.Before)
// rs,_:=git.Diff("/var/www/ydl","bba21848d31031eaf975c1ee858274a9f64a5dd6","b304de0b79cb113ce8ac6f139fcf1d204f476c50")
// log.Info(rs)
c
.
ServeJSON
()
repoPath
:=
"/var/www/worry/"
options
:=
git
.
PullRemoteOptions
{
false
,
0
}
info
,
_
:=
git
.
Pull
(
repoPath
,
options
)
re
:=
regexp
.
MustCompile
(
"
\\
s+(.*)
\\
s+
\\
|
\\
s+
\\
d+
\\
s.*
\n
"
)
upList
:=
re
.
FindAllStringSubmatch
(
string
(
info
),
-
1
)
up
:=
upyun
.
NewUpYun
(
beego
.
AppConfig
.
String
(
"upbucket"
),
beego
.
AppConfig
.
String
(
"upusername"
),
beego
.
AppConfig
.
String
(
"uppassword"
))
if
len
(
upList
)
>
0
{
for
_
,
v
:=
range
upList
{
fd
,
_
:=
os
.
Open
(
repoPath
+
v
[
1
])
_
,
err
:=
up
.
Put
(
"/"
+
v
[
1
],
fd
,
false
,
nil
)
if
err
!=
nil
{
fmt
.
Println
(
err
)
}
fmt
.
Println
(
v
[
1
])
}
}
crRe
:=
regexp
.
MustCompile
(
"
\\
s+create
\\
s+mode
\\
s+
\\
d+
\\
s+([^
\\
s]*)"
)
crList
:=
crRe
.
FindAllStringSubmatch
(
string
(
info
),
-
1
)
if
len
(
crList
)
>
0
{
for
_
,
cr
:=
range
crList
{
fd
,
_
:=
os
.
Open
(
repoPath
+
cr
[
1
])
up
.
Put
(
"/"
+
cr
[
1
],
fd
,
false
,
nil
)
fmt
.
Println
(
cr
[
1
])
}
}
log
.
Info
(
string
(
info
))
}
...
...
service/test.log
View file @
5d69cb4f
...
...
@@ -2063,3 +2063,100 @@ index 3fd94c7..da99ca0 100644
2016/07/29 12:35:45 [I]
2016/07/29 12:35:46 [I] asdfasdfadfasdfadfadf
2016/07/29 12:35:46 [I]
2016/07/29 12:46:29 [I]
2016/07/29 12:46:29 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:30 [I]
2016/07/29 12:46:31 [I]
2016/07/29 12:46:31 [I]
2016/07/29 12:46:31 [I]
2016/07/29 12:46:31 [I]
2016/07/29 12:46:41 [I]
2016/07/29 12:46:41 [I]
2016/07/29 12:46:42 [I]
2016/07/29 12:46:42 [I]
2016/07/29 12:46:42 [I]
2016/07/29 12:46:42 [I]
2016/07/29 12:46:42 [I]
2016/07/29 12:46:42 [I]
2016/07/29 12:46:43 [I]
2016/07/29 12:46:43 [I]
2016/07/29 12:46:44 [I]
2016/07/29 12:46:44 [I]
2016/07/29 12:46:47 [I]
2016/07/29 12:46:47 [I]
2016/07/29 13:30:08 [I] Updating a328265..3dcefe7
Fast-forward
m/themes/mobile/views/baidu/index.php | 30 +++++++++++++++---------------
m/themes/mobile/views/baidu/index2.php | 30 +++++++++++++++---------------
www/protected/views/index/index3.php | 4 ++--
3 files changed, 32 insertions(+), 32 deletions(-)
2016/07/29 14:05:28 [I] Already up-to-date.
2016/07/29 14:06:41 [I] Already up-to-date.
2016/07/29 14:15:50 [I] Already up-to-date.
2016/07/29 14:19:38 [I] Updating dc46faa..2be13d4
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 14:20:56 [I] Updating 2be13d4..16ec843
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 14:24:28 [I] Updating 16ec843..2e0c7fb
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 14:26:19 [I] Updating 2e0c7fb..6ace840
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 15:15:35 [I] Already up-to-date.
2016/07/29 15:17:49 [I] Updating 6ace840..8c9df74
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 15:20:50 [I] Updating 8c9df74..08eb823
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 15:20:51 [I] Already up-to-date.
2016/07/29 15:22:19 [I] Updating 08eb823..15f0edb
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 15:28:27 [I] Updating 15f0edb..76ac97d
Fast-forward
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
2016/07/29 15:30:06 [I] Updating 76ac97d..c21ebab
Fast-forward
test.haha | 1 +
1 file changed, 1 insertion(+)
create mode 100644 test.haha
2016/07/29 15:31:31 [I] Updating c21ebab..6663109
Fast-forward
test.hahl | 1 +
1 file changed, 1 insertion(+)
create mode 100644 test.hahl
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment