mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 12:43:52 +08:00
Database changes (#34)
* Implement database changes * Split foreign keys in to their own migrations; rename pivot tables * Use whereColumn * Update core attribute names
This commit is contained in:
parent
f8ad54cb1f
commit
67c7b45dc8
|
@ -126,7 +126,7 @@ export default function addComposerAutocomplete() {
|
||||||
if (discussion) {
|
if (discussion) {
|
||||||
discussion.posts()
|
discussion.posts()
|
||||||
.filter(post => post && post.contentType() === 'comment' && (!composerPost || post.number() < composerPost.number()))
|
.filter(post => post && post.contentType() === 'comment' && (!composerPost || post.number() < composerPost.number()))
|
||||||
.sort((a, b) => b.time() - a.time())
|
.sort((a, b) => b.createdAt() - a.createdAt())
|
||||||
.filter(post => {
|
.filter(post => {
|
||||||
const user = post.user();
|
const user = post.user();
|
||||||
return user && userMatches(user);
|
return user && userMatches(user);
|
||||||
|
|
|
@ -19,7 +19,7 @@ export default class PostMentionedNotification extends Notification {
|
||||||
content() {
|
content() {
|
||||||
const notification = this.props.notification;
|
const notification = this.props.notification;
|
||||||
const auc = notification.additionalUnreadCount();
|
const auc = notification.additionalUnreadCount();
|
||||||
const user = notification.sender();
|
const user = notification.fromUser();
|
||||||
|
|
||||||
return app.translator.transChoice('flarum-mentions.forum.notifications.post_mentioned_text', auc + 1, {
|
return app.translator.transChoice('flarum-mentions.forum.notifications.post_mentioned_text', auc + 1, {
|
||||||
user,
|
user,
|
||||||
|
|
|
@ -12,7 +12,7 @@ export default class UserMentionedNotification extends Notification {
|
||||||
}
|
}
|
||||||
|
|
||||||
content() {
|
content() {
|
||||||
const user = this.props.notification.sender();
|
const user = this.props.notification.fromUser();
|
||||||
|
|
||||||
return app.translator.trans('flarum-mentions.forum.notifications.user_mentioned_text', {user});
|
return app.translator.trans('flarum-mentions.forum.notifications.user_mentioned_text', {user});
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Flarum.
|
||||||
|
*
|
||||||
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Flarum\Database\Migration;
|
||||||
|
|
||||||
|
return Migration::renameTable('mentions_posts', 'post_mentions_post');
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Flarum.
|
||||||
|
*
|
||||||
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Flarum\Database\Migration;
|
||||||
|
|
||||||
|
return Migration::renameTable('mentions_users', 'post_mentions_user');
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Flarum.
|
||||||
|
*
|
||||||
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Flarum\Database\Migration;
|
||||||
|
|
||||||
|
return Migration::renameColumn('post_mentions_post', 'mentions_id', 'mentions_post_id');
|
|
@ -0,0 +1,40 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Flarum.
|
||||||
|
*
|
||||||
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Database\Schema\Builder;
|
||||||
|
|
||||||
|
return [
|
||||||
|
'up' => function (Builder $schema) {
|
||||||
|
// Delete rows with non-existent entities so that we will be able to create
|
||||||
|
// foreign keys without any issues.
|
||||||
|
$schema->getConnection()
|
||||||
|
->table('post_mentions_post')
|
||||||
|
->whereNotExists(function ($query) {
|
||||||
|
$query->selectRaw(1)->from('posts')->whereColumn('id', 'post_id');
|
||||||
|
})
|
||||||
|
->orWhereNotExists(function ($query) {
|
||||||
|
$query->selectRaw(1)->from('posts')->whereColumn('id', 'mentions_post_id');
|
||||||
|
})
|
||||||
|
->delete();
|
||||||
|
|
||||||
|
$schema->table('post_mentions_post', function (Blueprint $table) {
|
||||||
|
$table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade');
|
||||||
|
$table->foreign('mentions_post_id')->references('id')->on('posts')->onDelete('cascade');
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
'down' => function (Builder $schema) {
|
||||||
|
$schema->table('posts_mentions_posts', function (Blueprint $table) {
|
||||||
|
$table->dropForeign(['post_id', 'mentions_post_id']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
];
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Flarum.
|
||||||
|
*
|
||||||
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Flarum\Database\Migration;
|
||||||
|
|
||||||
|
return Migration::renameColumn('post_mentions_user', 'mentions_id', 'mentions_user_id');
|
|
@ -0,0 +1,40 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Flarum.
|
||||||
|
*
|
||||||
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Database\Schema\Builder;
|
||||||
|
|
||||||
|
return [
|
||||||
|
'up' => function (Builder $schema) {
|
||||||
|
// Delete rows with non-existent entities so that we will be able to create
|
||||||
|
// foreign keys without any issues.
|
||||||
|
$schema->getConnection()
|
||||||
|
->table('post_mentions_user')
|
||||||
|
->whereNotExists(function ($query) {
|
||||||
|
$query->selectRaw(1)->from('posts')->whereColumn('id', 'post_id');
|
||||||
|
})
|
||||||
|
->orWhereNotExists(function ($query) {
|
||||||
|
$query->selectRaw(1)->from('users')->whereColumn('id', 'mentions_user_id');
|
||||||
|
})
|
||||||
|
->delete();
|
||||||
|
|
||||||
|
$schema->table('post_mentions_user', function (Blueprint $table) {
|
||||||
|
$table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade');
|
||||||
|
$table->foreign('mentions_user_id')->references('id')->on('users')->onDelete('cascade');
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
'down' => function (Builder $schema) {
|
||||||
|
$schema->table('post_mentions_user', function (Blueprint $table) {
|
||||||
|
$table->dropForeign(['post_id', 'mentions_user_id']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
];
|
|
@ -30,8 +30,8 @@ class AddFilterByMentions
|
||||||
public function addFilter(ConfigurePostsQuery $event)
|
public function addFilter(ConfigurePostsQuery $event)
|
||||||
{
|
{
|
||||||
if ($mentionedId = array_get($event->filter, 'mentioned')) {
|
if ($mentionedId = array_get($event->filter, 'mentioned')) {
|
||||||
$event->query->join('mentions_users', 'posts.id', '=', 'mentions_users.post_id')
|
$event->query->join('post_mentions_user', 'posts.id', '=', 'post_mentions_user.post_id')
|
||||||
->where('mentions_users.mentions_id', '=', $mentionedId);
|
->where('post_mentions_user.mentions_user_id', '=', $mentionedId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,15 +57,15 @@ class AddPostMentionedByRelationship
|
||||||
public function getModelRelationship(GetModelRelationship $event)
|
public function getModelRelationship(GetModelRelationship $event)
|
||||||
{
|
{
|
||||||
if ($event->isRelationship(Post::class, 'mentionedBy')) {
|
if ($event->isRelationship(Post::class, 'mentionedBy')) {
|
||||||
return $event->model->belongsToMany(Post::class, 'mentions_posts', 'mentions_id', 'post_id', null, null, 'mentionedBy');
|
return $event->model->belongsToMany(Post::class, 'post_mentions_post', 'mentions_post_id', 'post_id', null, null, 'mentionedBy');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($event->isRelationship(Post::class, 'mentionsPosts')) {
|
if ($event->isRelationship(Post::class, 'mentionsPosts')) {
|
||||||
return $event->model->belongsToMany(Post::class, 'mentions_posts', 'post_id', 'mentions_id', null, null, 'mentionsPosts');
|
return $event->model->belongsToMany(Post::class, 'post_mentions_post', 'post_id', 'mentions_post_id', null, null, 'mentionsPosts');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($event->isRelationship(Post::class, 'mentionsUsers')) {
|
if ($event->isRelationship(Post::class, 'mentionsUsers')) {
|
||||||
return $event->model->belongsToMany(User::class, 'mentions_users', 'post_id', 'mentions_id', null, null, 'mentionsUsers');
|
return $event->model->belongsToMany(User::class, 'post_mentions_user', 'post_id', 'mentions_user_id', null, null, 'mentionsUsers');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ class PostMentionedBlueprint implements BlueprintInterface, MailableInterface
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function getSender()
|
public function getFromUser()
|
||||||
{
|
{
|
||||||
return $this->reply->user;
|
return $this->reply->user;
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@ class UserMentionedBlueprint implements BlueprintInterface, MailableInterface
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function getSender()
|
public function getFromUser()
|
||||||
{
|
{
|
||||||
return $this->post->user;
|
return $this->post->user;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user