Class: Fotolia
- Inherits:
-
GenericSite
- Object
- GenericSite
- Fotolia
- Defined in:
- lib/multistockphoto/site_fotolia.rb
Overview
Klasse zum Senden an www.fotolia.de
Constant Summary collapse
- FTP_HOST =
'submit.fotolia.com'
- SITENAME =
'fotolia'
- @@errors =
0
Constants inherited from GenericSite
GenericSite::MAX_ERRORS, GenericSite::SENDLIST
Instance Attribute Summary collapse
-
#ftp_password ⇒ Object
Returns the value of attribute ftp_password.
-
#ftp_user ⇒ Object
Returns the value of attribute ftp_user.
-
#max_errors ⇒ Object
Returns the value of attribute max_errors.
-
#total_per_day ⇒ Object
readonly
Returns the value of attribute total_per_day.
Attributes inherited from GenericSite
Class Method Summary collapse
-
.accept?(ext) ⇒ Boolean
Site akzeptiert diese Extension.
-
.can_handle_orientation? ⇒ Boolean
can site handle orientation?.
Instance Method Summary collapse
- #accept?(ext) ⇒ Boolean
-
#already_sent?(photo) ⇒ Boolean
wurde dieses Photo schon gesendet?.
-
#initialize(name) ⇒ Fotolia
constructor
A new instance of Fotolia.
- #photosize_valid?(photo) ⇒ Boolean
-
#sent_today ⇒ Object
Anzahl heute schon gesendeter Photos.
- #transfer(photo, dont_send = nil, dont_log = nil) ⇒ Object
Methods inherited from GenericSite
#already_sent_site?, #heute_schon_gesendet, #photos_fuer_heute_uebrig?
Constructor Details
#initialize(name) ⇒ Fotolia
Returns a new instance of Fotolia.
43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/multistockphoto/site_fotolia.rb', line 43 def initialize(name) super @config = load_config begin @user = @config[:fotolia][:user] @password = @config[:fotolia][:password] @ftp_user = @config[:fotolia][:ftp_user] @ftp_password = @config[:fotolia][:ftp_password] @total_per_day = @config[:fotolia][:total_per_day] rescue puts 'cannot read configuration entries of '+SITENAME end end |
Instance Attribute Details
#ftp_password ⇒ Object
Returns the value of attribute ftp_password.
38 39 40 |
# File 'lib/multistockphoto/site_fotolia.rb', line 38 def ftp_password @ftp_password end |
#ftp_user ⇒ Object
Returns the value of attribute ftp_user.
38 39 40 |
# File 'lib/multistockphoto/site_fotolia.rb', line 38 def ftp_user @ftp_user end |
#max_errors ⇒ Object
Returns the value of attribute max_errors.
38 39 40 |
# File 'lib/multistockphoto/site_fotolia.rb', line 38 def max_errors @max_errors end |
#total_per_day ⇒ Object (readonly)
Returns the value of attribute total_per_day.
37 38 39 |
# File 'lib/multistockphoto/site_fotolia.rb', line 37 def total_per_day @total_per_day end |
Class Method Details
.accept?(ext) ⇒ Boolean
Site akzeptiert diese Extension
128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/multistockphoto/site_fotolia.rb', line 128 def self.accept?(ext) ext = ext.downcase if ext[0,1] == '.' ext = ext[1..-1] end case ext when 'jpg','jpeg','svg' #TODO: pruefen return true else return false end end |
.can_handle_orientation? ⇒ Boolean
can site handle orientation?
123 124 125 |
# File 'lib/multistockphoto/site_fotolia.rb', line 123 def self.can_handle_orientation? false end |
Instance Method Details
#accept?(ext) ⇒ Boolean
141 142 143 |
# File 'lib/multistockphoto/site_fotolia.rb', line 141 def accept?(ext) Fotolia.accept?(ext) end |
#already_sent?(photo) ⇒ Boolean
wurde dieses Photo schon gesendet?
118 119 120 |
# File 'lib/multistockphoto/site_fotolia.rb', line 118 def already_sent?(photo) already_sent_site?(photo,SITENAME) end |
#photosize_valid?(photo) ⇒ Boolean
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/multistockphoto/site_fotolia.rb', line 145 def photosize_valid?(photo) return true # TODO: provisorisch if File.extname(photo.filename).downcase == '.jpeg' or File.extname(photo.filename).downcase == '.jpg' # JPEG-Datei mit mind. 4 MP (Megapixel). if photo.width*photo.height > 3 * 3_000_000 return true else return false end elsif File.extname(photo.filename).downcase == '.svg' # SVG-Datei mit maximal 1 MB (Megabyte). if photo.size <= 1024*1024 return true else return false end end end |
#sent_today ⇒ Object
Anzahl heute schon gesendeter Photos
112 113 114 115 |
# File 'lib/multistockphoto/site_fotolia.rb', line 112 def sent_today site = SITENAME return sent_today_site(site) end |
#transfer(photo, dont_send = nil, dont_log = nil) ⇒ Object
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/multistockphoto/site_fotolia.rb', line 57 def transfer(photo, dont_send=nil, dont_log=nil) # falls nicht in config Datei eingetragen dann nicht senden if @user == nil or @password == nil return end unless photo.class == Photo raise 'not a Photo object' end unless File.exist?(photo.filename) raise "file #{photo.filename} does not exist" end if @ftp_user == nil or @ftp_password == nil raise "ftp_user/ftp_password not set" end print "#{SITENAME}:#{photo.filename} ... " $stdout.flush if already_sent_site?(photo,SITENAME) puts "already sent" return :duplicate end if photo.portrait? and ! Fotolia.can_handle_orientation? photo.drehen end if site_can_handle_keywords? photo.set_keywords end unless dont_send begin ftp = Net::FTP.new(FTP_HOST) ftp.login(@ftp_user,@ftp_password) files=ftp.list('*') if photo.portrait? p photo.rotated_filename res = ftp.putbinaryfile(photo.rotated_filename) else res = ftp.putbinaryfile(photo.filename) end files =ftp.list('*') #p files ftp.close rescue Errno::EPIPE, Net::FTPTempError, Net::FTPPermError raise UploadException end end @@errors = 0 puts 'OK' if ! dont_log File.open(SENDLIST,'a') {|f| f.puts "#{SITENAME}\t#{photo.filename}\t#{Time.now}" } end true end |