1
0
Fork 0

Merge branch 'release/v1.0.0' into develop

This commit is contained in:
Chocobozzz 2018-10-11 09:52:16 +02:00
commit 71e318b4fe
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
8 changed files with 41 additions and 13 deletions

View File

@ -1,5 +1,18 @@
# Changelog
## v1.0.0
Announcement scheduled for october 15
### Bug fixes
* Check video exists before extending expiration
* Correctly delete redundancy files
* Fix account URI in remote comment modal ([@rigelk](https://github.com/rigelk))
* Fix avatar update
* Avoid old issue regarding duplicated hosts in database
## v1.0.0-rc.2
### Bug fixes

View File

@ -1,6 +1,6 @@
{
"name": "peertube-client",
"version": "1.0.0-rc.2",
"version": "1.0.0",
"private": true,
"licence": "GPLv3",
"author": {

View File

@ -1,7 +1,7 @@
{
"name": "peertube",
"description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
"version": "1.0.0-rc.2",
"version": "1.0.0",
"private": true,
"licence": "AGPLv3",
"engines": {

View File

@ -27,7 +27,7 @@ fi
maintainer_public_key=${MAINTAINER_GPG:-"583A612D890159BE"}
branch=$(git symbolic-ref --short -q HEAD)
if [ "$branch" != "develop" ] && [[ "$branch" != feature/* ]]; then
if [ "$branch" != "develop" ] && [[ "$branch" != release/* ]]; then
echo "Need to be on develop or release branch."
exit -1
fi

View File

@ -5,7 +5,7 @@
import * as bcrypt from 'bcrypt'
import * as createTorrent from 'create-torrent'
import { createHash, pseudoRandomBytes } from 'crypto'
import { createHash, HexBase64Latin1Encoding, pseudoRandomBytes } from 'crypto'
import { isAbsolute, join } from 'path'
import * as pem from 'pem'
import { URL } from 'url'
@ -126,8 +126,8 @@ function peertubeTruncate (str: string, maxLength: number) {
return truncate(str, options)
}
function sha256 (str: string) {
return createHash('sha256').update(str).digest('hex')
function sha256 (str: string, encoding: HexBase64Latin1Encoding = 'hex') {
return createHash('sha256').update(str).digest(encoding)
}
function promisify0<A> (func: (cb: (err: any, result: A) => void) => void): () => Promise<A> {

View File

@ -3,7 +3,7 @@ import * as Bluebird from 'bluebird'
import { logger } from '../../../helpers/logger'
import { doRequest } from '../../../helpers/requests'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
import { buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
import { BROADCAST_CONCURRENCY, JOB_REQUEST_TIMEOUT } from '../../../initializers'
export type ActivitypubHttpBroadcastPayload = {
@ -25,7 +25,8 @@ async function processActivityPubHttpBroadcast (job: Bull.Job) {
uri: '',
json: body,
httpSignature: httpSignatureOptions,
timeout: JOB_REQUEST_TIMEOUT
timeout: JOB_REQUEST_TIMEOUT,
headers: buildGlobalHeaders(body)
}
const badUrls: string[] = []

View File

@ -2,7 +2,7 @@ import * as Bull from 'bull'
import { logger } from '../../../helpers/logger'
import { doRequest } from '../../../helpers/requests'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
import { buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
import { JOB_REQUEST_TIMEOUT } from '../../../initializers'
export type ActivitypubHttpUnicastPayload = {
@ -25,7 +25,8 @@ async function processActivityPubHttpUnicast (job: Bull.Job) {
uri,
json: body,
httpSignature: httpSignatureOptions,
timeout: JOB_REQUEST_TIMEOUT
timeout: JOB_REQUEST_TIMEOUT,
headers: buildGlobalHeaders(body)
}
try {

View File

@ -1,8 +1,11 @@
import { buildSignedActivity } from '../../../../helpers/activitypub'
import { getServerActor } from '../../../../helpers/utils'
import { ActorModel } from '../../../../models/activitypub/actor'
import { sha256 } from '../../../../helpers/core-utils'
async function computeBody (payload: { body: any, signatureActorId?: number }) {
type Payload = { body: any, signatureActorId?: number }
async function computeBody (payload: Payload) {
let body = payload.body
if (payload.signatureActorId) {
@ -14,7 +17,7 @@ async function computeBody (payload: { body: any, signatureActorId?: number }) {
return body
}
async function buildSignedRequestOptions (payload: { signatureActorId?: number }) {
async function buildSignedRequestOptions (payload: Payload) {
let actor: ActorModel | null
if (payload.signatureActorId) {
actor = await ActorModel.load(payload.signatureActorId)
@ -29,11 +32,21 @@ async function buildSignedRequestOptions (payload: { signatureActorId?: number }
algorithm: 'rsa-sha256',
authorizationHeaderName: 'Signature',
keyId,
key: actor.privateKey
key: actor.privateKey,
headers: [ 'date', 'host', 'digest', '(request-target)' ]
}
}
function buildGlobalHeaders (body: object) {
const digest = 'SHA-256=' + sha256(JSON.stringify(body), 'base64')
return {
'Digest': digest
}
}
export {
buildGlobalHeaders,
computeBody,
buildSignedRequestOptions
}