forked from unicode-org/cldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLDR-16499 Prepare to Require a CLA for contributions (unicode-org#3653)
- Loading branch information
Showing
17 changed files
with
562 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import * as cldrClient from "../esm/cldrClient.mjs"; | ||
import * as cldrNotify from "../esm/cldrNotify.mjs"; | ||
/** | ||
* see ClaSignature.java | ||
* @typedef {Object} ClaSignature | ||
* @property {boolean} corporate true if a corporate signature | ||
* @property {string} email | ||
* @property {string} employer | ||
* @property {string} name | ||
* @property {boolean} unauthorized true if cla load failed | ||
* @property {boolean} readonly true if cla may not be modified | ||
* @property {boolean} signed true if signed, always true when returned from getCla() | ||
*/ | ||
|
||
/** @return {ClaSignature} signed cla if present otherwise null if not accessible */ | ||
export async function getCla() { | ||
try { | ||
const client = await cldrClient.getClient(); | ||
const { body } = await client.apis.user.getCla(); | ||
return body; | ||
} catch (e) { | ||
if (e.statusCode === 401) { | ||
return { unauthorized: true }; | ||
} else if (e.statusCode === 404) { | ||
return { signed: false }; | ||
} else { | ||
cldrNotify.exception(e, `trying to load CLA`); | ||
throw e; | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Attempt to sign. | ||
* @throws {statusCode: 423} if the CLA may not be modified | ||
* @throws {statusCode: 406} if there is an imput validation error | ||
* @param {ClaSignature} cla | ||
* @returns nothing if successful | ||
*/ | ||
export async function signCla(cla) { | ||
const client = await cldrClient.getClient(); | ||
const result = await client.apis.user.signCla( | ||
{}, | ||
{ | ||
requestBody: cla, | ||
} | ||
); | ||
} | ||
|
||
/** | ||
* Attempt to revoke. | ||
* @throws {statusCode: 423} if the CLA may not be modified | ||
* @throws {statusCode: 404} if the CLA was never signed | ||
*/ | ||
export async function revokeCla() { | ||
const client = await cldrClient.getClient(); | ||
const result = await client.apis.user.revokeCla(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# CLA not needed | ||
|
||
The SurveyTool is not currently requiring a CLA. | ||
For more details about the CLA, see [policy](https://www.unicode.org/policies/licensing_policy.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.