webfinger / AP user
This commit is contained in:
parent
37895087c0
commit
f98820dafe
9 changed files with 136 additions and 6 deletions
|
@ -2,13 +2,14 @@
|
|||
el-card
|
||||
nuxt-link.float-right(to='/')
|
||||
el-button(circle icon='el-icon-close' type='danger' size='small' plain)
|
||||
|
||||
h5 {{$t('common.login')}}
|
||||
el-form(v-loading='loading')
|
||||
p(v-html="$t('login.description')")
|
||||
|
||||
el-input.mb-2(v-model='email' type='email' name='email'
|
||||
:placeholder='$t("common.email")' autocomplete='email' ref='email')
|
||||
v-icon(name='user' slot='prepend')
|
||||
v-icon(name='envelope' slot='prepend')
|
||||
|
||||
el-input.mb-1(v-model='password' @keyup.enter.native="submit" name='password'
|
||||
type='password' :placeholder='$t("common.password")')
|
||||
|
|
|
@ -2,14 +2,19 @@
|
|||
el-card
|
||||
|
||||
nuxt-link.float-right(to='/')
|
||||
v-icon(name='times' color='red')
|
||||
el-button(circle icon='el-icon-close' type='danger' size='small' plain)
|
||||
h5 {{$t('common.register')}}
|
||||
|
||||
el-form(@submit.native.prevent='register' method='POST' action='/api/user/register')
|
||||
p(v-html="$t('register.description')")
|
||||
|
||||
el-input.mb-2(v-model='user.username' type='text' name='username'
|
||||
:placeholder='$t("common.username")')
|
||||
v-icon(name='user' slot='prepend')
|
||||
|
||||
el-input.mb-2(ref='email' v-model='user.email' type='email' required
|
||||
:placeholder='$t("common.email")' autocomplete='email' name='email')
|
||||
span(slot='prepend') @
|
||||
v-icon(name='envelope' slot='prepend')
|
||||
|
||||
el-input.mb-2(v-model='user.password' type="password" placeholder="Password" name='password' required)
|
||||
v-icon(name='lock' slot='prepend')
|
||||
|
@ -34,6 +39,11 @@ export default {
|
|||
user: { }
|
||||
}
|
||||
},
|
||||
head () {
|
||||
return {
|
||||
title: this.settings.title + ' - ' + this.$t('common.register')
|
||||
}
|
||||
},
|
||||
validate ({store}) {
|
||||
return store.state.settings.allow_registration
|
||||
},
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
import Vue from 'vue'
|
||||
// https://fontawesome.com/icons?d=gallery
|
||||
//
|
||||
import 'vue-awesome/icons/lock'
|
||||
import 'vue-awesome/icons/user'
|
||||
import 'vue-awesome/icons/plus'
|
||||
|
@ -25,6 +27,7 @@ import 'vue-awesome/icons/chevron-right'
|
|||
import 'vue-awesome/icons/chevron-left'
|
||||
import 'vue-awesome/icons/search'
|
||||
import 'vue-awesome/icons/times'
|
||||
import 'vue-awesome/icons/envelope'
|
||||
import 'vue-awesome/icons/calendar-day'
|
||||
import 'vue-awesome/icons/calendar-week'
|
||||
import 'vue-awesome/icons/calendar-alt'
|
||||
|
|
|
@ -102,7 +102,7 @@ api.get('/event/:month/:year', eventController.getAll)
|
|||
// api.get('/event/:month/:year', eventController.getAfter)
|
||||
|
||||
// mastodon oauth auth
|
||||
api.post('/settings/getauthurl', jwt, isAuth, isAdmin, settingsController.getAuthURL)
|
||||
api.get('/settings/oauth', jwt, isAuth, isAdmin, settingsController.code)
|
||||
//api.post('/settings/getauthurl', jwt, isAuth, isAdmin, settingsController.getAuthURL)
|
||||
//api.get('/settings/oauth', jwt, isAuth, isAdmin, settingsController.code)
|
||||
|
||||
module.exports = api
|
||||
|
|
30
server/federation/index.js
Normal file
30
server/federation/index.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
const express = require('express')
|
||||
const router = express.Router()
|
||||
const { user: User } = require('../api/models')
|
||||
const config = require('config')
|
||||
|
||||
router.get('/u/:name', async (req, res) => {
|
||||
const name = req.params.name
|
||||
if (!name) return res.status(400).send('Bad request.')
|
||||
const user = await User.findOne({where: { username: name }})
|
||||
if (!user) return res.status(404).send(`No record found for ${name}`)
|
||||
const domain = 'local'
|
||||
const ret = {
|
||||
'@context': [
|
||||
'https://www.w3.org/ns/activitystreams',
|
||||
'https://w3id.org/security/v1'
|
||||
],
|
||||
'id': `${config.baseurl}/federation/u/${name}`,
|
||||
'type': 'Person',
|
||||
'preferredUsername': name,
|
||||
'inbox': `${config.baseurl}/federation/inbox`,
|
||||
'followers': `${config.baseurl}/federation/u/${name}/followers`,
|
||||
'publicKey': {
|
||||
'id': `${config.baseurl}/federation/u/${name}#main-key`,
|
||||
'owner': `${config.baseurl}/federation/u/${name}`,
|
||||
'publicKeyPem': user.pubkey
|
||||
}
|
||||
}
|
||||
res.json(ret)
|
||||
})
|
||||
module.exports = router
|
27
server/federation/webfinger.js
Normal file
27
server/federation/webfinger.js
Normal file
|
@ -0,0 +1,27 @@
|
|||
const express = require('express')
|
||||
const router = express.Router()
|
||||
const { user: User } = require('../api/models')
|
||||
const config = require('config')
|
||||
|
||||
router.get('/', async (req, res) => {
|
||||
const resource = req.query.resource
|
||||
if (!resource || !resource.includes('acct:')) {
|
||||
return res.status(400).send('Bad request. Please make sure "acct:USER@DOMAIN" is what you are sending as the "resource" query parameter.')
|
||||
}
|
||||
const name = resource.replace('acct:', '')
|
||||
const domain = 'localhoasf'
|
||||
const user = await User.findOne({where: { username: name } })
|
||||
if (!user) return res.status(404).send(`No record found for ${name}`)
|
||||
const ret = {
|
||||
subject: `acct:${name}:${domain}`,
|
||||
links: [
|
||||
{
|
||||
rel: 'self',
|
||||
type: 'application/activity+json',
|
||||
href: `${config.baseurl}/federation/u/${name}`
|
||||
}
|
||||
]
|
||||
}
|
||||
res.json(ret)
|
||||
})
|
||||
module.exports = router
|
|
@ -3,6 +3,7 @@ const path = require('path')
|
|||
const express = require('express')
|
||||
const consola = require('consola')
|
||||
const morgan = require('morgan')
|
||||
const cors = require('cors')
|
||||
const { Nuxt, Builder } = require('nuxt')
|
||||
|
||||
// Import and Set Nuxt.js options
|
||||
|
@ -24,12 +25,15 @@ async function start() {
|
|||
}
|
||||
|
||||
// configurable favicon && logo
|
||||
app.use('/favicon.ico', express.static(path.resolve(config.favicon)))
|
||||
app.use('/favicon.ico', express.static(path.resolve(config.favicon || 'assets/favicon.ico')))
|
||||
|
||||
app.use(morgan('dev'))
|
||||
app.use('/media/', express.static(config.upload_path))
|
||||
app.use('/api', require('./api/index'))
|
||||
|
||||
app.use('/.well-known/webfinger', cors(), require('./federation/webfinger'))
|
||||
app.use('/federation', cors(), require('./federation'))
|
||||
|
||||
// Give nuxt middleware to express
|
||||
app.use(nuxt.render)
|
||||
|
||||
|
|
29
server/migrations/20190728213923-add_username.js
Normal file
29
server/migrations/20190728213923-add_username.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
up: (queryInterface, Sequelize) => {
|
||||
return queryInterface.addColumn('users', 'username', {
|
||||
type: Sequelize.STRING,
|
||||
index: true,
|
||||
allowNull: false,
|
||||
defaultValue: ''
|
||||
})
|
||||
/*
|
||||
Add altering commands here.
|
||||
Return a promise to correctly handle asynchronicity.
|
||||
|
||||
Example:
|
||||
return queryInterface.createTable('users', { id: Sequelize.INTEGER });
|
||||
*/
|
||||
},
|
||||
|
||||
down: (queryInterface, Sequelize) => {
|
||||
/*
|
||||
Add reverting commands here.
|
||||
Return a promise to correctly handle asynchronicity.
|
||||
|
||||
Example:
|
||||
return queryInterface.dropTable('users');
|
||||
*/
|
||||
}
|
||||
};
|
26
server/migrations/20190728214848-add_displayname.js
Normal file
26
server/migrations/20190728214848-add_displayname.js
Normal file
|
@ -0,0 +1,26 @@
|
|||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
up: (queryInterface, Sequelize) => {
|
||||
return queryInterface.addColumn('users', 'display_name', {
|
||||
type: Sequelize.STRING
|
||||
})
|
||||
/*
|
||||
Add altering commands here.
|
||||
Return a promise to correctly handle asynchronicity.
|
||||
|
||||
Example:
|
||||
return queryInterface.createTable('users', { id: Sequelize.INTEGER });
|
||||
*/
|
||||
},
|
||||
|
||||
down: (queryInterface, Sequelize) => {
|
||||
/*
|
||||
Add reverting commands here.
|
||||
Return a promise to correctly handle asynchronicity.
|
||||
|
||||
Example:
|
||||
return queryInterface.dropTable('users');
|
||||
*/
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue