Skip to content

Commit

Permalink
Merge pull request #129 from tumblr/will-replace-dash-in-shellscript-…
Browse files Browse the repository at this point in the history
…variables

Ensure variable names are valid POSIX names when using text/x-shellscript API endpoint.
  • Loading branch information
William Richard committed Mar 7, 2014
2 parents 2691b19 + fa749bb commit d5a28e0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/controllers/Api.scala
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ IpAddressApi with AssetStateApi with AdminApi {
"TestList" -> JsArray(List(JsNumber(1), JsNumber(2)))
)),
"TestList" -> JsArray(List(
JsObject(Seq("id" -> JsNumber(123), "name" -> JsString("foo123"))),
JsObject(Seq("id" -> JsNumber(123), "name" -> JsString("foo123"), "key-with-dash" -> JsString("val-with-dash"))),
JsObject(Seq("id" -> JsNumber(124), "name" -> JsString("foo124"))),
JsObject(Seq("id" -> JsNumber(124), "name" -> JsString("foo124")))
))
Expand Down
15 changes: 14 additions & 1 deletion app/controllers/ApiResponse.scala
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,26 @@ trait ApiResponse extends Controller {
throw new Exception("Invalid JS specified")
}
}

// formats a key to an acceptable POSIX environment variable name
def formatPosixKey(key: String): String = if (!key.isEmpty) {
val posixHeadRegex = """^[^a-zA-Z_]""".r
val posixTailRegex = """[^a-zA-Z0-9_]""".r
key.head.toString match {
case posixHeadRegex() => formatPosixKey("_" + key)
case _ => posixTailRegex.replaceAllIn(key,"_").toUpperCase
}
} else {
throw new Exception("Cannot convert an empty key into a POSIX environment variable name")
}

// FIXME
require(jsobject.isInstanceOf[JsObject], "Required a JsObject")
jsobject.asInstanceOf[JsObject].value.map { case(k, v) =>
v match {
case m: JsObject => formatBashResponse(m, "%s_".format(prefix + k))
case JsArray(list) => formatList(list, "%s_".format(prefix + k))
case o => "%s%s=%s;".format(prefix, k, formatBasic(o))
case o => "%s=%s;".format(formatPosixKey(prefix + k), formatBasic(o))
}
}.mkString("\n")
}
Expand Down
4 changes: 3 additions & 1 deletion test/controllers/ApiSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ class ApiSpec extends ApplicationSpecification with ControllerSpec {
override def expectedStatusCode = 200
override def responseMatches(txt: String): Boolean = {
txt.contains("""Data_TestList_0_name="foo123";""") &&
txt.contains("""Data_TestList_0_key_with_dash="val-with-dash";""") &&
txt.contains("""Status="Ok";""");
}
}
Expand All @@ -96,7 +97,8 @@ class ApiSpec extends ApplicationSpecification with ControllerSpec {
(jsData \ "Data").isInstanceOf[JsObject] &&
(jsData \ "Data" \ "TestList").isInstanceOf[JsArray] &&
(jsData \ "Data" \ "TestList")(0).isInstanceOf[JsObject] &&
((jsData \ "Data" \ "TestList")(0) \ "id").as[Long] == 123L
((jsData \ "Data" \ "TestList")(0) \ "id").as[Long] == 123L &&
((jsData \ "Data" \ "TestList") (0) \ "key-with-dash").as[String] == "val-with-dash"
}
}

Expand Down

0 comments on commit d5a28e0

Please sign in to comment.