Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(KUI-1369): noIndexMiddleware and noIndexMiddleware.test has been added to make sure that URL with aap*. is not indexed by google #357

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module.exports = {
setupFilesAfterEnv: ['jest-extended/all'],
testEnvironment: 'jsdom',
}
149 changes: 146 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.5",
"mini-css-extract-plugin": "^2.9.0",
"node-mocks-http": "^1.14.1",
"nodemon": "^3.1.3",
"null-loader": "^4.0.1",
"path": "^0.12.7",
Expand Down
6 changes: 6 additions & 0 deletions server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,12 @@ server.use(
})
)

/* ********************************
* ******* No index middleware ****
* ********************************
*/
server.use(require('./utils/noIndexMiddleware.js'))

/* **********************************
* ******* APPLICATION ROUTES *******
* **********************************
Expand Down
28 changes: 28 additions & 0 deletions server/utils/noIndexMiddleware.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
const { server: serverConfig } = require('../configuration')

/**
* Middleware that adds "noindex" robots header if "server host" and the request
* host ("forwarded host") doesn't match. This is done to prevent Google from
* indexing app.kth.se/* when we want the user to use www.kth.se/*
*
* The "server host" (SERVER_HOST_URL) is the primary host we expected the
* app to be hosted on (ie https://www.kth.se).
*
* The orginal host of the request is replaced with an Azure host
* (*.azurewebsites.net) before reaching our app so we look at the "forwarded
* host" ("x-forwarded-host" header) .
*
* Default, if x-forwarded-host is missing, is to do nothing.
*/
const noIndexMiddleware = function (req, res, next) {
const forwardedHost = req.header('x-forwarded-host')
if (forwardedHost) {
const serverHostUrl = new URL(serverConfig.hostUrl)
const serverHost = serverHostUrl.host
if (serverHost !== forwardedHost) {
res.set('x-robots-tag', 'noindex')
}
}
next()
}
module.exports = noIndexMiddleware
50 changes: 50 additions & 0 deletions server/utils/noIndexMiddleware.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
const httpMocks = require('node-mocks-http')

const noIndexMiddleware = require('./noIndexMiddleware')

const mockedServerHost = 'mockedserverhost.example.com'
jest.mock('../configuration', () => ({
server: { hostUrl: 'https://mockedserverhost.example.com' },
}))

describe('noIndexMiddleware', () => {
it('should not set "X-Robots-Tag" header if "X-Forwarded-Host" is missing', () => {
const next = jest.fn()
const { req, res } = httpMocks.createMocks({
headers: {},
})

noIndexMiddleware(req, res, next)

expect(res.getHeader('X-Robots-Tag')).toBeUndefined()
expect(next).toHaveBeenCalledOnce()
})

it('should not set "X-Robots-Tag" header if "X-Forwarded-Host" match SERVER_HOST_URL', () => {
const next = jest.fn()
const { req, res } = httpMocks.createMocks({
headers: {
'X-Forwarded-Host': mockedServerHost,
},
})

noIndexMiddleware(req, res, next)

expect(res.getHeader('X-Robots-Tag')).toBeUndefined()
expect(next).toHaveBeenCalledOnce()
})

it('should set "X-Robots-Tag" header if "X-Forwarded-Host" does not match SERVER_HOST_URL', () => {
const next = jest.fn()
const { req, res } = httpMocks.createMocks({
headers: {
'X-Forwarded-Host': 'anotherhost.example.com',
},
})

noIndexMiddleware(req, res, next)

expect(res.getHeader('X-Robots-Tag')).toBe('noindex')
expect(next).toHaveBeenCalledOnce()
})
})
Loading