func NewRouter(mx muxer, mom mother, config Config) http.Handler { registrar := mom.Registrar() notificationsFinder := mom.NotificationsFinder() emailStrategy := mom.EmailStrategy() userStrategy := mom.UserStrategy() spaceStrategy := mom.SpaceStrategy() organizationStrategy := mom.OrganizationStrategy() everyoneStrategy := mom.EveryoneStrategy() uaaScopeStrategy := mom.UAAScopeStrategy() notifyObj := notify.NewNotify(mom.NotificationsFinder(), registrar) preferencesFinder := mom.PreferencesFinder() preferenceUpdater := mom.PreferenceUpdater() templateCreator, templateFinder, templateUpdater, templateDeleter, templateLister, templateAssigner, templateAssociationLister := mom.TemplateServiceObjects() notificationsUpdater := mom.NotificationsUpdater() messageFinder := mom.MessageFinder() errorWriter := webutil.NewErrorWriter() requestCounter := middleware.NewRequestCounter(mx.GetRouter(), metrics.DefaultLogger) logging := middleware.NewRequestLogging(config.Logger) notificationsWriteAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notifications.write") notificationsManageAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notifications.manage") notificationPreferencesReadAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notification_preferences.read") notificationPreferencesWriteAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notification_preferences.write") notificationPreferencesAdminAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notification_preferences.admin") emailsWriteAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "emails.write") notificationsTemplateWriteAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notification_templates.write") notificationsTemplateReadAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notification_templates.read") notificationsWriteOrEmailsWriteAuthenticator := middleware.NewAuthenticator(config.UAAPublicKey, "notifications.write", "emails.write") databaseAllocator := middleware.NewDatabaseAllocator(mom.SQLDatabase(), config.DBLoggingEnabled) cors := middleware.NewCORS(config.CORSOrigin) info.Routes{ RequestCounter: requestCounter, RequestLogging: logging, }.Register(mx) preferences.Routes{ CORS: cors, RequestCounter: requestCounter, RequestLogging: logging, DatabaseAllocator: databaseAllocator, NotificationPreferencesReadAuthenticator: notificationPreferencesReadAuthenticator, NotificationPreferencesWriteAuthenticator: notificationPreferencesWriteAuthenticator, NotificationPreferencesAdminAuthenticator: notificationPreferencesAdminAuthenticator, ErrorWriter: errorWriter, PreferencesFinder: preferencesFinder, PreferenceUpdater: preferenceUpdater, }.Register(mx) clients.Routes{ RequestCounter: requestCounter, RequestLogging: logging, DatabaseAllocator: databaseAllocator, NotificationsManageAuthenticator: notificationsManageAuthenticator, ErrorWriter: errorWriter, TemplateAssigner: templateAssigner, }.Register(mx) messages.Routes{ RequestCounter: requestCounter, RequestLogging: logging, DatabaseAllocator: databaseAllocator, NotificationsWriteOrEmailsWriteAuthenticator: notificationsWriteOrEmailsWriteAuthenticator, ErrorWriter: errorWriter, MessageFinder: messageFinder, }.Register(mx) templates.Routes{ RequestCounter: requestCounter, RequestLogging: logging, DatabaseAllocator: databaseAllocator, NotificationTemplatesReadAuthenticator: notificationsTemplateReadAuthenticator, NotificationTemplatesWriteAuthenticator: notificationsTemplateWriteAuthenticator, NotificationsManageAuthenticator: notificationsManageAuthenticator, ErrorWriter: errorWriter, TemplateFinder: templateFinder, TemplateUpdater: templateUpdater, TemplateCreator: templateCreator, TemplateDeleter: templateDeleter, TemplateLister: templateLister, TemplateAssociationLister: templateAssociationLister, }.Register(mx) notifications.Routes{ RequestCounter: requestCounter, RequestLogging: logging, DatabaseAllocator: databaseAllocator, NotificationsWriteAuthenticator: notificationsWriteAuthenticator, NotificationsManageAuthenticator: notificationsManageAuthenticator, ErrorWriter: errorWriter, Registrar: registrar, NotificationsFinder: notificationsFinder, NotificationsUpdater: notificationsUpdater, TemplateAssigner: templateAssigner, }.Register(mx) notify.Routes{ RequestCounter: requestCounter, RequestLogging: logging, NotificationsWriteAuthenticator: notificationsWriteAuthenticator, DatabaseAllocator: databaseAllocator, EmailsWriteAuthenticator: emailsWriteAuthenticator, ErrorWriter: errorWriter, Notify: notifyObj, UserStrategy: userStrategy, SpaceStrategy: spaceStrategy, OrganizationStrategy: organizationStrategy, EveryoneStrategy: everyoneStrategy, UAAScopeStrategy: uaaScopeStrategy, EmailStrategy: emailStrategy, }.Register(mx) return mx }
. "github.com/onsi/gomega" ) var _ = Describe("Authenticator", func() { var ( ware middleware.Authenticator request *http.Request writer *httptest.ResponseRecorder rawToken string context stack.Context ) BeforeEach(func() { var err error ware = middleware.NewAuthenticator(application.UAAPublicKey, "fake.scope", "gaben.scope") writer = httptest.NewRecorder() request, err = http.NewRequest("GET", "/some/path", nil) if err != nil { panic(err) } context = stack.NewContext() }) Context("when the request contains a valid auth token", func() { BeforeEach(func() { tokenHeader := map[string]interface{}{ "alg": "FAST", } tokenClaims := map[string]interface{}{ "jti": "c5f6a266-5cf0-4ae2-9647-2615e7d28fa1",