mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add profile pronouns
This commit is contained in:
parent
8a73643277
commit
fabb57a9d5
7 changed files with 185 additions and 9 deletions
|
@ -16,6 +16,7 @@ use Mail;
|
||||||
use Purify;
|
use Purify;
|
||||||
use App\Mail\PasswordChange;
|
use App\Mail\PasswordChange;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
use App\Services\PronounService;
|
||||||
|
|
||||||
trait HomeSettings
|
trait HomeSettings
|
||||||
{
|
{
|
||||||
|
@ -30,18 +31,20 @@ trait HomeSettings
|
||||||
$storage['percentUsed'] = ceil($storage['used'] / $storage['limit'] * 100);
|
$storage['percentUsed'] = ceil($storage['used'] / $storage['limit'] * 100);
|
||||||
$storage['limitPretty'] = PrettyNumber::size($storage['limit']);
|
$storage['limitPretty'] = PrettyNumber::size($storage['limit']);
|
||||||
$storage['usedPretty'] = PrettyNumber::size($storage['used']);
|
$storage['usedPretty'] = PrettyNumber::size($storage['used']);
|
||||||
|
$pronouns = PronounService::get($id);
|
||||||
|
|
||||||
return view('settings.home', compact('storage'));
|
return view('settings.home', compact('storage', 'pronouns'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function homeUpdate(Request $request)
|
public function homeUpdate(Request $request)
|
||||||
{
|
{
|
||||||
$this->validate($request, [
|
$this->validate($request, [
|
||||||
'name' => 'required|string|max:'.config('pixelfed.max_name_length'),
|
'name' => 'required|string|max:'.config('pixelfed.max_name_length'),
|
||||||
'bio' => 'nullable|string|max:'.config('pixelfed.max_bio_length'),
|
'bio' => 'nullable|string|max:'.config('pixelfed.max_bio_length'),
|
||||||
'website' => 'nullable|url',
|
'website' => 'nullable|url',
|
||||||
'language' => 'nullable|string|min:2|max:5'
|
'language' => 'nullable|string|min:2|max:5',
|
||||||
]);
|
'pronouns' => 'nullable|array|max:4'
|
||||||
|
]);
|
||||||
|
|
||||||
$changes = false;
|
$changes = false;
|
||||||
$name = strip_tags(Purify::clean($request->input('name')));
|
$name = strip_tags(Purify::clean($request->input('name')));
|
||||||
|
@ -50,6 +53,8 @@ trait HomeSettings
|
||||||
$language = $request->input('language');
|
$language = $request->input('language');
|
||||||
$user = Auth::user();
|
$user = Auth::user();
|
||||||
$profile = $user->profile;
|
$profile = $user->profile;
|
||||||
|
$pronouns = $request->input('pronouns');
|
||||||
|
$existingPronouns = PronounService::get($profile->id);
|
||||||
$layout = $request->input('profile_layout');
|
$layout = $request->input('profile_layout');
|
||||||
if($layout) {
|
if($layout) {
|
||||||
$layout = !in_array($layout, ['metro', 'moment']) ? 'metro' : $layout;
|
$layout = !in_array($layout, ['metro', 'moment']) ? 'metro' : $layout;
|
||||||
|
@ -82,6 +87,14 @@ trait HomeSettings
|
||||||
$user->language = $language;
|
$user->language = $language;
|
||||||
session()->put('locale', $language);
|
session()->put('locale', $language);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($existingPronouns != $pronouns) {
|
||||||
|
if($pronouns && in_array('Select Pronoun(s)', $pronouns)) {
|
||||||
|
PronounService::clear($profile->id);
|
||||||
|
} else {
|
||||||
|
PronounService::put($profile->id, $pronouns);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($changes === true) {
|
if ($changes === true) {
|
||||||
|
|
11
app/Models/UserPronoun.php
Normal file
11
app/Models/UserPronoun.php
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class UserPronoun extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
}
|
102
app/Services/PronounService.php
Normal file
102
app/Services/PronounService.php
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Services;
|
||||||
|
|
||||||
|
use Cache;
|
||||||
|
use App\Models\UserPronoun;
|
||||||
|
use App\Profile;
|
||||||
|
|
||||||
|
class PronounService {
|
||||||
|
|
||||||
|
public static function get($id)
|
||||||
|
{
|
||||||
|
$key = 'user:pronouns:' . $id;
|
||||||
|
$ttl = now()->addHours(12);
|
||||||
|
|
||||||
|
return Cache::remember($key, $ttl, function() use($id) {
|
||||||
|
$res = UserPronoun::whereProfileId($id)->first();
|
||||||
|
return $res ? json_decode($res->pronouns, true) : [];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function put($id, $pronouns)
|
||||||
|
{
|
||||||
|
$res = UserPronoun::whereProfileId($id)->first();
|
||||||
|
$key = 'user:pronouns:' . $id;
|
||||||
|
|
||||||
|
if($res) {
|
||||||
|
$res->pronouns = json_encode($pronouns);
|
||||||
|
$res->save();
|
||||||
|
Cache::forget($key);
|
||||||
|
AccountService::del($id);
|
||||||
|
return $res->pronouns;
|
||||||
|
}
|
||||||
|
|
||||||
|
$res = new UserPronoun;
|
||||||
|
$res->profile_id = $id;
|
||||||
|
$res->pronouns = json_encode($pronouns);
|
||||||
|
$res->save();
|
||||||
|
Cache::forget($key);
|
||||||
|
AccountService::del($id);
|
||||||
|
return $res->pronouns;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function clear($id)
|
||||||
|
{
|
||||||
|
$res = UserPronoun::whereProfileId($id)->first();
|
||||||
|
if($res) {
|
||||||
|
$res->pronouns = null;
|
||||||
|
$res->save();
|
||||||
|
}
|
||||||
|
$key = 'user:pronouns:' . $id;
|
||||||
|
Cache::forget($key);
|
||||||
|
AccountService::del($id);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function pronouns()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'co',
|
||||||
|
'cos',
|
||||||
|
'e',
|
||||||
|
'ey',
|
||||||
|
'em',
|
||||||
|
'eir',
|
||||||
|
'fae',
|
||||||
|
'faer',
|
||||||
|
'he',
|
||||||
|
'him',
|
||||||
|
'his',
|
||||||
|
'her',
|
||||||
|
'hers',
|
||||||
|
'hir',
|
||||||
|
'mer',
|
||||||
|
'mers',
|
||||||
|
'ne',
|
||||||
|
'nir',
|
||||||
|
'nirs',
|
||||||
|
'nee',
|
||||||
|
'ner',
|
||||||
|
'ners',
|
||||||
|
'per',
|
||||||
|
'pers',
|
||||||
|
'she',
|
||||||
|
'they',
|
||||||
|
'them',
|
||||||
|
'theirs',
|
||||||
|
'thon',
|
||||||
|
'thons',
|
||||||
|
've',
|
||||||
|
'ver',
|
||||||
|
'vis',
|
||||||
|
'vi',
|
||||||
|
'vir',
|
||||||
|
'xe',
|
||||||
|
'xem',
|
||||||
|
'xyr',
|
||||||
|
'ze',
|
||||||
|
'zir',
|
||||||
|
'zie'
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,6 +5,7 @@ namespace App\Transformer\Api;
|
||||||
use Auth;
|
use Auth;
|
||||||
use App\Profile;
|
use App\Profile;
|
||||||
use League\Fractal;
|
use League\Fractal;
|
||||||
|
use App\Services\PronounService;
|
||||||
|
|
||||||
class AccountTransformer extends Fractal\TransformerAbstract
|
class AccountTransformer extends Fractal\TransformerAbstract
|
||||||
{
|
{
|
||||||
|
@ -35,7 +36,8 @@ class AccountTransformer extends Fractal\TransformerAbstract
|
||||||
'is_admin' => (bool) $is_admin,
|
'is_admin' => (bool) $is_admin,
|
||||||
'created_at' => $profile->created_at->toJSON(),
|
'created_at' => $profile->created_at->toJSON(),
|
||||||
'header_bg' => $profile->header_bg,
|
'header_bg' => $profile->header_bg,
|
||||||
'last_fetched_at' => optional($profile->last_fetched_at)->toJSON()
|
'last_fetched_at' => optional($profile->last_fetched_at)->toJSON(),
|
||||||
|
'pronouns' => PronounService::get($profile->id)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
class CreateUserPronounsTable extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::create('user_pronouns', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->unsignedInteger('user_id')->nullable()->unique()->index();
|
||||||
|
$table->bigInteger('profile_id')->unique()->index();
|
||||||
|
$table->json('pronouns')->nullable();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('user_pronouns');
|
||||||
|
}
|
||||||
|
}
|
|
@ -145,7 +145,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p class="mb-0 d-flex align-items-center">
|
<p class="mb-0 d-flex align-items-center">
|
||||||
<span class="font-weight-bold pr-3">{{profile.display_name}}</span>
|
<span class="font-weight-bold mr-1">{{profile.display_name}}</span>
|
||||||
|
<span v-if="profile.pronouns" class="text-muted small">{{profile.pronouns.join('/')}}</span>
|
||||||
</p>
|
</p>
|
||||||
<div v-if="profile.note" class="mb-0" v-html="profile.note"></div>
|
<div v-if="profile.note" class="mb-0" v-html="profile.note"></div>
|
||||||
<p v-if="profile.website" class=""><a :href="profile.website" class="profile-website" rel="me external nofollow noopener" target="_blank" @click.prevent="remoteRedirect(profile.website)">{{truncate(profile.website,24)}}</a></p>
|
<p v-if="profile.website" class=""><a :href="profile.website" class="profile-website" rel="me external nofollow noopener" target="_blank" @click.prevent="remoteRedirect(profile.website)">{{truncate(profile.website,24)}}</a></p>
|
||||||
|
@ -387,6 +388,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<b-modal
|
<b-modal
|
||||||
v-if="profile && following"
|
v-if="profile && following"
|
||||||
ref="followingModal"
|
ref="followingModal"
|
||||||
|
|
|
@ -67,6 +67,18 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group row">
|
||||||
|
<label for="pronouns" class="col-sm-3 col-form-label font-weight-bold">Pronouns</label>
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<select class="form-control" name="pronouns[]" multiple="" id="pronouns">
|
||||||
|
<option>Select Pronoun(s)</option>
|
||||||
|
@foreach(\App\Services\PronounService::pronouns() as $val)
|
||||||
|
<option value="{{$val}}" {{$pronouns && in_array($val, $pronouns) ? 'selected' : ''}}>{{$val}}</option>
|
||||||
|
@endforeach
|
||||||
|
</select>
|
||||||
|
<p class="help-text text-muted small">Select up to 4 pronouns that will appear on your profile.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@if(config_cache('pixelfed.enforce_account_limit'))
|
@if(config_cache('pixelfed.enforce_account_limit'))
|
||||||
<div class="pt-3">
|
<div class="pt-3">
|
||||||
<p class="font-weight-bold text-muted text-center">Storage Usage</p>
|
<p class="font-weight-bold text-muted text-center">Storage Usage</p>
|
||||||
|
|
Loading…
Reference in a new issue