sonargo

package module
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 29, 2018 License: Apache-2.0 Imports: 0 Imported by: 0

README

sonargo

GitHub version GoDoc

Client of sonarqube api in golang

Compatibility

As sonarqube api is updated frequently, this client only support v7.4. Forward compatibility is currrently not guaranteed in this version (To be done).

Usage

import github.com/magicsong/sonargo/sonar

Construct a new Sonarqube client, then use the various services on the client to access different parts of the Sonarqube API. For example, to list all projects:

sonarURL := os.Getenv("SONAR_URL")
if sonarURL == "" {
    fmt.Println("Sonar URL has not been set")
    os.Exit(1)
}
client, err := sonargo.NewClient(sonarURL+"/api", "user", "password")
if err != nil {
    fmt.Println(err.Error())
    os.Exit(1)
}
//set options
opt := &ProjectsSearchOption{
    AnalyzedBefore:    "",
    OnProvisionedOnly: "",
    P:                 "",
    ProjectIds:        "",
    Projects:          "",
    Ps:                "",
    Q:                 "",
    Qualifiers:        "",
}
v, _, err := client.Projects.Search(opt)
if err != nil {
    fmt.Println(err.Error())
    os.Exit(1)
}
fmt.Print(v.Components[0])

Other services is also like Projects, using following steps:

  1. Get a client by use NewClient()
  2. Get the service by simply using dot. The service name is CamelCase of the name in sonarqube api
  3. Use functions of each service to do what you want to do

Notes

  • Most code in first release version is generated by code. So some naming is not suitable. See generate-go-for-sonarqube
  • Sonarqube community does not build a v7.4 docker image for public, so a v7.4 dockerfile is provided in build folder.

ToDo

  • Add godoc for each api
  • Add more tests
  • test forward compatibility

Author

宋雪涛 (Xuetao Song, magicsong@yunify.com)

Licence

Copyright 2018 MagicSong

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Get information on Compute Engine tasks.
Get information on Compute Engine tasks.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL