2023-02-06 04:26:36 +00:00
|
|
|
{{define "title"}}Chat Rooms{{end}}
|
|
|
|
{{define "content"}}
|
|
|
|
<div class="block">
|
|
|
|
<section class="hero is-light is-bold">
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container">
|
2023-02-09 05:59:38 +00:00
|
|
|
<div class="level">
|
|
|
|
<div class="level-left">
|
|
|
|
<h1 class="title">
|
|
|
|
<span class="icon mr-4"><i class="fa fa-image"></i></span>
|
|
|
|
<span>{{template "title" .}}</span>
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<div class="level-right">
|
|
|
|
<div>
|
2023-02-13 05:10:47 +00:00
|
|
|
<a href="/chat?intent=join" target="_blank" class="button">
|
2023-02-09 05:59:38 +00:00
|
|
|
<span>Join the Chat Room</span>
|
|
|
|
<span class="icon"><i class="fa fa-external-link"></i></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-06 04:26:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="block p-4">
|
2023-10-11 02:30:39 +00:00
|
|
|
{{if .CurrentUser.IsBirthday}}
|
|
|
|
<div class="notification is-success is-light content">
|
|
|
|
<h2>🎂 Happy birthday!</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
If you would like, you may enter the chat room with a special 🍰 birthday cake emoji next to
|
|
|
|
your username instead of the usual country flag. This is totally optional and you may do this
|
|
|
|
by clicking the button <em>below</em> to enter the chat room:
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2023-10-11 02:49:36 +00:00
|
|
|
<a href="/chat?intent=join&birthday=true" class="button" target="_blank">
|
2023-10-11 02:30:39 +00:00
|
|
|
🍰 Join the Chat Room
|
|
|
|
</a>
|
2023-10-11 02:49:36 +00:00
|
|
|
<a href="/chat?intent=join" class="button ml-2" target="_blank">
|
2023-10-11 02:47:45 +00:00
|
|
|
No thanks; join the chat normally
|
|
|
|
</a>
|
2023-10-11 02:30:39 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
2023-02-14 06:19:18 +00:00
|
|
|
{{if .IsShyUser}}
|
|
|
|
<div class="notification is-danger is-light">
|
|
|
|
<i class="fa fa-exclamation-triangle"></i> You have a <strong>Shy Account</strong> and you may not enter
|
|
|
|
the chat room at this time, where our {{PrettyTitle}} members may be sharing their cameras. You are
|
|
|
|
sharing no public photos with the community, so you get limited access to ours.
|
|
|
|
<a href="/faq#shy-faqs">Learn more about how to resolve this issue. <small class="fa fa-external-link"></small></a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
2023-02-06 04:26:36 +00:00
|
|
|
<div class="content">
|
|
|
|
<p>
|
|
|
|
{{PrettyTitle}} has a new chat room! Come and check it out. It features some public rooms, direct
|
|
|
|
messages, and optional webcam support too. You may broadcast your video and other users may click
|
|
|
|
to watch yours, and you can open one or multiple videos broadcasted by the other chatters.
|
|
|
|
</p>
|
|
|
|
|
2023-02-10 07:07:07 +00:00
|
|
|
<div class="notification is-success is-light" id="chatStatsBanner" style="display: none">
|
|
|
|
<span id="usersOnline"></span>
|
2023-09-16 20:46:26 +00:00
|
|
|
<a id="whoLink" href="#" style="visibility: hidden">Who?</a>
|
|
|
|
<span id="whoList" style="display: none"></span>
|
2023-06-10 20:25:06 +00:00
|
|
|
|
2023-10-08 20:35:11 +00:00
|
|
|
<!-- Friends online? -->
|
|
|
|
{{if .FriendsOnline}}
|
|
|
|
<div class="mt-2">
|
|
|
|
<i class="fa fa-user-group mr-1"></i>
|
|
|
|
<strong>{{len .FriendsOnline}} friend{{Pluralize (len .FriendsOnline)}}</strong>
|
|
|
|
{{Pluralize (len .FriendsOnline) "is" "are"}} currently online:
|
|
|
|
{{$FriendsOnline := .FriendsOnline}}
|
|
|
|
{{range $i, $name := .FriendsOnline -}}
|
|
|
|
{{- if $i -}}, {{end}}<a href="/u/{{ $name }}">{{ $name }}</a>
|
|
|
|
{{- end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
2023-06-10 20:25:06 +00:00
|
|
|
<!-- Camera stats if active -->
|
|
|
|
<div id="cameraStats" style="display: none" class="mt-2">
|
2023-10-08 20:35:11 +00:00
|
|
|
<i class="fa fa-camera mr-1"></i>
|
2023-06-10 20:25:06 +00:00
|
|
|
<span id="cameraCount">0 people are on camera</span>
|
|
|
|
<span class="is-size-7">
|
|
|
|
(<i class="fa fa-video has-text-info"></i> <span id="cameraBlue" class="has-text-info">0</span> /
|
|
|
|
<i class="fa fa-video has-text-danger"></i> <span id="cameraRed" class="has-text-danger">0</span>).
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-02-10 07:07:07 +00:00
|
|
|
</div>
|
|
|
|
|
2023-08-12 02:47:20 +00:00
|
|
|
<h3>Chat Room Rules</h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Please observe the following rules for the chat room.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
Be nice and respectful. <a href="/tos">Global website rules</a> apply to the chat room as well!
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
You are permitted to be sexual on camera, but please <strong>mark your video as <span class="has-text-danger">Explicit</span></strong>
|
|
|
|
by clicking the <i class="fa fa-fire has-text-danger"></i> button at the top of the screen (or opting in
|
|
|
|
via the checkbox when you start your camera). This will allow other chatters to be warned before
|
|
|
|
they open your video* in case they don't want to see that stuff. Remember: <strong>consent is sexy!</strong>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-exclamation-triangle has-text-danger mr-1"></i>
|
|
|
|
The following sorts of activities will get you <strong class="has-text-danger">removed from the chat room</strong>:
|
|
|
|
<ol>
|
|
|
|
<li class="mb-4">
|
|
|
|
If a moderator marks your camera as <span class="has-text-danger"><i class="fa fa-fire mr-1"></i> Explicit</span>
|
|
|
|
on your behalf, and you fight them and mark your camera blue again. Don't be offended that your cam was marked as
|
|
|
|
Explicit if you're on there jerking off. Remember: it's a courtesy to others -- your red camera lets people know you're
|
|
|
|
probably jerking off in case someone doesn't want to see that.<br><br>
|
|
|
|
If you fight the moderator's decision to flag your camera, you may be kicked or (temporarily) banned from the chat room.
|
|
|
|
</li>
|
|
|
|
<li class="mb-4">
|
|
|
|
If you boot moderators <em>off</em> of watching your camera <em>so that</em> you can violate the previous rule (and
|
|
|
|
jerk off with your camera still on blue), this may result in an immediate (temporary) ban from the chat room. If you
|
|
|
|
make a pattern of this, you may be removed from the {{PrettyTitle}} website completely.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Breaking the <a href="/tos">global website rules</a> or doing something illegal on chat will naturally result in a
|
|
|
|
swift ban from the chat room and possibly a ban of your website account altogether depending on the severity of the
|
|
|
|
incident.
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
2023-02-06 04:26:36 +00:00
|
|
|
<p>
|
2023-08-12 02:47:20 +00:00
|
|
|
* Explicit videos will show with a red <i class="fa fa-video has-text-danger"></i> icon instead of
|
|
|
|
<i class="fa fa-video has-text-info"></i> blue in the Who List so people can know what they're
|
|
|
|
getting into before they open your cam, in case someone prefers <em>not</em> to just see some
|
|
|
|
guy jerking off.
|
2023-02-06 04:26:36 +00:00
|
|
|
</p>
|
|
|
|
|
2023-02-09 05:59:38 +00:00
|
|
|
<div class="notification is-info is-light">
|
2023-04-01 00:40:48 +00:00
|
|
|
<p>
|
|
|
|
<strong>Note:</strong> the chat room has been tested and seems to work best on
|
|
|
|
<i class="fab fa-firefox"></i> Firefox and all <i class="fab fa-chrome"></i> Chromium browsers <small>(including Chrome,
|
|
|
|
Edge, Opera, Brave, etc.)</small> and on most types of devices <small>(Windows, Mac OS, Linux, and Android)</small> with text chat and
|
|
|
|
video sharing all working perfectly.
|
|
|
|
</p>
|
2023-02-09 05:59:38 +00:00
|
|
|
|
2023-04-01 00:40:48 +00:00
|
|
|
<p>
|
|
|
|
Support for Apple devices is a little more nuanced:
|
|
|
|
</p>
|
2023-02-09 05:59:38 +00:00
|
|
|
|
|
|
|
<p>
|
2023-04-01 00:40:48 +00:00
|
|
|
<i class="fab fa-apple"></i> <strong>Mac OS:</strong> Safari seems to work now (as of <abbr title="2023-03-31">3/31</abbr>)
|
2023-02-09 05:59:38 +00:00
|
|
|
for the text chat features of the room. However, sound effects and video sharing aren't working
|
|
|
|
yet for Safari. Use Firefox or Chrome (or other Chromium browser of your choice) for better odds
|
|
|
|
of video support.
|
|
|
|
</p>
|
2023-02-14 06:19:18 +00:00
|
|
|
|
|
|
|
<p>
|
2023-04-01 00:40:48 +00:00
|
|
|
<i class="fab fa-apple"></i> <strong>iPad & iPhone:</strong> give the chat room a try as of 3/31, it may be able to enter
|
|
|
|
the chat room now but I'm not sure whether it will support video sharing or not.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Unfortunately, Chrome and Firefox do not work any better on iOS because Apple currently is afraid of competition
|
|
|
|
in the web browser space and every iOS browser is really just a custom wrapper around Safari - so while Chrome/Firefox
|
|
|
|
work great on Android this is not true of iOS.
|
2023-02-14 06:19:18 +00:00
|
|
|
</p>
|
2023-02-09 05:59:38 +00:00
|
|
|
</div>
|
|
|
|
|
2023-02-13 05:10:47 +00:00
|
|
|
<p>
|
|
|
|
For a tour of the chat interface & features, see the <a href="https://chat.nonshy.com/about">Chat Help page</a>.
|
|
|
|
</p>
|
|
|
|
|
2023-02-06 04:26:36 +00:00
|
|
|
<p>
|
|
|
|
Click on the button below to join the chat room:
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<a href="/chat?intent=join" target="_blank"
|
|
|
|
class="button is-large is-link">
|
|
|
|
Join the Chat Room Now
|
|
|
|
<i class="fa fa-external-link ml-3"></i>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2023-02-10 07:07:07 +00:00
|
|
|
|
|
|
|
<script>
|
2023-06-08 04:59:15 +00:00
|
|
|
function showWhoBanner(chatStatistics) {
|
|
|
|
const $banner = document.querySelector("#chatStatsBanner"),
|
2023-09-16 20:46:26 +00:00
|
|
|
$whoLink = document.querySelector("#whoLink"),
|
|
|
|
$whoList = document.querySelector("#whoList"),
|
2023-06-10 20:25:06 +00:00
|
|
|
$usersOnline = document.querySelector("#usersOnline")
|
|
|
|
$cameraStats = document.querySelector("#cameraStats")
|
|
|
|
$cameraCount = document.querySelector("#cameraCount")
|
|
|
|
$cameraRed = document.querySelector("#cameraRed")
|
|
|
|
$cameraBlue = document.querySelector("#cameraBlue");
|
2023-06-08 04:59:15 +00:00
|
|
|
|
|
|
|
$banner.style.display = "block";
|
|
|
|
|
|
|
|
let people = chatStatistics.UserCount === 1 ? 'person' : 'people';
|
|
|
|
let isAre = chatStatistics.UserCount === 1 ? 'is' : 'are';
|
2023-09-16 20:46:26 +00:00
|
|
|
$usersOnline.innerHTML = `There ${isAre} currently <strong>${chatStatistics.UserCount}</strong> ${people}</span> in the chat room`;
|
|
|
|
$whoList.innerHTML = chatStatistics.Usernames !== null ? chatStatistics.Usernames.join(", ") : "";
|
|
|
|
|
|
|
|
// Show the "Who?" link if there's anybody.
|
|
|
|
if (chatStatistics.UserCount > 0) {
|
|
|
|
$usersOnline.innerHTML += ":";
|
|
|
|
$whoLink.style.visibility = "visible";
|
|
|
|
} else {
|
|
|
|
$usersOnline.innerHTML += ".";
|
|
|
|
}
|
2023-06-10 20:25:06 +00:00
|
|
|
|
|
|
|
// Camera stats too?
|
|
|
|
if (chatStatistics.Cameras.Blue + chatStatistics.Cameras.Red > 0) {
|
|
|
|
let count = chatStatistics.Cameras.Blue + chatStatistics.Cameras.Red;
|
|
|
|
$cameraStats.style.display = "block";
|
|
|
|
$cameraCount.innerHTML = `<strong>${count} webcam${count === 1 ? '</strong> is' : 's</strong> are'} active`;
|
|
|
|
$cameraRed.innerHTML = chatStatistics.Cameras.Red;
|
|
|
|
$cameraBlue.innerHTML = chatStatistics.Cameras.Blue;
|
|
|
|
}
|
2023-09-16 20:46:26 +00:00
|
|
|
|
|
|
|
$whoLink.addEventListener("click", (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
$whoLink.style.display = "none";
|
|
|
|
$whoList.style.display = "";
|
|
|
|
});
|
2023-06-08 04:59:15 +00:00
|
|
|
}
|
2023-02-10 07:07:07 +00:00
|
|
|
window.addEventListener("DOMContentLoaded", () => {
|
2023-09-16 20:46:26 +00:00
|
|
|
let ChatStatistics = {{.ChatStatistics}},
|
2023-02-10 07:07:07 +00:00
|
|
|
$banner = document.querySelector("#chatStatsBanner"),
|
|
|
|
$usersOnline = document.querySelector("#usersOnline");
|
|
|
|
|
2023-06-08 04:59:15 +00:00
|
|
|
// If we already know people are online, show the banner immediately while we refresh from live data
|
|
|
|
if (ChatStatistics.UserCount > 0) {
|
|
|
|
showWhoBanner(ChatStatistics);
|
|
|
|
}
|
2023-02-10 07:07:07 +00:00
|
|
|
});
|
|
|
|
</script>
|
2023-08-12 02:47:20 +00:00
|
|
|
{{end}}
|