]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-user-subscription/remote-subscribe.component.ts
We don't need services anymore for validators
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-user-subscription / remote-subscribe.component.ts
1 import { Component, Input, OnInit } from '@angular/core'
2 import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
3 import { USER_EMAIL_VALIDATOR } from '../form-validators/user-validators'
4
5 @Component({
6 selector: 'my-remote-subscribe',
7 templateUrl: './remote-subscribe.component.html',
8 styleUrls: ['./remote-subscribe.component.scss']
9 })
10 export class RemoteSubscribeComponent extends FormReactive implements OnInit {
11 @Input() uri: string
12 @Input() interact = false
13 @Input() showHelp = false
14
15 constructor (
16 protected formValidatorService: FormValidatorService
17 ) {
18 super()
19 }
20
21 ngOnInit () {
22 this.buildForm({
23 text: USER_EMAIL_VALIDATOR
24 })
25 }
26
27 onValidKey () {
28 this.check()
29 if (!this.form.valid) return
30
31 this.formValidated()
32 }
33
34 formValidated () {
35 const address = this.form.value['text']
36 const [ username, hostname ] = address.split('@')
37
38 // Should not have CORS error because https://tools.ietf.org/html/rfc7033#section-5
39 fetch(`https://${hostname}/.well-known/webfinger?resource=acct:${username}@${hostname}`)
40 .then(response => response.json())
41 .then(data => new Promise((resolve, reject) => {
42 if (data && Array.isArray(data.links)) {
43 const link: { template: string } = data.links.find((link: any) => {
44 return link && typeof link.template === 'string' && link.rel === 'http://ostatus.org/schema/1.0/subscribe'
45 })
46
47 if (link && link.template.includes('{uri}')) {
48 resolve(link.template.replace('{uri}', encodeURIComponent(this.uri)))
49 }
50 }
51 reject()
52 }))
53 .then(window.open)
54 .catch(err => console.error(err))
55 }
56 }