To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / lib / redmine / scm / adapters / filesystem_adapter.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (4.32 KB)

1 1115:433d4f72a19b Chris
# Redmine - project management software
2 1295:622f24f53b42 Chris
# Copyright (C) 2006-2013  Jean-Philippe Lang
3 0:513646585e45 Chris
#
4
# FileSystem adapter
5
# File written by Paul Rivier, at Demotera.
6
#
7
# This program is free software; you can redistribute it and/or
8
# modify it under the terms of the GNU General Public License
9
# as published by the Free Software Foundation; either version 2
10
# of the License, or (at your option) any later version.
11 441:cbce1fd3b1b7 Chris
#
12 0:513646585e45 Chris
# This program is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
# GNU General Public License for more details.
16 441:cbce1fd3b1b7 Chris
#
17 0:513646585e45 Chris
# You should have received a copy of the GNU General Public License
18
# along with this program; if not, write to the Free Software
19
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 1136:51d7f3e06556 chris
require_dependency 'redmine/scm/adapters/abstract_adapter'
22 0:513646585e45 Chris
require 'find'
23
24
module Redmine
25
  module Scm
26 245:051f544170fe Chris
    module Adapters
27 0:513646585e45 Chris
      class FilesystemAdapter < AbstractAdapter
28
29 245:051f544170fe Chris
        class << self
30
          def client_available
31
            true
32
          end
33
        end
34
35
        def initialize(url, root_url=nil, login=nil, password=nil,
36
                       path_encoding=nil)
37 0:513646585e45 Chris
          @url = with_trailling_slash(url)
38 441:cbce1fd3b1b7 Chris
          @path_encoding = path_encoding.blank? ? 'UTF-8' : path_encoding
39
        end
40
41
        def path_encoding
42
          @path_encoding
43 0:513646585e45 Chris
        end
44
45
        def format_path_ends(path, leading=true, trailling=true)
46 441:cbce1fd3b1b7 Chris
          path = leading ? with_leading_slash(path) :
47 0:513646585e45 Chris
            without_leading_slash(path)
48 441:cbce1fd3b1b7 Chris
          trailling ? with_trailling_slash(path) :
49
            without_trailling_slash(path)
50 0:513646585e45 Chris
        end
51
52
        def info
53
          info = Info.new({:root_url => target(),
54
                            :lastrev => nil
55
                          })
56
          info
57
        rescue CommandFailed
58
          return nil
59
        end
60 245:051f544170fe Chris
61 441:cbce1fd3b1b7 Chris
        def entries(path="", identifier=nil, options={})
62 0:513646585e45 Chris
          entries = Entries.new
63 245:051f544170fe Chris
          trgt_utf8 = target(path)
64
          trgt = scm_iconv(@path_encoding, 'UTF-8', trgt_utf8)
65
          Dir.new(trgt).each do |e1|
66
            e_utf8 = scm_iconv('UTF-8', @path_encoding, e1)
67 441:cbce1fd3b1b7 Chris
            next if e_utf8.blank?
68
            relative_path_utf8 = format_path_ends(
69
                (format_path_ends(path,false,true) + e_utf8),false,false)
70 245:051f544170fe Chris
            t1_utf8 = target(relative_path_utf8)
71
            t1 = scm_iconv(@path_encoding, 'UTF-8', t1_utf8)
72
            relative_path = scm_iconv(@path_encoding, 'UTF-8', relative_path_utf8)
73
            e1 = scm_iconv(@path_encoding, 'UTF-8', e_utf8)
74
            if File.exist?(t1) and # paranoid test
75
                  %w{file directory}.include?(File.ftype(t1)) and # avoid special types
76
                  not File.basename(e1).match(/^\.+$/) # avoid . and ..
77
              p1         = File.readable?(t1) ? relative_path : ""
78
              utf_8_path = scm_iconv('UTF-8', @path_encoding, p1)
79
              entries <<
80
                Entry.new({ :name => scm_iconv('UTF-8', @path_encoding, File.basename(e1)),
81 0:513646585e45 Chris
                          # below : list unreadable files, but dont link them.
82 245:051f544170fe Chris
                          :path => utf_8_path,
83
                          :kind => (File.directory?(t1) ? 'dir' : 'file'),
84
                          :size => (File.directory?(t1) ? nil : [File.size(t1)].pack('l').unpack('L').first),
85 441:cbce1fd3b1b7 Chris
                          :lastrev =>
86 245:051f544170fe Chris
                              Revision.new({:time => (File.mtime(t1)) })
87
                        })
88
            end
89 0:513646585e45 Chris
          end
90
          entries.sort_by_name
91 245:051f544170fe Chris
        rescue  => err
92
          logger.error "scm: filesystem: error: #{err.message}"
93
          raise CommandFailed.new(err.message)
94 0:513646585e45 Chris
        end
95 245:051f544170fe Chris
96 0:513646585e45 Chris
        def cat(path, identifier=nil)
97 245:051f544170fe Chris
          p = scm_iconv(@path_encoding, 'UTF-8', target(path))
98
          File.new(p, "rb").read
99
        rescue  => err
100
          logger.error "scm: filesystem: error: #{err.message}"
101
          raise CommandFailed.new(err.message)
102 0:513646585e45 Chris
        end
103
104
        private
105 245:051f544170fe Chris
106 0:513646585e45 Chris
        # AbstractAdapter::target is implicitly made to quote paths.
107
        # Here we do not shell-out, so we do not want quotes.
108
        def target(path=nil)
109 245:051f544170fe Chris
          # Prevent the use of ..
110 0:513646585e45 Chris
          if path and !path.match(/(^|\/)\.\.(\/|$)/)
111
            return "#{self.url}#{without_leading_slash(path)}"
112
          end
113
          return self.url
114
        end
115
      end
116
    end
117
  end
118
end