OLD | NEW |
1 // Nova double testing service - HTTP API implementation | 1 // Nova double testing service - HTTP API implementation |
2 | 2 |
3 package novaservice | 3 package novaservice |
4 | 4 |
5 import ( | 5 import ( |
6 "crypto/rand" | 6 "crypto/rand" |
7 "encoding/json" | 7 "encoding/json" |
8 "fmt" | 8 "fmt" |
9 "io" | 9 "io" |
10 "io/ioutil" | 10 "io/ioutil" |
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 } | 750 } |
751 return errNotFound | 751 return errNotFound |
752 case "DELETE": | 752 case "DELETE": |
753 if group, err := n.processGroupId(w, r); group != nil { | 753 if group, err := n.processGroupId(w, r); group != nil { |
754 if err := n.removeSecurityGroup(group.Id); err != nil { | 754 if err := n.removeSecurityGroup(group.Id); err != nil { |
755 return err | 755 return err |
756 } | 756 } |
757 if n.nextGroupId > 0 { | 757 if n.nextGroupId > 0 { |
758 n.nextGroupId-- | 758 n.nextGroupId-- |
759 } | 759 } |
760 » » » writeResponse(w, http.StatusNoContent, nil) | 760 » » » writeResponse(w, http.StatusAccepted, nil) |
761 return nil | 761 return nil |
762 } else if err == errNoGroupId { | 762 } else if err == errNoGroupId { |
763 return errNotFound | 763 return errNotFound |
764 } else { | 764 } else { |
765 return err | 765 return err |
766 } | 766 } |
767 } | 767 } |
768 return fmt.Errorf("unknown request method %q for %s", r.Method, r.URL.Pa
th) | 768 return fmt.Errorf("unknown request method %q for %s", r.Method, r.URL.Pa
th) |
769 } | 769 } |
770 | 770 |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 } | 913 } |
914 for path, h := range handlers { | 914 for path, h := range handlers { |
915 path = strings.Replace(path, "$v", n.versionPath, 1) | 915 path = strings.Replace(path, "$v", n.versionPath, 1) |
916 path = strings.Replace(path, "$t", n.tenantId, 1) | 916 path = strings.Replace(path, "$t", n.tenantId, 1) |
917 if !strings.HasSuffix(path, "/") { | 917 if !strings.HasSuffix(path, "/") { |
918 mux.Handle(path+"/", h) | 918 mux.Handle(path+"/", h) |
919 } | 919 } |
920 mux.Handle(path, h) | 920 mux.Handle(path, h) |
921 } | 921 } |
922 } | 922 } |
OLD | NEW |