Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit d74851b

Browse files
author
vikasrohit
authored
Merge pull request #219 from appirio-tech/feature/member_search_endpoint_switch
Github issue#901, Switch topcoder app to member service search URLs instead of internal-api (lambda)
2 parents 5af60f2 + 2e7be76 commit d74851b

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

src/actions/loadMemberSearch.spec.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import thunk from 'redux-thunk'
44
import nock from 'nock'
55
import { initialState } from '../reducers/memberSearch.js'
66
import { initialState as searchTermInitialState } from '../reducers/searchTerm.js'
7-
import { INTERNAL_API } from '../config/constants.js'
7+
import { V3_API } from '../config/constants.js'
88

99
import {
1010
loadMemberSearch, checkIfSearchTermIsATag,
@@ -35,15 +35,15 @@ describe('loadMemberSearch Actions:', () => {
3535
const topMemberResults = ['topMember1', 'topMember2']
3636

3737
const mockSuccessfulTagAPICall = () => {
38-
nock(INTERNAL_API)
38+
nock(V3_API)
3939
.get(/\/tags/)
4040
.reply(200, { result: {
4141
content: [mockTag]
4242
}})
4343
}
4444

4545
const mockSuccessfulUsernameMatchesAPICall = () => {
46-
nock(INTERNAL_API)
46+
nock(V3_API)
4747
.get(/\/members\/_search/)
4848
.reply(200, { result: {
4949
content: usernameMatchResults,
@@ -52,7 +52,7 @@ describe('loadMemberSearch Actions:', () => {
5252
}
5353

5454
const mockSuccessfulTopMembersAPICall = () => {
55-
nock(INTERNAL_API)
55+
nock(V3_API)
5656
.get(/\/leaderboards\/\?filter/)
5757
.reply(200, { result: { content: topMemberResults } })
5858
}
@@ -71,7 +71,7 @@ describe('loadMemberSearch Actions:', () => {
7171
}
7272
})
7373

74-
nock(INTERNAL_API)
74+
nock(V3_API)
7575
.get(/\/tags/)
7676
.reply(200, { result: { content: [] }})
7777

@@ -166,7 +166,7 @@ describe('loadMemberSearch Actions:', () => {
166166
it('calls memberSearchFailure when the request fails', () => {
167167
const store = mockStore({ memberSearch: initialState })
168168

169-
nock(INTERNAL_API)
169+
nock(V3_API)
170170
.get(/\/tags/)
171171
.reply(500, 'failure')
172172

@@ -209,7 +209,7 @@ describe('loadMemberSearch Actions:', () => {
209209
it(`dispatches ${MEMBER_SEARCH_FAILURE} when the request fails`, () => {
210210
const store = mockStore({ memberSearch: initialState })
211211

212-
nock(INTERNAL_API)
212+
nock(V3_API)
213213
.get(/\/members\/_search/)
214214
.reply(500, 'failure')
215215

@@ -247,7 +247,7 @@ describe('loadMemberSearch Actions:', () => {
247247
it('calls memberSearchFailure when the request fails', () => {
248248
const store = mockStore({ memberSearch: initialState })
249249

250-
nock(INTERNAL_API)
250+
nock(V3_API)
251251
.get(/\/leaderboards.*/)
252252
.reply(500, 'failure')
253253

src/config/constants.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ export const TOP_MEMBER_SEARCH_SUCCESS = 'TOP_MEMBER_SEARCH_SUCCESS'
2121

2222
export const DOMAIN = process.env.domain || 'topcoder.com'
2323

24-
// FIXME: Change to process.env.INTERNAL_API after added to webpack
25-
export const INTERNAL_API = `https://internal-api.${DOMAIN}/v3`
24+
export const V3_API = `https://api.${DOMAIN}/v3`
2625

27-
export const memberSearchTagUrl = `${INTERNAL_API}/tags/`
26+
export const memberSearchTagUrl = `${V3_API}/tags/`
2827

29-
export const memberSearchUrl = `${INTERNAL_API}/members/_search/`
28+
export const memberSearchUrl = `${V3_API}/members/_search/`
3029
export const challengeSearchUrl = 'https://ol348e2ya5.execute-api.us-east-1.amazonaws.com/dev'
3130

32-
export const leaderboardUrl = `${INTERNAL_API}/leaderboards/`
31+
export const leaderboardUrl = `${V3_API}/leaderboards/`

src/helpers/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,5 +278,5 @@ export function mapTagToLeaderboardType(tagDomain) {
278278
SKILLS: 'MEMBER_SKILL'
279279
}
280280

281-
return tagToLeaderboardTypeMap[tagDomain]
281+
return tagDomain ? tagToLeaderboardTypeMap[tagDomain.toUpperCase()] : null
282282
}

0 commit comments

Comments
 (0)