mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
// Copyright (c) 2013 GPMGo Members. All rights reserved. |
|
// Use of this source code is governed by a MIT-style |
|
// license that can be found in the LICENSE file. |
|
|
|
package main |
|
|
|
import ( |
|
"fmt" |
|
"strings" |
|
|
|
"github.com/GPMGo/gpm/doc" |
|
) |
|
|
|
var cmdSearch = &Command{ |
|
UsageLine: "search [search flags] <keyword>", |
|
} |
|
|
|
func init() { |
|
cmdSearch.Run = runSearch |
|
} |
|
|
|
// printSearchPrompt prints prompt information to users to |
|
// let them know what's going on. |
|
func printSearchPrompt(flag string) { |
|
switch flag { |
|
|
|
} |
|
} |
|
|
|
func runSearch(cmd *Command, args []string) { |
|
// Check flags. |
|
num := checkFlags(cmd.Flags, config.AutoEnable.Search, args, printSearchPrompt) |
|
if num == -1 { |
|
return |
|
} |
|
args = args[num:] |
|
|
|
// Check length of arguments. |
|
if len(args) < 1 { |
|
fmt.Printf(fmt.Sprintf("%s\n", promptMsg["NoKeyword"])) |
|
return |
|
} |
|
|
|
// Search from server, and list results. |
|
results, _ := doc.HttpGetBytes(doc.HttpClient, "http://gowalker.org/search?raw=true&q="+args[0], nil) |
|
pkgs := strings.Split(string(results), "|||") |
|
for _, p := range pkgs { |
|
i := strings.Index(p, "$") |
|
if i > -1 { |
|
fmt.Println("-> " + p[:i]) // Package import path. |
|
if len(p) > (i + 1) { |
|
fmt.Println(" " + p[i+1:]) // Synopsis。 |
|
} |
|
} |
|
} |
|
}
|
|
|