mirror of https://github.com/gogits/gogs.git
Unknwon
10 years ago
19 changed files with 485 additions and 107 deletions
@ -0,0 +1,57 @@ |
|||||||
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a MIT-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package v1 |
||||||
|
|
||||||
|
import ( |
||||||
|
"path" |
||||||
|
|
||||||
|
"github.com/Unknwon/com" |
||||||
|
|
||||||
|
"github.com/gogits/gogs/models" |
||||||
|
"github.com/gogits/gogs/modules/middleware" |
||||||
|
) |
||||||
|
|
||||||
|
type repo struct { |
||||||
|
RepoLink string `json:"repolink"` |
||||||
|
} |
||||||
|
|
||||||
|
func SearchRepos(ctx *middleware.Context) { |
||||||
|
opt := models.SearchOption{ |
||||||
|
Keyword: path.Base(ctx.Query("q")), |
||||||
|
Uid: com.StrTo(ctx.Query("uid")).MustInt64(), |
||||||
|
Limit: com.StrTo(ctx.Query("limit")).MustInt(), |
||||||
|
} |
||||||
|
if opt.Limit == 0 { |
||||||
|
opt.Limit = 10 |
||||||
|
} |
||||||
|
|
||||||
|
repos, err := models.SearchRepositoryByName(opt) |
||||||
|
if err != nil { |
||||||
|
ctx.JSON(500, map[string]interface{}{ |
||||||
|
"ok": false, |
||||||
|
"error": err.Error(), |
||||||
|
}) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
results := make([]*repo, len(repos)) |
||||||
|
for i := range repos { |
||||||
|
if err = repos[i].GetOwner(); err != nil { |
||||||
|
ctx.JSON(500, map[string]interface{}{ |
||||||
|
"ok": false, |
||||||
|
"error": err.Error(), |
||||||
|
}) |
||||||
|
return |
||||||
|
} |
||||||
|
results[i] = &repo{ |
||||||
|
RepoLink: path.Join(repos[i].Owner.Name, repos[i].Name), |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
ctx.Render.JSON(200, map[string]interface{}{ |
||||||
|
"ok": true, |
||||||
|
"data": results, |
||||||
|
}) |
||||||
|
} |
@ -1,13 +0,0 @@ |
|||||||
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a MIT-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
package v1 |
|
||||||
|
|
||||||
import ( |
|
||||||
"github.com/gogits/gogs/modules/middleware" |
|
||||||
) |
|
||||||
|
|
||||||
func SearchOrgRepositoreis(ctx *middleware.Context) { |
|
||||||
|
|
||||||
} |
|
@ -0,0 +1,45 @@ |
|||||||
|
{{template "ng/base/head" .}} |
||||||
|
{{template "ng/base/header" .}} |
||||||
|
{{template "org/base/header" .}} |
||||||
|
<div id="setting-wrapper" class="main-wrapper"> |
||||||
|
<div id="team-members-list" class="container clear"> |
||||||
|
{{template "ng/base/alert" .}} |
||||||
|
{{template "org/team/sidebar" .}} |
||||||
|
<div class="grid-2-3 left"> |
||||||
|
<div class="setting-content"> |
||||||
|
<div class="panel panel-radius"> |
||||||
|
<div class="panel-header"> |
||||||
|
{{.i18n.Tr "org.teams.repositories"}} |
||||||
|
</div> |
||||||
|
{{$canAddRemove := and $.IsOrganizationOwner (not (eq $.Team.LowerName "owners"))}} |
||||||
|
<ul class="panel-body setting-list" id="team-repositories-list"> |
||||||
|
{{if $canAddRemove}} |
||||||
|
<li class="search"> |
||||||
|
<form class="form form-align" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/add" id="repo-collab-form"> |
||||||
|
{{.CsrfTokenHtml}} |
||||||
|
<input class="ipt ipt-large ipt-radius" id="org-team-repositories-add" name="repo-name" autocomplete="off" data-uid="{{.Org.Id}}" required /> |
||||||
|
<button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "org.teams.add_team_repository"}}</button> |
||||||
|
<div class="repo-user-list-block"> |
||||||
|
<ul class="menu-down-show menu-vertical menu-radius switching-list user-list" id="org-team-repositories-list"></ul> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
</li> |
||||||
|
{{end}} |
||||||
|
{{range .Team.Repos}} |
||||||
|
<li class="collab"> |
||||||
|
{{if $canAddRemove}} |
||||||
|
<a class="btn btn-small btn-red btn-radius right" href="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/remove?repoid={{.Id}}">{{$.i18n.Tr "org.teams.remove_repo"}}</a> |
||||||
|
{{end}} |
||||||
|
<a class="member" href="/{{$.Org.Name}}/{{.Name}}"> |
||||||
|
<i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> |
||||||
|
<strong>{{$.Org.Name}}/{{.Name}}</strong> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
{{end}} |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
{{template "ng/base/footer" .}} |
Loading…
Reference in new issue