Feature 10908: Update Charms in Running VNF instances
[osm/NBI.git] / osm_nbi / nbi.py
index 67cf58b..29fcacd 100644 (file)
@@ -86,6 +86,7 @@ URL: /osm                                                       GET     POST
                     action                                              O
                     scale                                               O5
                     heal                                                5
+                    update                                              05
             /ns_lcm_op_occs                                     5       5
                 /<nsLcmOpOccId>                                 5                       5       5
                     TO BE COMPLETED                             5               5
@@ -447,6 +448,10 @@ valid_url_methods = {
                         "METHODS": ("POST",),
                         "ROLE_PERMISSION": "ns_instances:id:action:",
                     },
+                    "update": {
+                        "METHODS": ("POST",),
+                        "ROLE_PERMISSION": "ns_instances:id:update:",
+                    },
                 },
             },
             "ns_lcm_op_occs": {
@@ -953,7 +958,12 @@ class Server(object):
             self._set_location_header("admin", "v1", "tokens", outdata["_id"])
             # for logging
             self._format_login(token_info)
-
+            # password expiry check
+            if self.authenticator.check_password_expiry(outdata):
+                outdata = {"id": outdata["id"],
+                           "message": "change_password",
+                           "user_id": outdata["user_id"]
+                           }
             # cherrypy.response.cookie["Authorization"] = outdata["id"]
             # cherrypy.response.cookie["Authorization"]['expires'] = 3600
         elif method == "DELETE":