This protocol, initially implemented for LiveJournal but applicable elsewhere, provides a machine-friendly interface to an S2 system on a remote server. The protocol is just HTTP, so you can implement it using any suitable HTTP library, including the Perl LWP library.
General Rules A new Content-type value is introduced for S2 layers, named application/x-danga-s2-layer. This is used both in server responses and client layer uploads.
Requests When making a request to the S2 interface, you can authenticate with the remote server using either HTTP Digest authentication Refer to RFC 2617 for more information. or some site-specific authentication method. On LiveJournal, session cookies are supported. The request URL will vary between applications. On LiveJournal it can be found at /interface/s2. The same URL is used for both retrieval and updating; the method used defines the action the server will take. On LiveJournal, that URL wil be /interface/s2/layerid. How you find the correct layerid is outside the scope of this specification.
Responses When parsing response bodies, consider only ASCII character 10 (newline, \n) to indicate a newline. Disregard any occurances of ASCII 13 (carriage return, \r). Error responses will have an HTTP error code and have a plain text response body. This will contain a short error message, then a newline, then a longer error message also followed by a newline, and optionally other data which you may wish to display. If the response is not in the expected format (ie, content-type does not indicate a plain text response) clients should simply explain that the server has returned an invalid response and that this might be temporary or due to an incorrect URL. Even in the case of an unparsable body, the HTTP response code can be used to infer the nature of the error. You should be prepared to accept any HTTP response code and treat it as the HTTP spec describes. This includes the redirection codes. You are advised to use a full HTTP library, which is available for most languages, to make your requests rather than hacking up flakey HTTP code which assumes everything will always work in a particular way. An exception to this rule is that the 403 Forbidden response is defined in HTTP to indicate that "authentication will not help", but this protocol also allows for it to describe the condition where authentication credentials are given but the given account has no access to whatever was being retrieved. This slight quirk is made under the assumption that many clients for this protocol will be non-interactive and launched as tools from text editors, and prompting for alternative credentials would be impossible.
Retrieve Layer Source In order to get the S2 source of a layer for local editing, a simple GET request is sufficient: GET /interface/s2/1 HTTP/1.0 Host: www.livejournal.com Accept: application/x-danga-s2-layer In addition to the basic headers shown above, some form of authentication can be used. See the HTTP specification for documentation on Basic authentication. Anonymous requests are allowed, but the server may respond with 401 Unauthorized, describing the standard HTTP authentication methods supported. Some servers, as described above, may implement "special" authentication methods, such as LiveJournal supporting website session cookies. These are not described (in a machine-readable way, at least) in the Unauthorized response. Client authors are strongly advised to send the Accept header, as in the future other formats may be supported and the server will be able to see which format you are expecting and either honour your request or return the response Unnacceptable if S2 layer source as we know it now is unavailable. If the response is an error, the response body will contain a short error and then a longer error separated by a newline character, plus optionally further error lines which you may wish to display if they are present. The HTTP response code will give you some idea of the nature of the error. If the response is successful (response code is 200 OK), and the content-type is application/x-danga-s2-layer, you will find S2 source in the response body. As with error responses, you should consider only ASCII 10 (\n) to mean newline. Disregard ASCII 13 (\r). You may transform the returned \n characters to the local newline representation for output if you wish.
Upload a Layer This mechanism can only be used to update an existing layer. This version of the protocol does not allow for new layers to be created via the interface. The S2 application will provide some mechanism, probably human-oriented, to do this. Uploading is done via an HTTP PUT request. The URL is the same used to retrieve the given layer. PUT /interface/s2/1 HTTP/1.0 Host: www.livejournal.com Content-Length: 65 Content-Type: application/x-danga-s2-layer layerinfo "type" = "layout"; layerinfo "name" = "Upload Example"; ... If the given layer is an acceptable replacement for the layer indicated, the server will respond with either 201 Created, which means that the layer is accepted and has been updated on the system, or 202 Accepted, indicating that the layer was acceptable but the system will not instantly replace the existing layer with it for reasons unspecified. The server can also respond with any HTTP error code. The code 500 is used to indicate that the server is unable to accept the layer. If this is due to a layer compile error, the error will be given in the optional part of the error response after the short and long error descriptions. Optional Client Features A client with access to a local S2 compiler may wish to perform a syntax check on the layer to be uploaded to avoid a round-trip to the server for a syntax problem which could be resolved locally. However, an option to override this should be provided to allow for future changes to S2 syntax which may cause parse errors in older versions of the compiler. It is not advisable for the local client to attempt the checker phase of compilation, as this is slow and local copies of parent layers will frequently become out of date with that on the server.