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

Commit 6e7311e

Browse files
committed
Merge pull request #445 from appirio-tech/release
Release
2 parents b28a336 + ba6ac1a commit 6e7311e

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

actions/challenges.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ var PLATFORM_FILTER = ' AND EXISTS (SELECT 1 FROM project_platform pp WHERE pp.p
138138
/* Filter based on review type */
139139
var REVIEW_FILTER = ' AND EXISTS (SELECT 1 FROM project_info pi WHERE project_info_type_id = 79 AND value IN (@filter@) ' +
140140
'AND p.project_id = pi.project_id)';
141+
142+
/* Filter based on event */
143+
var EVENT_FILTER = ' AND NVL((select max(event_id) from contest_project_xref x, contest c where project_id = p.project_id and c.contest_id = x.contest_id), 0) IN (@filter@)';
141144

142145
/**
143146
* The challenge type filter for challenges api.
@@ -182,7 +185,7 @@ var MY_CHALLENGES_FILTER = 'AND EXISTS ' +
182185
var ALLOWABLE_QUERY_PARAMETER = [
183186
"listType", "challengeType", "challengeName", "projectId", SORT_COLUMN,
184187
"sortOrder", "pageIndex", "pageSize", "prizeLowerBound", "prizeUpperBound", "cmcTaskId", 'communityId',
185-
"submissionEndFrom", "submissionEndTo", "technologies", "platforms", 'review'];
188+
"submissionEndFrom", "submissionEndTo", "technologies", "platforms", 'review', 'event'];
186189

187190
/**
188191
* Represents a list of valid query parameter for split challenges api.
@@ -191,7 +194,7 @@ var ALLOWABLE_QUERY_PARAMETER = [
191194
var SPLIT_API_ALLOWABLE_QUERY_PARAMETER = [
192195
"challengeType", "challengeName", "projectId", SORT_COLUMN,
193196
"sortOrder", "pageIndex", "pageSize", "prizeLowerBound", "prizeUpperBound", 'communityId',
194-
"submissionEndFrom", "submissionEndTo", 'type', 'platforms', 'technologies', 'review'];
197+
"submissionEndFrom", "submissionEndTo", 'type', 'platforms', 'technologies', 'review', 'event'];
195198

196199
/**
197200
* Represents a predefined list of valid sort column for active challenge.
@@ -799,6 +802,11 @@ var addFilter = function (sql, filter, isMyChallenges, helper, caller) {
799802
sql.count = editSql(sql.count, REVIEW_FILTER, review);
800803
sql.data = editSql(sql.data, REVIEW_FILTER, review);
801804
}
805+
806+
if (_.isDefined(filter.event)) {
807+
sql.count = editSql(sql.count, EVENT_FILTER, filter.event);
808+
sql.data = editSql(sql.data, EVENT_FILTER, filter.event);
809+
}
802810

803811
if (isMyChallenges) {
804812
sql.count = editSql(sql.count, MY_CHALLENGES_FILTER, null);
@@ -894,7 +902,7 @@ var searchChallenges = function (api, connection, dbConnectionMap, community, ne
894902
query = connection.rawConnection.parsedURL.query,
895903
caller = connection.caller,
896904
copyToFilter = ["challengeType", "challengeName", "projectId", "prizeLowerBound",
897-
"prizeUpperBound", "cmcTaskId", 'communityId', "submissionEndFrom", "submissionEndTo", "technologies", "platforms", "review"],
905+
"prizeUpperBound", "cmcTaskId", 'communityId', "submissionEndFrom", "submissionEndTo", "technologies", "platforms", "review", "event"],
898906
sqlParams = {},
899907
filter = {},
900908
pageIndex,
@@ -3654,7 +3662,7 @@ var getChallenges = function (api, connection, listType, isMyChallenges, next) {
36543662
query = connection.rawConnection.parsedURL.query,
36553663
caller = connection.caller,
36563664
copyToFilter = ["challengeType", "challengeName", "projectId", "prizeLowerBound",
3657-
"prizeUpperBound", 'communityId', "submissionEndFrom", "submissionEndTo", 'type', 'technologies', 'platforms', 'review'],
3665+
"prizeUpperBound", 'communityId', "submissionEndFrom", "submissionEndTo", 'type', 'technologies', 'platforms', 'review', 'event'],
36583666
dbConnectionMap = connection.dbConnectionMap,
36593667
sqlParams = {},
36603668
filter = {},

actions/memberStatistics.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ function getBasicUserProfile(api, handle, privateInfoEligibility, dbConnectionMa
223223
country: basic.country,
224224
memberSince: basic.member_since,
225225
quote: basic.quote,
226-
photoLink: basic.photo_link || ''
226+
photoLink: basic.photo_link || '',
227+
copilot: basic.copilot || false
227228
};
228229

229230
if (loadData.earnings && _.isDefined(basic.show_earnings) && basic.show_earnings !== 'hide') {

queries/get_user_basic_profile_basic

+4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ SELECT
55
, co.quote
66
, p.path || i.file_name AS photo_link
77
, up.value AS show_earnings
8+
, (copilot_profile_id IS NOT NULL) as copilot
89
FROM user u
910
, coder co
11+
, OUTER copilot_profile cp
1012
, OUTER country c
1113
, OUTER(coder_image_xref cix
1214
, image i
@@ -23,3 +25,5 @@ AND i.image_type_id = 1
2325
AND i.path_id = p.path_id
2426
AND u.user_id = up.user_id
2527
AND up.preference_id = 100
28+
AND u.user_id = cp.user_id
29+
AND cp.copilot_profile_status_id = 1

0 commit comments

Comments
 (0)