forked from Mirrors/doipjs
clickable links
This commit is contained in:
parent
8466ef934e
commit
cbeefbc909
1 changed files with 13 additions and 9 deletions
|
@ -15,7 +15,7 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
const E = require('../enums')
|
const E = require('../enums')
|
||||||
|
|
||||||
const reURI = /^tg:user=([a-zA-Z0-9_]{5,32})&chat=([a-zA-Z0-9_]{5,32})/
|
const reURI = /https:\/\/t.me\/([A-Za-z0-9_]{5,32})\?user=([A-Za-z0-9_]{5,32})/
|
||||||
|
|
||||||
const processURI = (uri) => {
|
const processURI = (uri) => {
|
||||||
const match = uri.match(reURI)
|
const match = uri.match(reURI)
|
||||||
|
@ -30,8 +30,8 @@ const processURI = (uri) => {
|
||||||
isAmbiguous: false
|
isAmbiguous: false
|
||||||
},
|
},
|
||||||
profile: {
|
profile: {
|
||||||
display: `@${match[1]}`,
|
display: `@${match[2]}`,
|
||||||
uri: `https://t.me/${match[1]}`,
|
uri: `https://t.me/${match[2]}`,
|
||||||
qr: null
|
qr: null
|
||||||
},
|
},
|
||||||
proof: {
|
proof: {
|
||||||
|
@ -41,8 +41,8 @@ const processURI = (uri) => {
|
||||||
access: E.ProofAccess.GRANTED,
|
access: E.ProofAccess.GRANTED,
|
||||||
format: E.ProofFormat.JSON,
|
format: E.ProofFormat.JSON,
|
||||||
data: {
|
data: {
|
||||||
user: match[1],
|
chat: match[1],
|
||||||
chat: match[2]
|
user: match[2]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -56,19 +56,23 @@ const processURI = (uri) => {
|
||||||
|
|
||||||
const tests = [
|
const tests = [
|
||||||
{
|
{
|
||||||
uri: 'tg:user=alice&chat=foobar',
|
uri: 'https://t.me/foobar?user=alice',
|
||||||
shouldMatch: true
|
shouldMatch: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
uri: 'tg:user=complex_user_1234&chat=complex_chat_1234',
|
uri: 'https://t.me/complex_chat_1234?user=complex_user_1234',
|
||||||
shouldMatch: true
|
shouldMatch: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
uri: 'tg:user=&chat=foobar',
|
uri: 'https://t.me/foobar',
|
||||||
shouldMatch: false
|
shouldMatch: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
uri: 'tg:user=foobar&chat=',
|
uri: 'https://t.me/foobar?user=',
|
||||||
|
shouldMatch: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://t.me/?user=foobar',
|
||||||
shouldMatch: false
|
shouldMatch: false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue