server ver

This commit is contained in:
2021-04-16 20:41:48 +00:00
parent c9257dc357
commit 1b5088cde7
159 changed files with 3533 additions and 740 deletions

View File

@@ -0,0 +1,27 @@
<form id="banmenu" method="POST" action="/api/user/{{$user->username}}/ban">
{!! csrf_field() !!}
<div class="modal fade" id="banmenumodal" tabindex="-1" role="dialog" aria-labelledby="Ban user">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="filterModalTitle">Ban user</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label for="reason">Reason</label>
<input class="form-control" type="text" name="reason" id="reason" placeholder="Reason">
</div>
<div class="form-group">
<label for="duration">Duration</label>
<input class="form-control" type="text" name="duration" id="duration" placeholder="Duration (-1 = permanent)">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<input type="submit" class="btn btn-danger" value="BAN!">
</div>
</div>
</div>
</div>
</form>

View File

@@ -0,0 +1,14 @@
<script id="comlist" type="text/x-handlebars-template">
{{#each data as |value key|}}
<div class="panel panel-default">
<div class="panel-body" style="word-wrap: break-word;" data-index="{{key}}" data-id="{{id}}">{{{rendered_view}}}</div>
<div class="panel-footer">Video: <a href="/{{video_id}}">/{{video_id}}</a> | <time class="timeago" data-toggle="tooltip" datetime="{{created_at}}+0000" title="{{created_at}}+0000"></time></div>
</div>
{{else}}
<div class="list-group-item">No comments</div>
{{/each}}
{{#if total}}
<div class="panel-footer" id="pagination">
</div>
{{/if}}
</script>

View File

@@ -0,0 +1,15 @@
<div class="panel @if($del = !is_null($comment->deleted_at)) panel-danger @else panel-default @endif" data-id="{{$comment->id}}">
<div class="panel-body">
@simplemd($comment->content)
</div>
<div class="panel-footer">by <a href="/user/{{$comment->user->username}}">{!! $comment->user->displayName() !!}</a> <small><time class="timeago" data-toggle="tooltip" data-placement="right" datetime="{{$comment->created_at}}+0000" title="{{$comment->created_at}}+0000"></time></small>
@if($mod)
@if($del)
<a href="#" onclick="restoreComment($(this))"><i style="color:green"; class="fa fa-refresh" aria-hidden="true"></i></a>
@else
<a href="#" onclick="deleteComment($(this))"><i style="color:red"; class="fa fa-times" aria-hidden="true"></i></a>
<a href="#" onclick="editComment($(this))"><i style="color:cyan;" class="fa fa-pencil-square" aria-hidden="true"></i></a>
@endif
@endif
</div>
</div>

View File

@@ -0,0 +1,11 @@
<div id="commentForm" class="hidden-xs">
<form action="{{action('CommentController@store', ['id' => $video->id])}}" method="post">
{!! csrf_field() !!}
<div class="panel panel-default">
<div class="panel-body">
{!! Form::textarea('comment', null, ['placeholder' => 'Write something', 'class' => 'form-control', 'required' => 'required']) !!}
</div>
<div class="panel-footer"><button type="submit" class="btn btn-primary btn-sm">Post</button></div>
</div>
</form>
</div>

View File

@@ -0,0 +1,37 @@
@if(null === $banner)
@else
<div id="motd" class="panel panel-info hidden-xs">
<a href="{{ $banner->url }}" target="_blank" rel="noopener">
<div style="height: 50px; background-image:url('{{ $banner->image }}')" class="panel-body motd">
</div>
</a>
</div>
@endif
@if(Auth::check())
@if($video->id == '30186')
@include('partials.thread_closed')
@else
@include('partials.commentform')
@endif
@endif
<div class="comments hidden-xs">
<div class="commentwrapper">
<?php
if($mod = (Auth::check() && Auth::user()->can('delete_comment'))) $comments = $video->comments()->withTrashed()->get();
else $comments = $video->comments;
?>
@if(count($comments) > 0)
@foreach($comments as $comment)
@include('partials.comment', ['comment' => $comment, 'mod' => $mod])
@endforeach
@else
<div class="panel panel-default nocomments">
<div class="panel-body">
No comments yet …<br />
</div>
</div>
@endif
</div>
</div>

View File

@@ -0,0 +1,18 @@
<div class="modal fade" id="filterselectmodal" tabindex="-1" role="dialog" aria-labelledby="Select filter">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="filterModalTitle">Add Tags to filter for</h4>
</div>
<div class="modal-body">
<input id="filter" type="text" class="form-control" placeholder="Input tags…" name="filter" data-role="tagsinput" value="{{ implode(',', auth()->user()->categories) }}">
{{--<input type="text" id="filter" data-role="tagsinput" value="{{ implode(',', auth()->user()->categories) }}">--}}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button href="/filter" type="submit" id="submitfilter" class="btn btn-primary" value="Save">Save</button>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,36 @@
<div class="flashcontainer">
<div class="container">
@if($errors->count() > 0)
@foreach($errors->all() as $error)
<div class="alert alert-danger alert-dismissable" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
{{ $error }}
</div>
@endforeach
@endif
@if(Session::has('error'))
<div class="alert alert-danger alert-dismissable" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
{{ session('error') }}
</div>
@endif
@if(Session::has('success'))
<div class="alert alert-success alert-dismissable" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
{{ session('success') }}
</div>
@endif
@if(Session::has('info'))
<div class="alert alert-info alert-dismissable" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
{{ session('info') }}
</div>
@endif
@if(Session::has('warning'))
<div class="alert alert-warning alert-dismissable" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
{{ session('warning') }}
</div>
@endif
</div>
</div>

View File

@@ -0,0 +1,42 @@
@if(isset($video))
<form id="webmedit" method="POST" action="/index/{{$video->id}}">
{!! csrf_field() !!}
<div class="modal fade" id="webmeditmodal" tabindex="-1" role="dialog" aria-labelledby="Edit webm">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="filterModalTitle">Edit webm</h4>
</div>
<div class="modal-body frontendeditmodal">
<div class="form-group">
<label for="interpretedit">Artist</label>
<input class="form-control" type="text" name="interpret" id="interpretedit" value="{{ $video->interpret or ''}}" placeholder="Artist">
</div>
<div class="form-group">
<label for="songtitleedit">Songtitle</label>
<input class="form-control" type="text" name="songtitle" id="songtitleedit" value="{{ $video->songtitle or ''}}" placeholder="Songtitle">
</div>
<div class="form-group">
<label for="imgsourceedit">Video Source</label>
<input class="form-control" type="text" name="imgsource" id="imgsourceedit" value="{{ $video->imgsource or ''}}" placeholder="Video Source">
</div>
<div class="form-group">
<label for="categoryselect">Category</label>
<select class="form-control" name="category" id="categoryselect">
@foreach(\App\Models\Category::all() as $category)
<option value="{{$category->id}}" @if($video->category->id == $category->id) selected @endif>{{$category->name}}</option>
@endforeach
</select>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<input type="submit" class="btn btn-primary" value="Save">
</div>
</div>
</div>
</div>
</form>
@endif

View File

@@ -0,0 +1,22 @@
<script id="paginationtmpl" type="text/x-handlebars-template">
<nav class="mitte">
<ul class="pagination">
{{#paginate pagination type="first"}}
<li {{#if disabled}}class="disabled"{{/if}}><a href="#" data-page="{{n}}">First</a></li>
{{/paginate}}
{{#paginate pagination type="previous"}}
<li {{#if disabled}}class="disabled"{{/if}}><a href="#" data-page="{{n}}">&laquo;</a></li>
{{/paginate}}
{{#paginate pagination type="middle" limit="7"}}
<li {{#if active}}class="active"{{/if}}><a href="#" data-page="{{n}}">{{n}}</a></li>
{{/paginate}}
{{#paginate pagination type="next"}}
<li {{#if disabled}}class="disabled"{{/if}}><a href="#" data-page="{{n}}">&raquo;</a></li>
{{/paginate}}
{{#paginate pagination type="last"}}
<li {{#if disabled}}class="disabled"{{/if}}><a href="#" data-page="{{n}}">Last</a></li>
{{/paginate}}
</ul>
</nav>
<div class="clearfix"></div>
</script>

View File

@@ -0,0 +1,30 @@
<div class="modal fade" id="loginmodal" tabindex="-1" role="dialog" aria-labelledby="Login">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="filterModalTitle">Login</h4>
</div>
<div class="modal-body">
<form action="{{action('UserController@login')}}" method="post" class="navbar-form navbar-right">
{!! csrf_field() !!}
<div class="loginmodaldiv">
<input type="text" name="identifier" placeholder="Username" class="form-control usernamelogin"><br>
<input type="password" name="password" placeholder="Password" class="form-control passwordlogin"><br>
<button type="submit" class="btn btn-primary">Login</button> <input id="rememberme" type="checkbox" name="remember"> <span id="rember">Remember me?</span>
</div>
</form>
</div>
<div class="modal-footer">
<p id="logincenter">Don't have an account? <a href="/register">Register</a> now!</p>
<ul class="vorteilul">
<p class="vorteile">Why should I register?</p>
<li>Favor your favorite WebMs</li>
<li>Upload videos</li>
<li>Write comments</li>
</ul>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,13 @@
<aside class="comments hidden-xs">
<div style="border: 3px solid #1fb2b0;margin-bottom:1px;" class="panel panel-info">
<div class="panel-body motd">
<div><span class="anim">420 blaze it <img class="icon" src="https://w0bm.com/images/icons/weed.png" /></span></div>
</div>
</div>
@if(Auth::check())
@include('partials.commentform')
@endif
</aside>

View File

@@ -0,0 +1,31 @@
<script id="msglist" type="text/x-handlebars-template">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Messages</h3> <button class="btn btn-primary pull-right readall" onclick="readAll()">Read all</button>
</div>
<div class="list-group" id="listitems">
{{#each data as |value key|}}
<a href="#" data-index="{{key}}" data-id="{{id}}" class="list-group-item {{#unless read}}list-group-item-info{{/unless}}">{{subject}}</a>
{{else}}
<div class="list-group-item">No messages</div>
{{/each}}
</div>
{{#if total}}
<div class="panel-footer" id="pagination">
</div>
{{/if}}
</div>
</script>
<script id="msgtmpl" type="text/x-handlebars-template">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{subject}}</h3>
</div>
<div class="panel-body">
{{{content}}}
</div>
<div class="panel-footer"><time class="timeago" data-toggle="tooltip" datetime="{{created_at}}+0000" title="{{created_at}}+0000"></time></div>
</div>
</script>

View File

@@ -0,0 +1,35 @@
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><img src="{{ asset('logo.svg') }}" alt="w0bm.com"></a>
</div>
<div class=" collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-left">
<li><a href="{{url('categories')}}"><i class="fa fa-bars"></i> Categories</a></li>
<li><a href="{{url('index')}}"><i class="fa fa-list"></i> Index</a></li>
</ul>
@if(Auth::check())
<ul class="nav navbar-nav navbar-right">
<li><a href="{{url('messages')}}"><i class="fa fa-envelope"></i> <span class="badge">{{Auth::user()->messagesRecv()->unread()->count()}}</span></a></li>
<li><a href="#" data-toggle="modal" data-target="#filterselectmodal"><i class="fa fa-filter"></i> Filter</a></li>
<li><a href="{{url('upload')}}"><i class="fa fa-cloud-upload"></i> Upload</a></li>
<li><a href="{{url('user', Auth::user()->username)}}"><i class="fa fa-user"></i> {{Auth::user()->username}}</a></li>
<li><a href="{{url('logout')}}"><i class="fa fa-times"></i> Logout</a></li>
</ul>
@else
<!-- Hier war mal der Login Kot -->
<ul class="nav navbar-nav navbar-right">
<li><a href="#" data-toggle="modal" data-target="#loginmodal"><i class="fa fa-cube"></i> Login</a></li>
@include('partials.loginmodal')
</ul>
@endif
</div>
</div>
</nav>

View File

@@ -0,0 +1,5 @@
<div class="page-header">
<h3>{!! rtrim(e($user->username) . ' ' . $user->activeIcon()) !!}&nbsp;@if(auth()->check() && auth()->user()->can('edit_user'))<a href="#" data-toggle="modal" data-target="#banmenumodal"><i style="color:red;" class="fa fa-lock"></i></a>@endif @if($user->disabled && isset($user->banend) && (Carbon\Carbon::now() <= $user->banend || 0 >= $user->banend->timestamp))<span style="color: grey; font-size: 15px;">(@if(Carbon\Carbon::now() <= $user->banend)Ban expires in <time class="timeago" data-toggle="tooltip" title="{{ $user->banend }}+0000" datetime="{{ $user->banend }}+0000"></time>@else permanently banned @endif)</span>@endif<h3>
<h6><span class="pull-right">Joined: <time class="timeago" datetime="{{ $user->created_at }}+0000" title="{{ $user->created_at }}+0000" data-toggle="tooltip"></time></span></h6>
<h5><a style="color:#1FB2B0;" href="/user/{{$user->username}}"><i class="fa fa-cloud-upload"></i> {{ $user->uploads()->countScoped()->count() }} Uploads</a> <span> <a style="color:white;" href="/user/{{$user->username}}/comments"><i class="fa fa-commenting"></i> {{ $user->comments()->count() }} Comments</span> <span><a style="color:#CE107C;" href="/user/{{$user->username}}/favs/index"><i class="fa fa-heart"></i> {{ $user->favs()->countScoped()->count() }} Favorites</a></span></h5>
</div>

View File

@@ -0,0 +1,62 @@
<div class="modal fade" id="registermodal" tabindex="-1" role="dialog" aria-labelledby="Register">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="filterModalTitle">Register</h4>
</div>
<div class="advantages">
<p>Registering on w0bm has some advantages...</p>
<p>With a account you can comment on WebMs, favor WebMs, upload WebMs, tag videos, filter out unwanted tags and watch NSFW WebMs!</p>
</div>
<div class="reg_wrapper">
<div class="register">
<div class="col-md-10">
<form class="form-horizontal" method="post" action="{{action('UserController@store')}}">
{!! csrf_field() !!}
<div class="form-group">
<div class="reg_username">
{!! Form::text('username', null, ['class' => 'form-control', 'placeholder' => 'Username']) !!}
</div>
</div>
<div class="form-group">
<div class="reg_password">
{!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'Password']) !!}
</div>
</div>
<div class="form-group">
<div class="reg_password">
{!! Form::password('password_confirmation', ['class' => 'form-control', 'placeholder' => 'Password Confirmation']) !!}
</div>
</div>
<div class="form-group">
<div class="recaptcha">
{!! Recaptcha::render() !!}
</div>
</div>
<div class="form-group terms">
<div class="verify_rules">
<p><input type="checkbox" required name="terms"> I am at least 18 years or older and I have read and understand the <a href="/rules">Rules</a></p>
</div>
<div class="submit_registration">
<button type="submit" class="btn btn-primary">Register</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="modal-footer">
<p>Back to <a href="#" data-toggle="modal" data-target="#loginmodal" data-dismiss="modal">Login?</a></p>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,45 @@
<aside class="tags hidden-xs">
<div class="tagtest">
@if(Auth::check())
<label for="tag-add-toggle">
<span id="tagadder" class="addtagsy">+ Add Tag <i class="fa fa-tag" aria-hidden="true"></i> </span>
</label>
<span class="addtagsy"><a href="/irc">IRC </a></span>
<span class="addtagsy"><a href="/about">About </a></span>
<span class="addtagsy"><a href="/contact">Contact </a></span>
<span class="addtagsy"><a href="/rules">Rules </a></span>
<span class="addtagsy"><a href="http://blog.w0bm.com" target="_blank">Blog</a></span>
<input type="checkbox" id="tag-add-toggle">
<div id="tag-add">
<div class="input-group" style="margin-top: 4px;">
{{--<select multiple name="tags[]" data-role="tagsinput" class="form-control"></select>--}}
<input id="tags" type="text" class="form-control" placeholder="Input tags…" name="tags" data-role="tagsinput">
<span class="input-group-btn">
<button href="/{{$video->id}}/tag" id="submittags" type="submit" class="form-control btn-primary">Submit</button>
</span>
</div>
</div>
@else
<div class="tagpanelinfos">
<span class="addtagsy"><a href="/irc">IRC </a></span>
<span class="addtagsy"><a href="/about">About </a></span>
<span class="addtagsy"><a href="/contact">Contact </a></span>
<span class="addtagsy"><a href="/rules">Rules </a></span>
<span class="addtagsy"><a href="http://blog.w0bm.com" target="_blank">Blog</a></span>
</div>
@endif
</div>
<div class="toggo tag-panel-body" style="">
<div id="tag-display" class="tag-panel-body">
@if(count($video->tags))
@foreach($video->tags as $tag)
<span class="label label-default"><a href="/index?q={{$tag->normalized}}" class="default-link">{{$tag->name}}</a>@if(Auth::check() && Auth::user()->can('edit_video')) <a class="delete-tag default-link" href="#"><i class="fa fa-times"></i></a>@endif</span>
@endforeach
@else
No tags yet ...
@endif
</div>
</div>
</aside>

View File

@@ -0,0 +1,16 @@
<li role="presentation" class="">
<a data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span> Theme
</a>
<ul class="dropdown-menu">
<div id="switcher">
<button class="w0bmcustom-css" onclick="setActiveStyleSheet('w0bmcustom'); return false;">Default</button>
<br>
<button class="chilledblue-css" onclick="setActiveStyleSheet('Chilledblue'); return false;">Chilledblue</button>
<br>
<button class="xayd-css" onclick="setActiveStyleSheet('Xayd'); return false;">Xayd</button>
<br>
<button class="epilepsie-css" onclick="alert('This theme can cause seizures and headaches, use with care!'); setActiveStyleSheet('Epilepsie'); return false;">Epilepsie</button>
</div>
</ul>
</li>

View File

@@ -0,0 +1,3 @@
<div class="thread_closed">
<span>Thread closed! ;__;</span>
</div>