aboutsummaryrefslogtreecommitdiff
path: root/plugins/sonatype-release/src/sonatype/HttpUtils.scala
blob: 9d2374431a2b98cdf675be9b6ec7b50c6582add0 (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
package cbt.sonatype

import java.net.URL

import cbt.Stage0Lib

import scala.annotation.tailrec
import scala.util.{ Failure, Success, Try }

private[sonatype] object HttpUtils {
  // Make http GET. On failure request will be retried with exponential backoff.
  def GET(uri: String, headers: Map[String, String]): (Int, String) =
  withRetry(httpRequest("GET", uri, headers))

  // Make http POST. On failure request will be retried with exponential backoff.
  def POST(uri: String, body: Array[Byte], headers: Map[String, String]): (Int, String) =
  withRetry(httpRequest("POST", uri, headers, body))

  private def httpRequest(method: String, uri: String, headers: Map[String, String], body: Array[Byte] = Array.emptyByteArray): (Int, String) = {
    val conn = Stage0Lib.openConnectionConsideringProxy(new URL(uri))
    conn.setReadTimeout(60000) // 1 minute
    conn.setConnectTimeout(30000) // 30 seconds

    headers foreach { case (k,v) =>
      conn.setRequestProperty(k, v)
    }
    conn.setRequestMethod(method)
    if(method == "POST" || method == "PUT") { // PATCH too?
      conn.setDoOutput(true)
      conn.getOutputStream.write(body)
    }

    val arr = new Array[Byte](conn.getContentLength)
    conn.getInputStream.read(arr)

    conn.getResponseCode -> new String(arr)
  }

  // ============== General utilities

  def withRetry[T](f: => T): T = withRetry(4000, 5)(f)

  /**
    * Retry execution of `f` `retriesLeft` times
    * with `delay` doubled between attempts.
    */
  @tailrec
  def withRetry[T](delay: Int, retriesLeft: Int)(f:  T): T = {
    Try(f) match {
      case Success(result) 
        result
      case Failure(e) 
        if (retriesLeft == 0) {
          throw new Exception(e)
        } else {
          val newDelay = delay * 2
          val newRetries = retriesLeft - 1
//          log(s"Failed with exception: $e, will retry $newRetries times; waiting: $delay")
          Thread.sleep(delay)

          withRetry(newDelay, newRetries)(f)
        }
    }
  }
}