/hudson-core/src/main/java/hudson/cli/MailCommand.java

http://github.com/hudson/hudson · Java · 52 lines · 18 code · 3 blank · 31 comment · 0 complexity · e43faa07f3f3ef6cb55f9dee14fd192a MD5 · raw file

  1. /*
  2. * The MIT License
  3. *
  4. * Copyright (c) 2004-2010, Sun Microsystems, Inc.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. package hudson.cli;
  25. import hudson.Extension;
  26. import hudson.model.Hudson;
  27. import hudson.model.Item;
  28. import hudson.tasks.HudsonMimeMessage;
  29. import hudson.tasks.Mailer;
  30. /**
  31. * Sends e-mail through Hudson.
  32. *
  33. * <p>
  34. * Various platforms have different commands to do this, so on heterogenous platform, doing this via Hudson is easier.
  35. *
  36. * @author Kohsuke Kawaguchi
  37. */
  38. @Extension
  39. public class MailCommand extends CLICommand {
  40. public String getShortDescription() {
  41. return "Reads stdin and sends that out as an e-mail.";
  42. }
  43. protected int run() throws Exception {
  44. Hudson.getInstance().checkPermission(Item.CONFIGURE);
  45. Mailer.DescriptorImpl descriptor = Mailer.descriptor();
  46. descriptor.send(new HudsonMimeMessage(descriptor.createSession(), stdin));
  47. return 0;
  48. }
  49. }