RIFT OSM R1 Initial Submission
[osm/SO.git] / examples / ping_pong_ns / ping_pong_ns / util / util.py
1 #
2 # Copyright 2016 RIFT.IO Inc
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 from datetime import date
18 import urlparse
19
20 import tornado.web
21
22 class VersionHandler(tornado.web.RequestHandler):
23 def initialize(self, instance):
24 self._instance = instance
25
26 def get(self):
27 response = { 'version': '3.5.1',
28 'last_build': date.today().isoformat() }
29 self.write(response)
30
31 def get_url_target(url):
32 is_operation = False
33 url_parts = urlparse.urlsplit(url)
34 whole_url = url_parts[2]
35
36 url_pieces = whole_url.split("/")
37
38 return url_pieces[-1]