Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b968c59a90 |
7 changed files with 3 additions and 179 deletions
|
@ -17,7 +17,6 @@ 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
|
||||||
{
|
{
|
||||||
|
@ -32,9 +31,8 @@ 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', 'pronouns'));
|
return view('settings.home', compact('storage'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function homeUpdate(Request $request)
|
public function homeUpdate(Request $request)
|
||||||
|
@ -43,8 +41,7 @@ trait HomeSettings
|
||||||
'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;
|
||||||
|
@ -54,8 +51,6 @@ 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;
|
||||||
|
@ -88,14 +83,6 @@ 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) {
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Models;
|
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
|
||||||
|
|
||||||
class UserPronoun extends Model
|
|
||||||
{
|
|
||||||
use HasFactory;
|
|
||||||
}
|
|
|
@ -1,102 +0,0 @@
|
||||||
<?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,7 +5,6 @@ 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
|
||||||
{
|
{
|
||||||
|
@ -38,7 +37,6 @@ class AccountTransformer extends Fractal\TransformerAbstract
|
||||||
'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),
|
|
||||||
'location' => $profile->location
|
'location' => $profile->location
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
<?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');
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -141,8 +141,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p class="d-flex align-items-center mb-1">
|
<p class="d-flex align-items-center mb-1">
|
||||||
<span class="font-weight-bold mr-1">{{profile.display_name}}</span>
|
<span class="font-weight-bold pr-3">{{profile.display_name}}</span>
|
||||||
<span v-if="profile.pronouns" class="text-muted small">{{profile.pronouns.join('/')}}</span>
|
|
||||||
</p>
|
</p>
|
||||||
<p v-if="profile.note" class="mb-0" v-html="profile.note"></p>
|
<p v-if="profile.note" class="mb-0" v-html="profile.note"></p>
|
||||||
<p v-if="profile.website"><a :href="profile.website" class="profile-website small" rel="me external nofollow noopener" target="_blank">{{formatWebsite(profile.website)}}</a></p>
|
<p v-if="profile.website"><a :href="profile.website" class="profile-website small" rel="me external nofollow noopener" target="_blank">{{formatWebsite(profile.website)}}</a></p>
|
||||||
|
@ -420,7 +419,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<b-modal
|
<b-modal
|
||||||
v-if="profile && following"
|
v-if="profile && following"
|
||||||
ref="followingModal"
|
ref="followingModal"
|
||||||
|
|
|
@ -67,18 +67,6 @@
|
||||||
</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…
Add table
Add a link
Reference in a new issue