aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/src/cmd/query.go
blob: bf678b19f4dc06dc4cee9ca8de606a6cec9312e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// vespa query command
// author: bratseth

package cmd

import (
    "bufio"
    "errors"
    "github.com/spf13/cobra"
    "github.com/vespa-engine/vespa/utils"
    "strings"
    "net/http"
    "net/url"
    "time"
)

func init() {
    rootCmd.AddCommand(queryCmd)
}

var queryCmd = &cobra.Command{
    Use:   "query",
    Short: "Issue a query to Vespa",
    Long:  `TODO, example  \"yql=select from sources * where title contains 'foo'\" hits=5`,
    // TODO: Support referencing a query json file
    Args: func(cmd *cobra.Command, args []string) error {
        if len(args) < 1 {
            return errors.New("vespa query requires at least one argument containing the query string")
        }
        return nil
    },
    Run: func(cmd *cobra.Command, args []string) {
        query(args)
    },
}

func query(arguments []string) {
    url, _ := url.Parse(getTarget(queryContext).query + "/search/")
    urlQuery := url.Query()
    for i := 0; i < len(arguments); i++ {
        key, value := splitArg(arguments[i])
        urlQuery.Set(key, value)
    }
    url.RawQuery = urlQuery.Encode()

    response := utils.HttpDo(&http.Request{URL: url,}, time.Second * 10, "Container")
    if (response == nil) {
        return
    }
    defer response.Body.Close()

    if (response.StatusCode == 200) {
        // TODO: Pretty-print body
        scanner := bufio.NewScanner(response.Body)
        for ;scanner.Scan(); {
            utils.Print(scanner.Text())
        }
        if err := scanner.Err(); err != nil {
            utils.Error(err.Error())
        }
    } else if response.StatusCode % 100 == 4 {
        utils.Error("Invalid query (status ", response.Status, ")")
        utils.Detail()
    } else {
        utils.Error("Request failed")
        utils.Detail(response.Status)
    }
}

func splitArg(argument string) (string, string) {
    equalsIndex := strings.Index(argument, "=")
    if equalsIndex < 1 {
        return "yql", argument
    } else {
        return argument[0:equalsIndex], argument[equalsIndex + 1:len(argument)]
    }
}