Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
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
Paul Graydon
slapos.core
Commits
645e1dc2
Commit
645e1dc2
authored
Aug 26, 2019
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
master: Remove unused ERP5Security Login
The code was merged into ERP5 Security, so this code is obsolte
parent
a927cc96
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
716 deletions
+0
-716
master/product/Vifib/VifibCookieHashExtractionPlugin.py
master/product/Vifib/VifibCookieHashExtractionPlugin.py
+0
-187
master/product/Vifib/__init__.py
master/product/Vifib/__init__.py
+0
-35
master/product/Vifib/tests/testVifibUsageReport.py
master/product/Vifib/tests/testVifibUsageReport.py
+0
-386
master/product/Vifib/www/Vifib_addVifibBrowserIDExtractionPlugin.zpt
...uct/Vifib/www/Vifib_addVifibBrowserIDExtractionPlugin.zpt
+0
-36
master/product/Vifib/www/Vifib_addVifibFacebookServerExtractionPlugin.zpt
...ifib/www/Vifib_addVifibFacebookServerExtractionPlugin.zpt
+0
-36
master/product/Vifib/www/Vifib_addVifibGoogleServerExtractionPlugin.zpt
.../Vifib/www/Vifib_addVifibGoogleServerExtractionPlugin.zpt
+0
-36
master/product/Vifib/www/portal.gif
master/product/Vifib/www/portal.gif
+0
-0
No files found.
master/product/Vifib/VifibCookieHashExtractionPlugin.py
deleted
100644 → 0
View file @
a927cc96
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2012 Nexedi SA and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
##############################################################################
from
Products.ERP5Type.Globals
import
InitializeClass
from
AccessControl
import
ClassSecurityInfo
from
Products.PageTemplates.PageTemplateFile
import
PageTemplateFile
from
Products.PluggableAuthService.interfaces
import
plugins
from
Products.PluggableAuthService.utils
import
classImplements
from
Products.PluggableAuthService.plugins.BasePlugin
import
BasePlugin
from
Products.PluggableAuthService.PluggableAuthService
import
DumbHTTPExtractor
from
Products.ERP5Type.Cache
import
DEFAULT_CACHE_SCOPE
class
VifibCookieHashExtractionPlugin
(
BasePlugin
):
"""
Plugin to authenicate as machines.
"""
security
=
ClassSecurityInfo
()
def
__init__
(
self
,
id
,
title
=
None
):
#Register value
self
.
_setId
(
id
)
self
.
title
=
title
#####################
# memcached helpers #
#####################
def
_getCacheFactory
(
self
):
portal
=
self
.
getPortalObject
()
cache_tool
=
portal
.
portal_caches
cache_factory
=
cache_tool
.
getRamCacheRoot
().
get
(
self
.
cache_factory_name
)
#XXX This conditional statement should be remove as soon as
#Broadcasting will be enable among all zeo clients.
#Interaction which update portal_caches should interact with all nodes.
if
cache_factory
is
None
\
and
getattr
(
cache_tool
,
self
.
cache_factory_name
,
None
)
is
not
None
:
#ram_cache_root is not up to date for current node
cache_tool
.
updateCache
()
cache_factory
=
cache_tool
.
getRamCacheRoot
().
get
(
self
.
cache_factory_name
)
if
cache_factory
is
None
:
raise
KeyError
return
cache_factory
def
getKey
(
self
,
key
):
cache_factory
=
self
.
_getCacheFactory
()
for
cache_plugin
in
cache_factory
.
getCachePluginList
():
cache_entry
=
cache_plugin
.
get
(
key
,
DEFAULT_CACHE_SCOPE
)
if
cache_entry
is
not
None
:
return
cache_entry
.
getValue
()
raise
KeyError
(
'Key %r not found'
%
key
)
####################################
#ILoginPasswordHostExtractionPlugin#
####################################
security
.
declarePrivate
(
'extractCredentials'
)
def
extractCredentials
(
self
,
request
):
""" Extract CookieHash credentials from the request header. """
creds
=
{}
cookie_hash
=
request
.
get
(
self
.
cookie_name
)
if
cookie_hash
is
not
None
:
try
:
user_dict
=
self
.
getKey
(
cookie_hash
)
except
KeyError
:
return
DumbHTTPExtractor
().
extractCredentials
(
request
)
if
'login'
in
user_dict
:
creds
[
'external_login'
]
=
user_dict
[
'login'
]
creds
[
'remote_host'
]
=
request
.
get
(
'REMOTE_HOST'
,
''
)
try
:
creds
[
'remote_address'
]
=
request
.
getClientAddr
()
except
AttributeError
:
creds
[
'remote_address'
]
=
request
.
get
(
'REMOTE_ADDR'
,
''
)
return
creds
return
DumbHTTPExtractor
().
extractCredentials
(
request
)
#Form for new plugin in ZMI
manage_addVifibFacebookServerExtractionPluginForm
=
PageTemplateFile
(
'www/Vifib_addVifibFacebookServerExtractionPlugin'
,
globals
(),
__name__
=
'manage_addVifibFacebookServerExtractionPluginForm'
)
def
addVifibFacebookServerExtractionPlugin
(
dispatcher
,
id
,
title
=
None
,
REQUEST
=
None
):
""" Add a VifibFacebookServerExtractionPlugin to a Pluggable Auth Service. """
plugin
=
VifibFacebookServerExtractionPlugin
(
id
,
title
)
dispatcher
.
_setObject
(
plugin
.
getId
(),
plugin
)
if
REQUEST
is
not
None
:
REQUEST
[
'RESPONSE'
].
redirect
(
'%s/manage_workspace'
'?manage_tabs_message='
'VifibFacebookServerExtractionPlugin+added.'
%
dispatcher
.
absolute_url
())
class
VifibFacebookServerExtractionPlugin
(
VifibCookieHashExtractionPlugin
):
cache_factory_name
=
'facebook_server_auth_token_cache_factory'
cookie_name
=
'__ac_facebook_hash'
meta_type
=
"Vifib Facebook Server Extraction Plugin"
#List implementation of class
classImplements
(
VifibFacebookServerExtractionPlugin
,
plugins
.
ILoginPasswordHostExtractionPlugin
)
InitializeClass
(
VifibFacebookServerExtractionPlugin
)
#Form for new plugin in ZMI
manage_addVifibGoogleServerExtractionPluginForm
=
PageTemplateFile
(
'www/Vifib_addVifibGoogleServerExtractionPlugin'
,
globals
(),
__name__
=
'manage_addVifibGoogleServerExtractionPluginForm'
)
def
addVifibGoogleServerExtractionPlugin
(
dispatcher
,
id
,
title
=
None
,
REQUEST
=
None
):
""" Add a VifibGoogleServerExtractionPlugin to a Pluggable Auth Service. """
plugin
=
VifibGoogleServerExtractionPlugin
(
id
,
title
)
dispatcher
.
_setObject
(
plugin
.
getId
(),
plugin
)
if
REQUEST
is
not
None
:
REQUEST
[
'RESPONSE'
].
redirect
(
'%s/manage_workspace'
'?manage_tabs_message='
'VifibGoogleServerExtractionPlugin+added.'
%
dispatcher
.
absolute_url
())
class
VifibGoogleServerExtractionPlugin
(
VifibCookieHashExtractionPlugin
):
cache_factory_name
=
'google_server_auth_token_cache_factory'
cookie_name
=
'__ac_google_hash'
meta_type
=
"Vifib Google Server Extraction Plugin"
#List implementation of class
classImplements
(
VifibGoogleServerExtractionPlugin
,
plugins
.
ILoginPasswordHostExtractionPlugin
)
InitializeClass
(
VifibGoogleServerExtractionPlugin
)
#Form for new plugin in ZMI
manage_addVifibBrowserIDExtractionPluginForm
=
PageTemplateFile
(
'www/Vifib_addVifibBrowserIDExtractionPlugin'
,
globals
(),
__name__
=
'manage_addVifibBrowserIDExtractionPluginForm'
)
def
addVifibBrowserIDExtractionPlugin
(
dispatcher
,
id
,
title
=
None
,
REQUEST
=
None
):
""" Add a VifibBrowserIDExtractionPlugin to a Pluggable Auth Service. """
plugin
=
VifibBrowserIDExtractionPlugin
(
id
,
title
)
dispatcher
.
_setObject
(
plugin
.
getId
(),
plugin
)
if
REQUEST
is
not
None
:
REQUEST
[
'RESPONSE'
].
redirect
(
'%s/manage_workspace'
'?manage_tabs_message='
'VifibBrowserIDExtractionPlugin+added.'
%
dispatcher
.
absolute_url
())
class
VifibBrowserIDExtractionPlugin
(
VifibCookieHashExtractionPlugin
):
cache_factory_name
=
'browser_id_auth_token_cache_factory'
cookie_name
=
'__ac_browser_id_hash'
meta_type
=
"Vifib Browser ID Extraction Plugin"
#List implementation of class
classImplements
(
VifibBrowserIDExtractionPlugin
,
plugins
.
ILoginPasswordHostExtractionPlugin
)
InitializeClass
(
VifibBrowserIDExtractionPlugin
)
master/product/Vifib/__init__.py
View file @
645e1dc2
...
...
@@ -28,7 +28,6 @@
#
##############################################################################
from
Products.ERP5Type.Utils
import
initializeProduct
,
updateGlobals
from
AccessControl.Permissions
import
manage_users
as
ManageUsers
import
sys
import
Permissions
this_module
=
sys
.
modules
[
__name__
]
...
...
@@ -39,9 +38,7 @@ content_classes = ()
content_constructors
=
()
from
Tool
import
SlapTool
portal_tools
=
(
SlapTool
.
SlapTool
,
)
from
Products.PluggableAuthService.PluggableAuthService
import
registerMultiPlugin
import
VifibCookieHashExtractionPlugin
def
initialize
(
context
):
import
Document
...
...
@@ -49,35 +46,3 @@ def initialize(context):
document_classes
=
document_classes
,
object_classes
=
object_classes
,
portal_tools
=
portal_tools
,
content_constructors
=
content_constructors
,
content_classes
=
content_classes
)
context
.
registerClass
(
VifibCookieHashExtractionPlugin
.
VifibFacebookServerExtractionPlugin
,
permission
=
ManageUsers
,
constructors
=
(
VifibCookieHashExtractionPlugin
.
manage_addVifibFacebookServerExtractionPluginForm
,
VifibCookieHashExtractionPlugin
.
addVifibFacebookServerExtractionPlugin
,
)
,
visibility
=
None
,
icon
=
'www/portal.gif'
)
context
.
registerClass
(
VifibCookieHashExtractionPlugin
.
VifibGoogleServerExtractionPlugin
,
permission
=
ManageUsers
,
constructors
=
(
VifibCookieHashExtractionPlugin
.
manage_addVifibGoogleServerExtractionPluginForm
,
VifibCookieHashExtractionPlugin
.
addVifibGoogleServerExtractionPlugin
,
)
,
visibility
=
None
,
icon
=
'www/portal.gif'
)
context
.
registerClass
(
VifibCookieHashExtractionPlugin
.
VifibBrowserIDExtractionPlugin
,
permission
=
ManageUsers
,
constructors
=
(
VifibCookieHashExtractionPlugin
.
manage_addVifibBrowserIDExtractionPluginForm
,
VifibCookieHashExtractionPlugin
.
addVifibBrowserIDExtractionPlugin
,
)
,
visibility
=
None
,
icon
=
'www/portal.gif'
)
registerMultiPlugin
(
VifibCookieHashExtractionPlugin
.
VifibFacebookServerExtractionPlugin
.
meta_type
)
registerMultiPlugin
(
VifibCookieHashExtractionPlugin
.
VifibGoogleServerExtractionPlugin
.
meta_type
)
registerMultiPlugin
(
VifibCookieHashExtractionPlugin
.
VifibBrowserIDExtractionPlugin
.
meta_type
)
master/product/Vifib/tests/testVifibUsageReport.py
deleted
100644 → 0
View file @
a927cc96
This diff is collapsed.
Click to expand it.
master/product/Vifib/www/Vifib_addVifibBrowserIDExtractionPlugin.zpt
deleted
100644 → 0
View file @
a927cc96
<h1 tal:replace="structure context/manage_page_header">PAGE HEADER</h1>
<h2 tal:define="form_title string:Add Vifib Browser ID Extraction Plugin"
tal:replace="structure context/manage_form_title">FORM TITLE</h2>
<p class="form-help">Please input the configuration</p>
<form action="addVifibBrowserIDExtractionPlugin" method="POST">
<table cellspacing="0" cellpadding="2" border="0">
<tr>
<td align="left" valign="top">
<div class="form-label">
Id
</div>
</td>
<td align="left" valign="top">
<input type="text" name="id" size="40" />
</td>
</tr>
<tr>
<td align="left" valign="top">
<div class="form-label">
Title
</div>
</td>
<td align="left" valign="top">
<input type="text" name="title" size="40" />
</td>
</tr>
<tr>
<td colspan="2"> <input type="submit" value="add plugin"/>
</td>
</tr>
</table>
</form>
<h1 tal:replace="structure context/manage_page_footer">PAGE FOOTER</h1>
master/product/Vifib/www/Vifib_addVifibFacebookServerExtractionPlugin.zpt
deleted
100644 → 0
View file @
a927cc96
<h1 tal:replace="structure context/manage_page_header">PAGE HEADER</h1>
<h2 tal:define="form_title string:Add ERP5 Facebook Server Extraction Plugin"
tal:replace="structure context/manage_form_title">FORM TITLE</h2>
<p class="form-help">Please input the configuration</p>
<form action="addVifibFacebookServerExtractionPlugin" method="POST">
<table cellspacing="0" cellpadding="2" border="0">
<tr>
<td align="left" valign="top">
<div class="form-label">
Id
</div>
</td>
<td align="left" valign="top">
<input type="text" name="id" size="40" />
</td>
</tr>
<tr>
<td align="left" valign="top">
<div class="form-label">
Title
</div>
</td>
<td align="left" valign="top">
<input type="text" name="title" size="40" />
</td>
</tr>
<tr>
<td colspan="2"> <input type="submit" value="add plugin"/>
</td>
</tr>
</table>
</form>
<h1 tal:replace="structure context/manage_page_footer">PAGE FOOTER</h1>
master/product/Vifib/www/Vifib_addVifibGoogleServerExtractionPlugin.zpt
deleted
100644 → 0
View file @
a927cc96
<h1 tal:replace="structure context/manage_page_header">PAGE HEADER</h1>
<h2 tal:define="form_title string:Add ERP5 Google Server Extraction Plugin"
tal:replace="structure context/manage_form_title">FORM TITLE</h2>
<p class="form-help">Please input the configuration</p>
<form action="addVifibGoogleServerExtractionPlugin" method="POST">
<table cellspacing="0" cellpadding="2" border="0">
<tr>
<td align="left" valign="top">
<div class="form-label">
Id
</div>
</td>
<td align="left" valign="top">
<input type="text" name="id" size="40" />
</td>
</tr>
<tr>
<td align="left" valign="top">
<div class="form-label">
Title
</div>
</td>
<td align="left" valign="top">
<input type="text" name="title" size="40" />
</td>
</tr>
<tr>
<td colspan="2"> <input type="submit" value="add plugin"/>
</td>
</tr>
</table>
</form>
<h1 tal:replace="structure context/manage_page_footer">PAGE FOOTER</h1>
master/product/Vifib/www/portal.gif
deleted
100644 → 0
View file @
a927cc96
281 Bytes
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