Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / third_party / pyftpdlib / src / demo / winnt_ftpd.py
1 #!/usr/bin/env python
2 # $Id$
3
4 #  pyftpdlib is released under the MIT license, reproduced below:
5 #  ======================================================================
6 #  Copyright (C) 2007-2012 Giampaolo Rodola' <g.rodola@gmail.com>
7 #
8 #                         All Rights Reserved
9 #
10 # Permission is hereby granted, free of charge, to any person
11 # obtaining a copy of this software and associated documentation
12 # files (the "Software"), to deal in the Software without
13 # restriction, including without limitation the rights to use,
14 # copy, modify, merge, publish, distribute, sublicense, and/or sell
15 # copies of the Software, and to permit persons to whom the
16 # Software is furnished to do so, subject to the following
17 # conditions:
18 #
19 # The above copyright notice and this permission notice shall be
20 # included in all copies or substantial portions of the Software.
21 #
22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
24 # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
26 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
27 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29 # OTHER DEALINGS IN THE SOFTWARE.
30 #
31 #  ======================================================================
32
33 """A ftpd using local Windows NT account database to authenticate users
34 (users must already exist).
35
36 It also provides a mechanism to (temporarily) impersonate the system
37 users every time they are going to perform filesystem operations.
38 """
39
40 from pyftpdlib import ftpserver
41 from pyftpdlib.contrib.authorizers import WindowsAuthorizer
42
43
44 def main():
45     authorizer = WindowsAuthorizer()
46     # Use Guest user with empty password to handle anonymous sessions.
47     # Guest user must be enabled first, empty password set and profile
48     # directory specified.
49     #authorizer = WindowsAuthorizer(anonymous_user="Guest", anonymous_password="")
50     ftp_handler = ftpserver.FTPHandler
51     ftp_handler.authorizer = authorizer
52     address = ('', 21)
53     ftpd = ftpserver.FTPServer(address, ftp_handler)
54     ftpd.serve_forever()
55
56 if __name__ == "__main__":
57     main()