Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
Ygopro Arena Web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Ygopro Arena Web
Commits
32987f78
Commit
32987f78
authored
Jun 30, 2012
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
在线大厅修复
parent
4eb9f0fb
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
284 additions
and
186 deletions
+284
-186
Rakefile
Rakefile
+2
-2
app/controllers/rooms_controller.rb
app/controllers/rooms_controller.rb
+42
-32
app/controllers/servers_controller.rb
app/controllers/servers_controller.rb
+6
-1
app/controllers/users_controller.rb
app/controllers/users_controller.rb
+2
-2
app/views/boards/index.html.erb
app/views/boards/index.html.erb
+120
-35
app/views/users/new.html.erb
app/views/users/new.html.erb
+110
-113
config/locales/zh-CN.yml
config/locales/zh-CN.yml
+2
-1
No files found.
Rakefile
View file @
32987f78
...
...
@@ -99,7 +99,7 @@ end
task
:refresh_user_pass
=>
:environment
do
require
'cgi'
require
'open-uri'
servers
=
Server
.
all
#where(:server_type => "ygopro")
servers
=
Server
.
where
(
:name
=>
:"ygopro-ocg"
)
#
all#where(:server_type => "ygopro")
users
=
[]
User
.
all
.
each
do
|
user
|
if
user
.
password
.
nil?
...
...
@@ -115,7 +115,7 @@ task :refresh_user_pass => :environment do
out
=
"
#{
user
.
id
}
#{
user
.
name
}
"
servers
.
each
do
|
server
|
url
=
server
.
register
.
gsub
/\{key\}|\{id\}|\{name\}|\{password\}|\{email\}/
,
'{key}'
=>
URI
.
encode_www_form_component
(
server
.
key
),
'{id}'
=>
URI
.
encode_www_form_component
(
user
.
id
),
'{name}'
=>
URI
.
encode_www_form_component
(
user
.
name
),
'{password}'
=>
URI
.
encode_www_form_component
(
user
.
password
),
'{email}'
=>
URI
.
encode_www_form_component
(
user
.
email
)
open
(
url
){
|
f
|
out
<<
"
\t
"
+
f
.
read
}
rescue
p
$!
open
(
url
,
server
.
server_type
==
'ygopro'
?
'r:GBK'
:
'r'
){
|
f
|
out
<<
"
\t
"
+
f
.
read
.
encode
(
"UTF-8"
,
:undef
=>
:replace
,
:invalid
=>
:replace
)
}
rescue
p
$!
end
print
out
+
"
\n
"
end
...
...
app/controllers/rooms_controller.rb
View file @
32987f78
...
...
@@ -8,16 +8,21 @@ class RoomsController < ApplicationController
respond_to
do
|
format
|
format
.
html
# index.html.erb
format
.
json
do
Server
.
all
.
each_with_index
do
|
server
,
index
|
open
(
"http://
#{
server
.
ip
}
:
#{
server
.
http_port
}
/?operation=getroomjson"
,
'r:GBK'
)
do
|
file
|
JSON
.
parse
(
file
.
read
.
encode
(
"UTF-8"
))[
"rooms"
].
each
do
|
r
|
room
=
{
id:
(
'A'
.
ord
+
index
).
chr
+
r
[
"roomid"
],
name:
r
[
"roomname"
],
status:
r
[
"istart"
].
to_sym
,
users:
[]}
if
params
[
:server_id
]
servers
=
Server
.
where
(
id:
params
[
:server_id
])
else
servers
=
Server
.
where
(
server_type:
"ygopro"
)
end
servers
.
each_with_index
do
|
server
,
index
|
open
(
"
#{
server
.
index
}
/?operation=getroomjsondelphi"
)
do
|
file
|
JSON
.
parse
(
file
.
read
)[
"rooms"
].
each
do
|
r
|
room
=
{
id:
(
'A'
.
ord
+
index
).
chr
+
r
[
"roomid"
],
name:
decode
(
r
[
"roomname"
]),
status:
r
[
"istart"
].
to_sym
,
users:
[]}
r
[
"users"
].
each
do
|
u
|
if
u
[
"id"
]
==
"0"
user
=
{
player:
u
[
"pos"
].
to_i
%
2
+
1
,
id:
0
,
name:
u
[
"name"
],
certified:
false
}
user
=
{
player:
u
[
"pos"
].
to_i
%
2
+
1
,
id:
0
,
name:
decode
(
u
[
"name"
]),
certified:
false
}
else
user
=
User
.
find_by_name
(
u
[
"name"
])
user
=
{
player:
u
[
"pos"
].
to_i
%
2
+
1
,
id:
user
?
user
.
id
:
0
,
name:
u
[
"name"
],
certified:
true
}
user
=
{
player:
u
[
"pos"
].
to_i
%
2
+
1
,
id:
user
?
user
.
id
:
0
,
name:
decode
(
u
[
"name"
]),
certified:
true
}
end
room
[
:users
]
<<
user
end
...
...
@@ -29,4 +34,9 @@ class RoomsController < ApplicationController
end
end
end
private
def
decode
(
str
)
[
str
].
pack
(
'H*'
).
force_encoding
(
"UTF-16BE"
).
encode
(
"UTF-8"
,
:undef
=>
:replace
,
:invalid
=>
:replace
)
end
end
app/controllers/servers_controller.rb
View file @
32987f78
...
...
@@ -2,7 +2,12 @@ class ServersController < ApplicationController
# GET /servers
# GET /servers.json
def
index
if
params
[
:server_type
]
@servers
=
Server
.
where
(
server_type:
params
[
:server_type
])
else
@servers
=
Server
.
all
end
respond_to
do
|
format
|
format
.
html
# index.html.erb
...
...
app/controllers/users_controller.rb
View file @
32987f78
...
...
@@ -70,7 +70,7 @@ class UsersController < ApplicationController
if
!
@user
.
errors
.
any?
and
@user
.
save
remote_register
(
@user
,
@from
)
session
[
:user_id
]
=
@user
.
id
format
.
html
{
redirect_to
(
params
[
:continue
].
blank?
?
@user
:
URI
.
escape
(
params
[
:continue
]
),
:notice
=>
'注册成功'
)
}
format
.
html
{
redirect_to
(
params
[
:continue
].
blank?
?
@user
:
params
[
:continue
].
gsub
(
/\{name\}|\{password\}/
,
'{name}'
=>
URI
.
encode_www_form_component
(
@user
.
name
),
'{password}'
=>
URI
.
encode_www_form_component
(
@user
.
password
)
),
:notice
=>
'注册成功'
)
}
format
.
xml
{
render
:xml
=>
@user
,
:status
=>
:created
,
:location
=>
@user
}
else
format
.
html
{
render
:action
=>
"new"
}
...
...
@@ -139,7 +139,7 @@ class UsersController < ApplicationController
session
[
:user_id
]
=
@user
.
id
@user
.
update_attribute
(
:lastloginip
,
request
.
remote_ip
)
remote_register
(
@user
)
format
.
html
{
redirect_to
(
params
[
:continue
].
blank?
?
@user
:
URI
.
escape
(
params
[
:continue
]
),
:notice
=>
'Login Successfully.'
)
}
format
.
html
{
redirect_to
(
params
[
:continue
].
blank?
?
@user
:
params
[
:continue
].
gsub
(
/\{name\}|\{password\}/
,
'{name}'
=>
URI
.
encode_www_form_component
(
@user
.
name
),
'{password}'
=>
URI
.
encode_www_form_component
(
@user
.
password
)
),
:notice
=>
'Login Successfully.'
)
}
format
.
json
{
render
json:
@user
}
else
@user
=
User
.
new
(
params
[
:user
])
...
...
app/views/boards/index.html.erb
View file @
32987f78
<style>
.topic
{
float
:
left
;
width
:
190px
;
margin
:
2px
;
}
.posttop
{
height
:
146px
;
overflow
:
hidden
;
}
.first
{
height
:
92px
;
}
.last
{
height
:
54px
;
}
.name
{
//如何设置单行
}
#stat
{
float
:
right
;
clear
:
both
;
}
.first
{
overflow
:
hidden
;
}
.topics
{
overflow
:
hidden
;
}
.avatar_small
{
float
:
left
;
}
</style>
<div
id=
"wrap"
class=
"wrap s_clear"
>
<div
class=
"itemtitle s_clear"
>
<p
class=
"right boardcount"
>
<%=
t
'datetime.today'
%>
:
<em>
<%=
Post
.
today
.
count
%>
</em>
,
<%=
t
'datetime.yesterday'
%>
:
<em>
<%=
Post
.
yesterday
.
count
%>
</em>
,
<%=
t
'stat.total'
%>
:
<em>
<%=
Post
.
count
%>
</em>
</p>
<div
id=
"stat"
>
<%=
t
'datetime.today'
%>
:
<em>
<%=
Post
.
today
.
count
%>
</em>
,
<%=
t
'datetime.yesterday'
%>
:
<em>
<%=
Post
.
yesterday
.
count
%>
</em>
,
<%=
t
'stat.total'
%>
:
<em>
<%=
Post
.
count
%>
</em>
</div>
<div>
最新帖子
</div>
<div
id=
"stream"
>
<ul
id=
"topics"
>
<%
Post
.
group
(
:topic_id
).
order
(
:created_at
).
reverse_order
.
limit
(
5
).
includes
(
:topic
).
each
do
|
post
|
%>
<li
class=
"topic"
>
<%
last_post
=
post
.
topic
.
posts
.
order
(
:id
).
last
%>
<div
class=
"post
<%=
' first'
if
last_post
!=
post
%>
"
>
<div
class=
"posttop"
>
<%=
image_tag
post
.
user
.
avatar
.
url
(
:small
),
width:
48
,
height:
48
,
class:
"avatar_small"
%>
<div>
<span
class=
"name"
>
<%=
link_to
post
.
topic
.
name
,
post
.
topic
%>
</span>
</div>
<div>
<span>
<%=
link_to
post
.
user
.
name
,
post
.
user
%>
</span>
<span>
<%=
distance_of_time_in_words_to_now
post
.
created_at
%>
<%=
t
'ago'
%>
</span>
</div>
<%=
post
.
content
%>
</div>
<div
class=
"postbottom"
>
</div>
</div>
<%
if
last_post
!=
post
%>
<%
post
=
last_post
%>
<div
class=
"post last"
>
<div
class=
"posttop last"
>
<%=
image_tag
post
.
user
.
avatar
.
url
(
:small
),
width:
48
,
height:
48
,
class:
"avatar_small"
%>
<div>
<span>
<%=
link_to
post
.
user
.
name
,
post
.
user
%>
</span>
<span>
<%=
distance_of_time_in_words_to_now
post
.
created_at
%>
<%=
t
'ago'
%>
</span>
</div>
<%=
post
.
content
%>
</div>
</div>
<%
end
%>
<span>
<%=
link_to
post
.
topic
.
category
.
name
,
post
.
topic
.
category
%>
</span>
<span>
回复:
<%=
post
.
topic
.
posts
.
count
%>
</span><span>
查看:
<%=
post
.
topic
.
viewnum
%>
</span>
</li>
<%
end
%>
</ul>
</div>
<div
class=
"itemtitle s_clear"
></div>
<%=
render
@boards
%>
<div
class=
"mainbox list"
>
<span
class=
"headactions"
>
<%=
image_tag
'common/collapsed_no.gif'
%>
</span>
<h3>
<%=
link_to
t
(
'forum.link'
),
links_path
%>
</h3>
<h3>
<%=
link_to
t
(
'forum.link'
),
links_path
%>
</h3>
<div
id=
"forumlinks"
>
<!--<div class="forumlinks">
<ul class="s_clear"><li><div class="forumlogo"><img src="http://www.touhou.cc/logo.gif" border="0" alt="东方幻想乡"></div><div class="forumcontent"><h5><a href="http://www.touhou.cc/bbs" target="_blank">东方幻想乡</a></h5><p>这里是幻想乡,一片充满生机和幸福的乐土.</p></div></li></ul>
...
...
app/views/users/new.html.erb
View file @
32987f78
...
...
@@ -55,9 +55,6 @@
return
false
;
}
else
{
<%
if
@from
==
:"ygopro-ocg"
%>
$
(
"
#continue
"
).
val
(
"
http://ygopro-ocg.com/mycard.php?username=
"
+
$
(
"
#username
"
).
val
()
+
"
&password=
"
+
$
(
"
#password
"
).
val
());
<%
end
%>
return
true
;
}
}
...
...
config/locales/zh-CN.yml
View file @
32987f78
...
...
@@ -398,3 +398,4 @@ zh-CN:
tournament
:
location
:
qun
:
"
QQ群"
ago
:
"
前"
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment