Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
63d6884e
Commit
63d6884e
authored
12 years ago
by
Lukas Reschke
Committed by
Jörn Friedrich Dreyer
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Sanitizing the user input to prevent a reflected XSS. Thanks to Nico Golde (ngolde.de)
parent
eadb894e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/gallery/templates/index.php
+38
-38
38 additions, 38 deletions
apps/gallery/templates/index.php
with
38 additions
and
38 deletions
apps/gallery/templates/index.php
+
38
−
38
View file @
63d6884e
...
...
@@ -14,7 +14,7 @@ div.visible { opacity: 0.8;}
</style>
<script
type=
"text/javascript"
>
var
root
=
"
<?php
echo
$root
;
?>
"
;
var
root
=
"
<?php
echo
htmlentities
(
$root
)
;
?>
"
;
function
explode
(
element
)
{
$
(
'
div
'
,
element
).
each
(
function
(
index
,
elem
)
{
...
...
@@ -83,56 +83,56 @@ $tl = new \OC\Pictures\TilesLine();
$ts
=
new
\OC\Pictures\TileStack
(
array
(),
''
);
$previous_element
=
@
$images
[
0
];
$root_images
=
array
();
$second_level_images
=
array
();
$root_images
=
array
();
$second_level_images
=
array
();
$fallback_images
=
array
();
// if the folder only cotains subfolders with images -> these are taken for the stack preview
for
(
$i
=
0
;
$i
<
count
(
$images
);
$i
++
)
{
$prev_dir_arr
=
explode
(
'/'
,
$previous_element
);
$dir_arr
=
explode
(
'/'
,
$images
[
$i
]);
if
(
count
(
$dir_arr
)
==
1
)
{
// getting the images in this directory
$root_images
[]
=
$root
.
$images
[
$i
];
}
else
{
if
(
strcmp
(
$prev_dir_arr
[
0
],
$dir_arr
[
0
])
!=
0
)
{
// if we entered a new directory
if
(
count
(
$second_level_images
)
==
0
)
{
// if we don't have images in this directory
if
(
count
(
$fallback_images
)
!=
0
)
{
// but have fallback_images
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$fallback_images
,
$prev_dir_arr
[
0
]));
$fallback_images
=
array
();
}
}
else
{
// if we collected images for this directory
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$second_level_images
,
$prev_dir_arr
[
0
]));
$fallback_images
=
array
();
$second_level_images
=
array
();
}
}
if
(
count
(
$dir_arr
)
==
2
)
{
// These are the pics in our current subdir
$second_level_images
[]
=
$root
.
$images
[
$i
];
$fallback_images
=
array
();
}
else
{
// These are images from the deeper directories
if
(
count
(
$second_level_images
)
==
0
)
{
$fallback_images
[]
=
$root
.
$images
[
$i
];
}
}
// have us a little something to compare against
$previous_element
=
$images
[
$i
];
if
(
count
(
$dir_arr
)
==
1
)
{
// getting the images in this directory
$root_images
[]
=
$root
.
$images
[
$i
];
}
else
{
if
(
strcmp
(
$prev_dir_arr
[
0
],
$dir_arr
[
0
])
!=
0
)
{
// if we entered a new directory
if
(
count
(
$second_level_images
)
==
0
)
{
// if we don't have images in this directory
if
(
count
(
$fallback_images
)
!=
0
)
{
// but have fallback_images
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$fallback_images
,
$prev_dir_arr
[
0
]));
$fallback_images
=
array
();
}
}
else
{
// if we collected images for this directory
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$second_level_images
,
$prev_dir_arr
[
0
]));
$fallback_images
=
array
();
$second_level_images
=
array
();
}
}
if
(
count
(
$dir_arr
)
==
2
)
{
// These are the pics in our current subdir
$second_level_images
[]
=
$root
.
$images
[
$i
];
$fallback_images
=
array
();
}
else
{
// These are images from the deeper directories
if
(
count
(
$second_level_images
)
==
0
)
{
$fallback_images
[]
=
$root
.
$images
[
$i
];
}
}
// have us a little something to compare against
$previous_element
=
$images
[
$i
];
}
}
// if last element in the directory was a directory we don't want to miss it :)
if
(
count
(
$second_level_images
)
>
0
)
{
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$second_level_images
,
$prev_dir_arr
[
0
]));
// if last element in the directory was a directory we don't want to miss it :)
if
(
count
(
$second_level_images
)
>
0
)
{
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$second_level_images
,
$prev_dir_arr
[
0
]));
}
// if last element in the directory was a directory with no second_level_images we also don't want to miss it ...
if
(
count
(
$fallback_images
)
>
0
)
{
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$fallback_images
,
$prev_dir_arr
[
0
]));
// if last element in the directory was a directory with no second_level_images we also don't want to miss it ...
if
(
count
(
$fallback_images
)
>
0
)
{
$tl
->
addTile
(
new
\OC\Pictures\TileStack
(
$fallback_images
,
$prev_dir_arr
[
0
]));
}
// and finally our images actually stored in the root folder
for
(
$i
=
0
;
$i
<
count
(
$root_images
);
$i
++
)
{
$tl
->
addTile
(
new
\OC\Pictures\TileSingle
(
$root_images
[
$i
]));
// and finally our images actually stored in the root folder
for
(
$i
=
0
;
$i
<
count
(
$root_images
);
$i
++
)
{
$tl
->
addTile
(
new
\OC\Pictures\TileSingle
(
$root_images
[
$i
]));
}
echo
$tl
->
get
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment